/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, 2 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 4 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 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) DependencyGraphProof [EQUIVALENT, 0 ms] (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 204 ms] (33) YES (34) QDP (35) DependencyGraphProof [EQUIVALENT, 0 ms] (36) AND (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] (39) YES (40) QDP (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] (42) YES (43) QDP (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] (45) YES (46) QDP (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] (48) YES (49) QDP (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] (51) 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 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; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 "\oldnew->new" is transformed to "addListToFM0 old new = new; " 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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; 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; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " 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 wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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 vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 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 wxw wxx = gcd wxw wxx; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); " "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); " "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); " "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchUnbox wyx wyy wyz x = x; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } 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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } 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.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];3695[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 28[label="",style="solid", color="burlywood", weight=3]; 3696[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 3696[label="",style="solid", color="burlywood", weight=9]; 3696 -> 29[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 30 -> 20[label="",style="dashed", color="red", weight=0]; 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];3697[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 34[label="",style="solid", color="burlywood", weight=3]; 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];3698[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 36[label="",style="solid", color="burlywood", weight=3]; 3699[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 3699[label="",style="solid", color="burlywood", weight=9]; 3699 -> 37[label="",style="solid", color="burlywood", weight=3]; 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 42 -> 45[label="",style="dashed", color="green", weight=3]; 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3700[label="xuu31100/xuu311000 : xuu311001",fontsize=10,color="white",style="solid",shape="box"];43 -> 3700[label="",style="solid", color="burlywood", weight=9]; 3700 -> 46[label="",style="solid", color="burlywood", weight=3]; 3701[label="xuu31100/[]",fontsize=10,color="white",style="solid",shape="box"];43 -> 3701[label="",style="solid", color="burlywood", weight=9]; 3701 -> 47[label="",style="solid", color="burlywood", weight=3]; 44 -> 22[label="",style="dashed", color="red", weight=0]; 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3702[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];46 -> 3702[label="",style="solid", color="burlywood", weight=9]; 3702 -> 48[label="",style="solid", color="burlywood", weight=3]; 3703[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];46 -> 3703[label="",style="solid", color="burlywood", weight=9]; 3703 -> 49[label="",style="solid", color="burlywood", weight=3]; 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] xuu60 == LT)",fontsize=16,color="burlywood",shape="box"];3704[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];47 -> 3704[label="",style="solid", color="burlywood", weight=9]; 3704 -> 50[label="",style="solid", color="burlywood", weight=3]; 3705[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];47 -> 3705[label="",style="solid", color="burlywood", weight=9]; 3705 -> 51[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) (xuu600 : xuu601) == LT)",fontsize=16,color="black",shape="box"];48 -> 52[label="",style="solid", color="black", weight=3]; 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) [] == LT)",fontsize=16,color="black",shape="box"];49 -> 53[label="",style="solid", color="black", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] (xuu600 : xuu601) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 52 -> 139[label="",style="dashed", color="red", weight=0]; 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (primCompAux xuu311000 xuu600 (compare xuu311001 xuu601) == LT)",fontsize=16,color="magenta"];52 -> 140[label="",style="dashed", color="magenta", weight=3]; 52 -> 141[label="",style="dashed", color="magenta", weight=3]; 52 -> 142[label="",style="dashed", color="magenta", weight=3]; 52 -> 143[label="",style="dashed", color="magenta", weight=3]; 52 -> 144[label="",style="dashed", color="magenta", weight=3]; 52 -> 145[label="",style="dashed", color="magenta", weight=3]; 52 -> 146[label="",style="dashed", color="magenta", weight=3]; 52 -> 147[label="",style="dashed", color="magenta", weight=3]; 52 -> 148[label="",style="dashed", color="magenta", weight=3]; 52 -> 149[label="",style="dashed", color="magenta", weight=3]; 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (GT == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 (LT == LT)",fontsize=16,color="black",shape="box"];54 -> 58[label="",style="solid", color="black", weight=3]; 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (EQ == LT)",fontsize=16,color="black",shape="box"];55 -> 59[label="",style="solid", color="black", weight=3]; 140[label="primCompAux xuu311000 xuu600 (compare xuu311001 xuu601)",fontsize=16,color="black",shape="triangle"];140 -> 164[label="",style="solid", color="black", weight=3]; 141[label="xuu601",fontsize=16,color="green",shape="box"];142[label="xuu64",fontsize=16,color="green",shape="box"];143[label="xuu311001",fontsize=16,color="green",shape="box"];144[label="xuu63",fontsize=16,color="green",shape="box"];145[label="xuu31101",fontsize=16,color="green",shape="box"];146[label="xuu600",fontsize=16,color="green",shape="box"];147[label="xuu61",fontsize=16,color="green",shape="box"];148[label="xuu62",fontsize=16,color="green",shape="box"];149[label="xuu311000",fontsize=16,color="green",shape="box"];139[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu32 == LT)",fontsize=16,color="burlywood",shape="triangle"];3706[label="xuu32/LT",fontsize=10,color="white",style="solid",shape="box"];139 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 165[label="",style="solid", color="burlywood", weight=3]; 3707[label="xuu32/EQ",fontsize=10,color="white",style="solid",shape="box"];139 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 166[label="",style="solid", color="burlywood", weight=3]; 3708[label="xuu32/GT",fontsize=10,color="white",style="solid",shape="box"];139 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 167[label="",style="solid", color="burlywood", weight=3]; 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="black",shape="box"];57 -> 71[label="",style="solid", color="black", weight=3]; 58[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu600 : xuu601) xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];58 -> 72[label="",style="solid", color="black", weight=3]; 59[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="black",shape="box"];59 -> 73[label="",style="solid", color="black", weight=3]; 164 -> 177[label="",style="dashed", color="red", weight=0]; 164[label="primCompAux0 (compare xuu311001 xuu601) (compare xuu311000 xuu600)",fontsize=16,color="magenta"];164 -> 178[label="",style="dashed", color="magenta", weight=3]; 164 -> 179[label="",style="dashed", color="magenta", weight=3]; 164 -> 180[label="",style="dashed", color="magenta", weight=3]; 165[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == LT)",fontsize=16,color="black",shape="box"];165 -> 181[label="",style="solid", color="black", weight=3]; 166[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == LT)",fontsize=16,color="black",shape="box"];166 -> 182[label="",style="solid", color="black", weight=3]; 167[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == LT)",fontsize=16,color="black",shape="box"];167 -> 183[label="",style="solid", color="black", weight=3]; 71[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (xuu311000 : xuu311001 > [])",fontsize=16,color="black",shape="box"];71 -> 91[label="",style="solid", color="black", weight=3]; 72 -> 92[label="",style="dashed", color="red", weight=0]; 72[label="FiniteMap.mkBalBranch (xuu600 : xuu601) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 [] xuu31101) xuu64",fontsize=16,color="magenta"];72 -> 93[label="",style="dashed", color="magenta", weight=3]; 73[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 ([] > [])",fontsize=16,color="black",shape="box"];73 -> 94[label="",style="solid", color="black", weight=3]; 178[label="compare xuu311000 xuu600",fontsize=16,color="blue",shape="box"];3709[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 184[label="",style="solid", color="blue", weight=3]; 3710[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 185[label="",style="solid", color="blue", weight=3]; 3711[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 186[label="",style="solid", color="blue", weight=3]; 3712[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 187[label="",style="solid", color="blue", weight=3]; 3713[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 188[label="",style="solid", color="blue", weight=3]; 3714[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 189[label="",style="solid", color="blue", weight=3]; 3715[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 190[label="",style="solid", color="blue", weight=3]; 3716[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 191[label="",style="solid", color="blue", weight=3]; 3717[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 192[label="",style="solid", color="blue", weight=3]; 3718[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 193[label="",style="solid", color="blue", weight=3]; 3719[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 194[label="",style="solid", color="blue", weight=3]; 3720[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 195[label="",style="solid", color="blue", weight=3]; 3721[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 196[label="",style="solid", color="blue", weight=3]; 3722[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];178 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 197[label="",style="solid", color="blue", weight=3]; 179[label="xuu311001",fontsize=16,color="green",shape="box"];180[label="xuu601",fontsize=16,color="green",shape="box"];177[label="primCompAux0 (compare xuu37 xuu38) xuu39",fontsize=16,color="burlywood",shape="triangle"];3723[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3723[label="",style="solid", color="burlywood", weight=9]; 3723 -> 198[label="",style="solid", color="burlywood", weight=3]; 3724[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];177 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 199[label="",style="solid", color="burlywood", weight=3]; 3725[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];177 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 200[label="",style="solid", color="burlywood", weight=3]; 181[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];181 -> 208[label="",style="solid", color="black", weight=3]; 182[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];182 -> 209[label="",style="solid", color="black", weight=3]; 183 -> 182[label="",style="dashed", color="red", weight=0]; 183[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];91 -> 113[label="",style="dashed", color="red", weight=0]; 91[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (compare (xuu311000 : xuu311001) [] == GT)",fontsize=16,color="magenta"];91 -> 114[label="",style="dashed", color="magenta", weight=3]; 93 -> 35[label="",style="dashed", color="red", weight=0]; 93[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 [] xuu31101",fontsize=16,color="magenta"];93 -> 115[label="",style="dashed", color="magenta", weight=3]; 93 -> 116[label="",style="dashed", color="magenta", weight=3]; 92[label="FiniteMap.mkBalBranch (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];92 -> 117[label="",style="solid", color="black", weight=3]; 94 -> 118[label="",style="dashed", color="red", weight=0]; 94[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (compare [] [] == GT)",fontsize=16,color="magenta"];94 -> 119[label="",style="dashed", color="magenta", weight=3]; 184[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];184 -> 210[label="",style="solid", color="black", weight=3]; 185[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];185 -> 211[label="",style="solid", color="black", weight=3]; 186[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3726[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];186 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 212[label="",style="solid", color="burlywood", weight=3]; 3727[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];186 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 213[label="",style="solid", color="burlywood", weight=3]; 187[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];187 -> 214[label="",style="solid", color="black", weight=3]; 188[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];188 -> 215[label="",style="solid", color="black", weight=3]; 189[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3728[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];189 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 216[label="",style="solid", color="burlywood", weight=3]; 190[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];190 -> 217[label="",style="solid", color="black", weight=3]; 191[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];191 -> 218[label="",style="solid", color="black", weight=3]; 192[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];192 -> 219[label="",style="solid", color="black", weight=3]; 193[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];193 -> 220[label="",style="solid", color="black", weight=3]; 194[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3729[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];194 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 221[label="",style="solid", color="burlywood", weight=3]; 195[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];195 -> 222[label="",style="solid", color="black", weight=3]; 196[label="compare xuu311000 xuu600",fontsize=16,color="black",shape="triangle"];196 -> 223[label="",style="solid", color="black", weight=3]; 197[label="compare xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3730[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];197 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 224[label="",style="solid", color="burlywood", weight=3]; 198[label="primCompAux0 (compare xuu37 xuu38) LT",fontsize=16,color="black",shape="box"];198 -> 225[label="",style="solid", color="black", weight=3]; 199[label="primCompAux0 (compare xuu37 xuu38) EQ",fontsize=16,color="black",shape="box"];199 -> 226[label="",style="solid", color="black", weight=3]; 200[label="primCompAux0 (compare xuu37 xuu38) GT",fontsize=16,color="black",shape="box"];200 -> 227[label="",style="solid", color="black", weight=3]; 208 -> 92[label="",style="dashed", color="red", weight=0]; 208[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25 : xuu26) xuu27) xuu24",fontsize=16,color="magenta"];208 -> 232[label="",style="dashed", color="magenta", weight=3]; 208 -> 233[label="",style="dashed", color="magenta", weight=3]; 208 -> 234[label="",style="dashed", color="magenta", weight=3]; 208 -> 235[label="",style="dashed", color="magenta", weight=3]; 208 -> 236[label="",style="dashed", color="magenta", weight=3]; 209[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu25 : xuu26 > xuu19 : xuu20)",fontsize=16,color="black",shape="box"];209 -> 237[label="",style="solid", color="black", weight=3]; 114[label="compare (xuu311000 : xuu311001) []",fontsize=16,color="black",shape="box"];114 -> 168[label="",style="solid", color="black", weight=3]; 113[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (xuu30 == GT)",fontsize=16,color="burlywood",shape="triangle"];3731[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];113 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 169[label="",style="solid", color="burlywood", weight=3]; 3732[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];113 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 170[label="",style="solid", color="burlywood", weight=3]; 3733[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];113 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 171[label="",style="solid", color="burlywood", weight=3]; 115[label="[]",fontsize=16,color="green",shape="box"];116[label="xuu63",fontsize=16,color="green",shape="box"];117[label="FiniteMap.mkBalBranch6 (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="box"];117 -> 172[label="",style="solid", color="black", weight=3]; 119[label="compare [] []",fontsize=16,color="black",shape="box"];119 -> 173[label="",style="solid", color="black", weight=3]; 118[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (xuu31 == GT)",fontsize=16,color="burlywood",shape="triangle"];3734[label="xuu31/LT",fontsize=10,color="white",style="solid",shape="box"];118 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 174[label="",style="solid", color="burlywood", weight=3]; 3735[label="xuu31/EQ",fontsize=10,color="white",style="solid",shape="box"];118 -> 3735[label="",style="solid", color="burlywood", weight=9]; 3735 -> 175[label="",style="solid", color="burlywood", weight=3]; 3736[label="xuu31/GT",fontsize=10,color="white",style="solid",shape="box"];118 -> 3736[label="",style="solid", color="burlywood", weight=9]; 3736 -> 176[label="",style="solid", color="burlywood", weight=3]; 210[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];210 -> 238[label="",style="solid", color="black", weight=3]; 211[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];211 -> 239[label="",style="solid", color="black", weight=3]; 212[label="compare (xuu3110000 : xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3737[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];212 -> 3737[label="",style="solid", color="burlywood", weight=9]; 3737 -> 240[label="",style="solid", color="burlywood", weight=3]; 3738[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];212 -> 3738[label="",style="solid", color="burlywood", weight=9]; 3738 -> 241[label="",style="solid", color="burlywood", weight=3]; 213[label="compare [] xuu600",fontsize=16,color="burlywood",shape="box"];3739[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];213 -> 3739[label="",style="solid", color="burlywood", weight=9]; 3739 -> 242[label="",style="solid", color="burlywood", weight=3]; 3740[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];213 -> 3740[label="",style="solid", color="burlywood", weight=9]; 3740 -> 243[label="",style="solid", color="burlywood", weight=3]; 214[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];214 -> 244[label="",style="solid", color="black", weight=3]; 215[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];215 -> 245[label="",style="solid", color="black", weight=3]; 216[label="compare (Integer xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3741[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];216 -> 3741[label="",style="solid", color="burlywood", weight=9]; 3741 -> 246[label="",style="solid", color="burlywood", weight=3]; 217[label="primCmpDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3742[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];217 -> 3742[label="",style="solid", color="burlywood", weight=9]; 3742 -> 247[label="",style="solid", color="burlywood", weight=3]; 218[label="primCmpInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3743[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];218 -> 3743[label="",style="solid", color="burlywood", weight=9]; 3743 -> 248[label="",style="solid", color="burlywood", weight=3]; 3744[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];218 -> 3744[label="",style="solid", color="burlywood", weight=9]; 3744 -> 249[label="",style="solid", color="burlywood", weight=3]; 219[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];219 -> 250[label="",style="solid", color="black", weight=3]; 220[label="primCmpFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3745[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];220 -> 3745[label="",style="solid", color="burlywood", weight=9]; 3745 -> 251[label="",style="solid", color="burlywood", weight=3]; 221[label="compare () xuu600",fontsize=16,color="burlywood",shape="box"];3746[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];221 -> 3746[label="",style="solid", color="burlywood", weight=9]; 3746 -> 252[label="",style="solid", color="burlywood", weight=3]; 222[label="primCmpChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3747[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];222 -> 3747[label="",style="solid", color="burlywood", weight=9]; 3747 -> 253[label="",style="solid", color="burlywood", weight=3]; 223[label="compare3 xuu311000 xuu600",fontsize=16,color="black",shape="box"];223 -> 254[label="",style="solid", color="black", weight=3]; 224[label="compare (xuu3110000 :% xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3748[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];224 -> 3748[label="",style="solid", color="burlywood", weight=9]; 3748 -> 255[label="",style="solid", color="burlywood", weight=3]; 225[label="LT",fontsize=16,color="green",shape="box"];226[label="compare xuu37 xuu38",fontsize=16,color="blue",shape="box"];3749[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 256[label="",style="solid", color="blue", weight=3]; 3750[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 257[label="",style="solid", color="blue", weight=3]; 3751[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 258[label="",style="solid", color="blue", weight=3]; 3752[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 259[label="",style="solid", color="blue", weight=3]; 3753[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 260[label="",style="solid", color="blue", weight=3]; 3754[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 261[label="",style="solid", color="blue", weight=3]; 3755[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 262[label="",style="solid", color="blue", weight=3]; 3756[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 263[label="",style="solid", color="blue", weight=3]; 3757[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 264[label="",style="solid", color="blue", weight=3]; 3758[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 265[label="",style="solid", color="blue", weight=3]; 3759[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 266[label="",style="solid", color="blue", weight=3]; 3760[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 267[label="",style="solid", color="blue", weight=3]; 3761[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 268[label="",style="solid", color="blue", weight=3]; 3762[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];226 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 269[label="",style="solid", color="blue", weight=3]; 227[label="GT",fontsize=16,color="green",shape="box"];232[label="xuu21",fontsize=16,color="green",shape="box"];233[label="xuu24",fontsize=16,color="green",shape="box"];234[label="xuu19",fontsize=16,color="green",shape="box"];235[label="xuu20",fontsize=16,color="green",shape="box"];236 -> 35[label="",style="dashed", color="red", weight=0]; 236[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu23 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];236 -> 276[label="",style="dashed", color="magenta", weight=3]; 236 -> 277[label="",style="dashed", color="magenta", weight=3]; 236 -> 278[label="",style="dashed", color="magenta", weight=3]; 237 -> 279[label="",style="dashed", color="red", weight=0]; 237[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (compare (xuu25 : xuu26) (xuu19 : xuu20) == GT)",fontsize=16,color="magenta"];237 -> 280[label="",style="dashed", color="magenta", weight=3]; 168[label="GT",fontsize=16,color="green",shape="box"];169[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (LT == GT)",fontsize=16,color="black",shape="box"];169 -> 201[label="",style="solid", color="black", weight=3]; 170[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (EQ == GT)",fontsize=16,color="black",shape="box"];170 -> 202[label="",style="solid", color="black", weight=3]; 171[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 (GT == GT)",fontsize=16,color="black",shape="box"];171 -> 203[label="",style="solid", color="black", weight=3]; 172[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];172 -> 204[label="",style="solid", color="black", weight=3]; 173[label="EQ",fontsize=16,color="green",shape="box"];174[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (LT == GT)",fontsize=16,color="black",shape="box"];174 -> 205[label="",style="solid", color="black", weight=3]; 175[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (EQ == GT)",fontsize=16,color="black",shape="box"];175 -> 206[label="",style="solid", color="black", weight=3]; 176[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 (GT == GT)",fontsize=16,color="black",shape="box"];176 -> 207[label="",style="solid", color="black", weight=3]; 238[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3763[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];238 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 281[label="",style="solid", color="burlywood", weight=3]; 3764[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];238 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 282[label="",style="solid", color="burlywood", weight=3]; 239[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3765[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];239 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 283[label="",style="solid", color="burlywood", weight=3]; 240[label="compare (xuu3110000 : xuu3110001) (xuu6000 : xuu6001)",fontsize=16,color="black",shape="box"];240 -> 284[label="",style="solid", color="black", weight=3]; 241[label="compare (xuu3110000 : xuu3110001) []",fontsize=16,color="black",shape="box"];241 -> 285[label="",style="solid", color="black", weight=3]; 242[label="compare [] (xuu6000 : xuu6001)",fontsize=16,color="black",shape="box"];242 -> 286[label="",style="solid", color="black", weight=3]; 243[label="compare [] []",fontsize=16,color="black",shape="box"];243 -> 287[label="",style="solid", color="black", weight=3]; 244[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3766[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];244 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 288[label="",style="solid", color="burlywood", weight=3]; 3767[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];244 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 289[label="",style="solid", color="burlywood", weight=3]; 245[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3768[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];245 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 290[label="",style="solid", color="burlywood", weight=3]; 3769[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];245 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 291[label="",style="solid", color="burlywood", weight=3]; 3770[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];245 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 292[label="",style="solid", color="burlywood", weight=3]; 246[label="compare (Integer xuu3110000) (Integer xuu6000)",fontsize=16,color="black",shape="box"];246 -> 293[label="",style="solid", color="black", weight=3]; 247[label="primCmpDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3771[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];247 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 294[label="",style="solid", color="burlywood", weight=3]; 3772[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];247 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 295[label="",style="solid", color="burlywood", weight=3]; 248[label="primCmpInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3773[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];248 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 296[label="",style="solid", color="burlywood", weight=3]; 3774[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];248 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 297[label="",style="solid", color="burlywood", weight=3]; 249[label="primCmpInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3775[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];249 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 298[label="",style="solid", color="burlywood", weight=3]; 3776[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];249 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 299[label="",style="solid", color="burlywood", weight=3]; 250[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3777[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];250 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 300[label="",style="solid", color="burlywood", weight=3]; 251[label="primCmpFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3778[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];251 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 301[label="",style="solid", color="burlywood", weight=3]; 3779[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];251 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 302[label="",style="solid", color="burlywood", weight=3]; 252[label="compare () ()",fontsize=16,color="black",shape="box"];252 -> 303[label="",style="solid", color="black", weight=3]; 253[label="primCmpChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3780[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];253 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 304[label="",style="solid", color="burlywood", weight=3]; 254[label="compare2 xuu311000 xuu600 (xuu311000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3781[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];254 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 305[label="",style="solid", color="burlywood", weight=3]; 3782[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];254 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 306[label="",style="solid", color="burlywood", weight=3]; 255[label="compare (xuu3110000 :% xuu3110001) (xuu6000 :% xuu6001)",fontsize=16,color="black",shape="box"];255 -> 307[label="",style="solid", color="black", weight=3]; 256 -> 184[label="",style="dashed", color="red", weight=0]; 256[label="compare xuu37 xuu38",fontsize=16,color="magenta"];256 -> 308[label="",style="dashed", color="magenta", weight=3]; 256 -> 309[label="",style="dashed", color="magenta", weight=3]; 257 -> 185[label="",style="dashed", color="red", weight=0]; 257[label="compare xuu37 xuu38",fontsize=16,color="magenta"];257 -> 310[label="",style="dashed", color="magenta", weight=3]; 257 -> 311[label="",style="dashed", color="magenta", weight=3]; 258 -> 186[label="",style="dashed", color="red", weight=0]; 258[label="compare xuu37 xuu38",fontsize=16,color="magenta"];258 -> 312[label="",style="dashed", color="magenta", weight=3]; 258 -> 313[label="",style="dashed", color="magenta", weight=3]; 259 -> 187[label="",style="dashed", color="red", weight=0]; 259[label="compare xuu37 xuu38",fontsize=16,color="magenta"];259 -> 314[label="",style="dashed", color="magenta", weight=3]; 259 -> 315[label="",style="dashed", color="magenta", weight=3]; 260 -> 188[label="",style="dashed", color="red", weight=0]; 260[label="compare xuu37 xuu38",fontsize=16,color="magenta"];260 -> 316[label="",style="dashed", color="magenta", weight=3]; 260 -> 317[label="",style="dashed", color="magenta", weight=3]; 261 -> 189[label="",style="dashed", color="red", weight=0]; 261[label="compare xuu37 xuu38",fontsize=16,color="magenta"];261 -> 318[label="",style="dashed", color="magenta", weight=3]; 261 -> 319[label="",style="dashed", color="magenta", weight=3]; 262 -> 190[label="",style="dashed", color="red", weight=0]; 262[label="compare xuu37 xuu38",fontsize=16,color="magenta"];262 -> 320[label="",style="dashed", color="magenta", weight=3]; 262 -> 321[label="",style="dashed", color="magenta", weight=3]; 263 -> 191[label="",style="dashed", color="red", weight=0]; 263[label="compare xuu37 xuu38",fontsize=16,color="magenta"];263 -> 322[label="",style="dashed", color="magenta", weight=3]; 263 -> 323[label="",style="dashed", color="magenta", weight=3]; 264 -> 192[label="",style="dashed", color="red", weight=0]; 264[label="compare xuu37 xuu38",fontsize=16,color="magenta"];264 -> 324[label="",style="dashed", color="magenta", weight=3]; 264 -> 325[label="",style="dashed", color="magenta", weight=3]; 265 -> 193[label="",style="dashed", color="red", weight=0]; 265[label="compare xuu37 xuu38",fontsize=16,color="magenta"];265 -> 326[label="",style="dashed", color="magenta", weight=3]; 265 -> 327[label="",style="dashed", color="magenta", weight=3]; 266 -> 194[label="",style="dashed", color="red", weight=0]; 266[label="compare xuu37 xuu38",fontsize=16,color="magenta"];266 -> 328[label="",style="dashed", color="magenta", weight=3]; 266 -> 329[label="",style="dashed", color="magenta", weight=3]; 267 -> 195[label="",style="dashed", color="red", weight=0]; 267[label="compare xuu37 xuu38",fontsize=16,color="magenta"];267 -> 330[label="",style="dashed", color="magenta", weight=3]; 267 -> 331[label="",style="dashed", color="magenta", weight=3]; 268 -> 196[label="",style="dashed", color="red", weight=0]; 268[label="compare xuu37 xuu38",fontsize=16,color="magenta"];268 -> 332[label="",style="dashed", color="magenta", weight=3]; 268 -> 333[label="",style="dashed", color="magenta", weight=3]; 269 -> 197[label="",style="dashed", color="red", weight=0]; 269[label="compare xuu37 xuu38",fontsize=16,color="magenta"];269 -> 334[label="",style="dashed", color="magenta", weight=3]; 269 -> 335[label="",style="dashed", color="magenta", weight=3]; 276[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];277[label="xuu27",fontsize=16,color="green",shape="box"];278[label="xuu23",fontsize=16,color="green",shape="box"];280 -> 186[label="",style="dashed", color="red", weight=0]; 280[label="compare (xuu25 : xuu26) (xuu19 : xuu20)",fontsize=16,color="magenta"];280 -> 336[label="",style="dashed", color="magenta", weight=3]; 280 -> 337[label="",style="dashed", color="magenta", weight=3]; 279[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu42 == GT)",fontsize=16,color="burlywood",shape="triangle"];3783[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 338[label="",style="solid", color="burlywood", weight=3]; 3784[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];279 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 339[label="",style="solid", color="burlywood", weight=3]; 3785[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 340[label="",style="solid", color="burlywood", weight=3]; 201[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="black",shape="triangle"];201 -> 228[label="",style="solid", color="black", weight=3]; 202 -> 201[label="",style="dashed", color="red", weight=0]; 202[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 False",fontsize=16,color="magenta"];203[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 True",fontsize=16,color="black",shape="box"];203 -> 229[label="",style="solid", color="black", weight=3]; 204 -> 230[label="",style="dashed", color="red", weight=0]; 204[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (compare (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];204 -> 231[label="",style="dashed", color="magenta", weight=3]; 205[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="black",shape="triangle"];205 -> 270[label="",style="solid", color="black", weight=3]; 206 -> 205[label="",style="dashed", color="red", weight=0]; 206[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 False",fontsize=16,color="magenta"];207[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];207 -> 271[label="",style="solid", color="black", weight=3]; 281[label="compare2 False xuu600 (False == xuu600)",fontsize=16,color="burlywood",shape="box"];3786[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];281 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 353[label="",style="solid", color="burlywood", weight=3]; 3787[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];281 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 354[label="",style="solid", color="burlywood", weight=3]; 282[label="compare2 True xuu600 (True == xuu600)",fontsize=16,color="burlywood",shape="box"];3788[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];282 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 355[label="",style="solid", color="burlywood", weight=3]; 3789[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];282 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 356[label="",style="solid", color="burlywood", weight=3]; 283[label="compare2 (xuu3110000,xuu3110001) xuu600 ((xuu3110000,xuu3110001) == xuu600)",fontsize=16,color="burlywood",shape="box"];3790[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];283 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 357[label="",style="solid", color="burlywood", weight=3]; 284 -> 140[label="",style="dashed", color="red", weight=0]; 284[label="primCompAux xuu3110000 xuu6000 (compare xuu3110001 xuu6001)",fontsize=16,color="magenta"];284 -> 358[label="",style="dashed", color="magenta", weight=3]; 284 -> 359[label="",style="dashed", color="magenta", weight=3]; 284 -> 360[label="",style="dashed", color="magenta", weight=3]; 284 -> 361[label="",style="dashed", color="magenta", weight=3]; 285[label="GT",fontsize=16,color="green",shape="box"];286[label="LT",fontsize=16,color="green",shape="box"];287[label="EQ",fontsize=16,color="green",shape="box"];288[label="compare2 Nothing xuu600 (Nothing == xuu600)",fontsize=16,color="burlywood",shape="box"];3791[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];288 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 362[label="",style="solid", color="burlywood", weight=3]; 3792[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];288 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 363[label="",style="solid", color="burlywood", weight=3]; 289[label="compare2 (Just xuu3110000) xuu600 (Just xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3793[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];289 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 364[label="",style="solid", color="burlywood", weight=3]; 3794[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];289 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 365[label="",style="solid", color="burlywood", weight=3]; 290[label="compare2 LT xuu600 (LT == xuu600)",fontsize=16,color="burlywood",shape="box"];3795[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 366[label="",style="solid", color="burlywood", weight=3]; 3796[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];290 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 367[label="",style="solid", color="burlywood", weight=3]; 3797[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 368[label="",style="solid", color="burlywood", weight=3]; 291[label="compare2 EQ xuu600 (EQ == xuu600)",fontsize=16,color="burlywood",shape="box"];3798[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 369[label="",style="solid", color="burlywood", weight=3]; 3799[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];291 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 370[label="",style="solid", color="burlywood", weight=3]; 3800[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 371[label="",style="solid", color="burlywood", weight=3]; 292[label="compare2 GT xuu600 (GT == xuu600)",fontsize=16,color="burlywood",shape="box"];3801[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];292 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 372[label="",style="solid", color="burlywood", weight=3]; 3802[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];292 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 373[label="",style="solid", color="burlywood", weight=3]; 3803[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];292 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 374[label="",style="solid", color="burlywood", weight=3]; 293 -> 218[label="",style="dashed", color="red", weight=0]; 293[label="primCmpInt xuu3110000 xuu6000",fontsize=16,color="magenta"];293 -> 375[label="",style="dashed", color="magenta", weight=3]; 293 -> 376[label="",style="dashed", color="magenta", weight=3]; 294[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3804[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];294 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 377[label="",style="solid", color="burlywood", weight=3]; 295[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3805[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];295 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 378[label="",style="solid", color="burlywood", weight=3]; 296[label="primCmpInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3806[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];296 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 379[label="",style="solid", color="burlywood", weight=3]; 3807[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];296 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 380[label="",style="solid", color="burlywood", weight=3]; 297[label="primCmpInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3808[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];297 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 381[label="",style="solid", color="burlywood", weight=3]; 3809[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];297 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 382[label="",style="solid", color="burlywood", weight=3]; 298[label="primCmpInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3810[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];298 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 383[label="",style="solid", color="burlywood", weight=3]; 3811[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];298 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 384[label="",style="solid", color="burlywood", weight=3]; 299[label="primCmpInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3812[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];299 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 385[label="",style="solid", color="burlywood", weight=3]; 3813[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];299 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 386[label="",style="solid", color="burlywood", weight=3]; 300[label="compare2 (xuu3110000,xuu3110001,xuu3110002) xuu600 ((xuu3110000,xuu3110001,xuu3110002) == xuu600)",fontsize=16,color="burlywood",shape="box"];3814[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];300 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 387[label="",style="solid", color="burlywood", weight=3]; 301[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3815[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];301 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 388[label="",style="solid", color="burlywood", weight=3]; 302[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) xuu600",fontsize=16,color="burlywood",shape="box"];3816[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];302 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 389[label="",style="solid", color="burlywood", weight=3]; 303[label="EQ",fontsize=16,color="green",shape="box"];304[label="primCmpChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];304 -> 390[label="",style="solid", color="black", weight=3]; 305[label="compare2 (Left xuu3110000) xuu600 (Left xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3817[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];305 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 391[label="",style="solid", color="burlywood", weight=3]; 3818[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];305 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 392[label="",style="solid", color="burlywood", weight=3]; 306[label="compare2 (Right xuu3110000) xuu600 (Right xuu3110000 == xuu600)",fontsize=16,color="burlywood",shape="box"];3819[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];306 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 393[label="",style="solid", color="burlywood", weight=3]; 3820[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];306 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 394[label="",style="solid", color="burlywood", weight=3]; 307[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="blue",shape="box"];3821[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];307 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 395[label="",style="solid", color="blue", weight=3]; 3822[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];307 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 396[label="",style="solid", color="blue", weight=3]; 308[label="xuu38",fontsize=16,color="green",shape="box"];309[label="xuu37",fontsize=16,color="green",shape="box"];310[label="xuu38",fontsize=16,color="green",shape="box"];311[label="xuu37",fontsize=16,color="green",shape="box"];312[label="xuu38",fontsize=16,color="green",shape="box"];313[label="xuu37",fontsize=16,color="green",shape="box"];314[label="xuu38",fontsize=16,color="green",shape="box"];315[label="xuu37",fontsize=16,color="green",shape="box"];316[label="xuu38",fontsize=16,color="green",shape="box"];317[label="xuu37",fontsize=16,color="green",shape="box"];318[label="xuu38",fontsize=16,color="green",shape="box"];319[label="xuu37",fontsize=16,color="green",shape="box"];320[label="xuu38",fontsize=16,color="green",shape="box"];321[label="xuu37",fontsize=16,color="green",shape="box"];322[label="xuu38",fontsize=16,color="green",shape="box"];323[label="xuu37",fontsize=16,color="green",shape="box"];324[label="xuu38",fontsize=16,color="green",shape="box"];325[label="xuu37",fontsize=16,color="green",shape="box"];326[label="xuu38",fontsize=16,color="green",shape="box"];327[label="xuu37",fontsize=16,color="green",shape="box"];328[label="xuu38",fontsize=16,color="green",shape="box"];329[label="xuu37",fontsize=16,color="green",shape="box"];330[label="xuu38",fontsize=16,color="green",shape="box"];331[label="xuu37",fontsize=16,color="green",shape="box"];332[label="xuu38",fontsize=16,color="green",shape="box"];333[label="xuu37",fontsize=16,color="green",shape="box"];334[label="xuu38",fontsize=16,color="green",shape="box"];335[label="xuu37",fontsize=16,color="green",shape="box"];336[label="xuu19 : xuu20",fontsize=16,color="green",shape="box"];337[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];338[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == GT)",fontsize=16,color="black",shape="box"];338 -> 397[label="",style="solid", color="black", weight=3]; 339[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == GT)",fontsize=16,color="black",shape="box"];339 -> 398[label="",style="solid", color="black", weight=3]; 340[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == GT)",fontsize=16,color="black",shape="box"];340 -> 399[label="",style="solid", color="black", weight=3]; 228[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 otherwise",fontsize=16,color="black",shape="box"];228 -> 272[label="",style="solid", color="black", weight=3]; 229 -> 273[label="",style="dashed", color="red", weight=0]; 229[label="FiniteMap.mkBalBranch [] xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (xuu311000 : xuu311001) xuu31101)",fontsize=16,color="magenta"];229 -> 274[label="",style="dashed", color="magenta", weight=3]; 231 -> 191[label="",style="dashed", color="red", weight=0]; 231[label="compare (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];231 -> 341[label="",style="dashed", color="magenta", weight=3]; 231 -> 342[label="",style="dashed", color="magenta", weight=3]; 230[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu40 == LT)",fontsize=16,color="burlywood",shape="triangle"];3823[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];230 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 343[label="",style="solid", color="burlywood", weight=3]; 3824[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];230 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 344[label="",style="solid", color="burlywood", weight=3]; 3825[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];230 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 345[label="",style="solid", color="burlywood", weight=3]; 270[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 otherwise",fontsize=16,color="black",shape="box"];270 -> 346[label="",style="solid", color="black", weight=3]; 271 -> 273[label="",style="dashed", color="red", weight=0]; 271[label="FiniteMap.mkBalBranch [] xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 [] xuu31101)",fontsize=16,color="magenta"];271 -> 275[label="",style="dashed", color="magenta", weight=3]; 353[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];353 -> 407[label="",style="solid", color="black", weight=3]; 354[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];354 -> 408[label="",style="solid", color="black", weight=3]; 355[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];355 -> 409[label="",style="solid", color="black", weight=3]; 356[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];356 -> 410[label="",style="solid", color="black", weight=3]; 357[label="compare2 (xuu3110000,xuu3110001) (xuu6000,xuu6001) ((xuu3110000,xuu3110001) == (xuu6000,xuu6001))",fontsize=16,color="black",shape="box"];357 -> 411[label="",style="solid", color="black", weight=3]; 358[label="xuu6000",fontsize=16,color="green",shape="box"];359[label="xuu6001",fontsize=16,color="green",shape="box"];360[label="xuu3110000",fontsize=16,color="green",shape="box"];361[label="xuu3110001",fontsize=16,color="green",shape="box"];362[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];362 -> 412[label="",style="solid", color="black", weight=3]; 363[label="compare2 Nothing (Just xuu6000) (Nothing == Just xuu6000)",fontsize=16,color="black",shape="box"];363 -> 413[label="",style="solid", color="black", weight=3]; 364[label="compare2 (Just xuu3110000) Nothing (Just xuu3110000 == Nothing)",fontsize=16,color="black",shape="box"];364 -> 414[label="",style="solid", color="black", weight=3]; 365[label="compare2 (Just xuu3110000) (Just xuu6000) (Just xuu3110000 == Just xuu6000)",fontsize=16,color="black",shape="box"];365 -> 415[label="",style="solid", color="black", weight=3]; 366[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];366 -> 416[label="",style="solid", color="black", weight=3]; 367[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];367 -> 417[label="",style="solid", color="black", weight=3]; 368[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];368 -> 418[label="",style="solid", color="black", weight=3]; 369[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];369 -> 419[label="",style="solid", color="black", weight=3]; 370[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];370 -> 420[label="",style="solid", color="black", weight=3]; 371[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];371 -> 421[label="",style="solid", color="black", weight=3]; 372[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];372 -> 422[label="",style="solid", color="black", weight=3]; 373[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];373 -> 423[label="",style="solid", color="black", weight=3]; 374[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];374 -> 424[label="",style="solid", color="black", weight=3]; 375[label="xuu6000",fontsize=16,color="green",shape="box"];376[label="xuu3110000",fontsize=16,color="green",shape="box"];377[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3826[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 425[label="",style="solid", color="burlywood", weight=3]; 3827[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];377 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 426[label="",style="solid", color="burlywood", weight=3]; 378[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3828[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 427[label="",style="solid", color="burlywood", weight=3]; 3829[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];378 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 428[label="",style="solid", color="burlywood", weight=3]; 379[label="primCmpInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];379 -> 429[label="",style="solid", color="black", weight=3]; 380[label="primCmpInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];380 -> 430[label="",style="solid", color="black", weight=3]; 381[label="primCmpInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3830[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];381 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 431[label="",style="solid", color="burlywood", weight=3]; 3831[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];381 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 432[label="",style="solid", color="burlywood", weight=3]; 382[label="primCmpInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3832[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];382 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 433[label="",style="solid", color="burlywood", weight=3]; 3833[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];382 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 434[label="",style="solid", color="burlywood", weight=3]; 383[label="primCmpInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];383 -> 435[label="",style="solid", color="black", weight=3]; 384[label="primCmpInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];384 -> 436[label="",style="solid", color="black", weight=3]; 385[label="primCmpInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3834[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];385 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 437[label="",style="solid", color="burlywood", weight=3]; 3835[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];385 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 438[label="",style="solid", color="burlywood", weight=3]; 386[label="primCmpInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3836[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];386 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 439[label="",style="solid", color="burlywood", weight=3]; 3837[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];386 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 440[label="",style="solid", color="burlywood", weight=3]; 387[label="compare2 (xuu3110000,xuu3110001,xuu3110002) (xuu6000,xuu6001,xuu6002) ((xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002))",fontsize=16,color="black",shape="box"];387 -> 441[label="",style="solid", color="black", weight=3]; 388[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3838[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];388 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 442[label="",style="solid", color="burlywood", weight=3]; 3839[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];388 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 443[label="",style="solid", color="burlywood", weight=3]; 389[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 xuu6001)",fontsize=16,color="burlywood",shape="box"];3840[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];389 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 444[label="",style="solid", color="burlywood", weight=3]; 3841[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];389 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 445[label="",style="solid", color="burlywood", weight=3]; 390[label="primCmpNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3842[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];390 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 446[label="",style="solid", color="burlywood", weight=3]; 3843[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];390 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 447[label="",style="solid", color="burlywood", weight=3]; 391[label="compare2 (Left xuu3110000) (Left xuu6000) (Left xuu3110000 == Left xuu6000)",fontsize=16,color="black",shape="box"];391 -> 448[label="",style="solid", color="black", weight=3]; 392[label="compare2 (Left xuu3110000) (Right xuu6000) (Left xuu3110000 == Right xuu6000)",fontsize=16,color="black",shape="box"];392 -> 449[label="",style="solid", color="black", weight=3]; 393[label="compare2 (Right xuu3110000) (Left xuu6000) (Right xuu3110000 == Left xuu6000)",fontsize=16,color="black",shape="box"];393 -> 450[label="",style="solid", color="black", weight=3]; 394[label="compare2 (Right xuu3110000) (Right xuu6000) (Right xuu3110000 == Right xuu6000)",fontsize=16,color="black",shape="box"];394 -> 451[label="",style="solid", color="black", weight=3]; 395 -> 189[label="",style="dashed", color="red", weight=0]; 395[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="magenta"];395 -> 452[label="",style="dashed", color="magenta", weight=3]; 395 -> 453[label="",style="dashed", color="magenta", weight=3]; 396 -> 191[label="",style="dashed", color="red", weight=0]; 396[label="compare (xuu3110000 * xuu6001) (xuu6000 * xuu3110001)",fontsize=16,color="magenta"];396 -> 454[label="",style="dashed", color="magenta", weight=3]; 396 -> 455[label="",style="dashed", color="magenta", weight=3]; 397[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];397 -> 456[label="",style="solid", color="black", weight=3]; 398 -> 397[label="",style="dashed", color="red", weight=0]; 398[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];399[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];399 -> 457[label="",style="solid", color="black", weight=3]; 272[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 (xuu311000 : xuu311001) xuu31101 True",fontsize=16,color="black",shape="box"];272 -> 347[label="",style="solid", color="black", weight=3]; 274 -> 35[label="",style="dashed", color="red", weight=0]; 274[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (xuu311000 : xuu311001) xuu31101",fontsize=16,color="magenta"];274 -> 348[label="",style="dashed", color="magenta", weight=3]; 274 -> 349[label="",style="dashed", color="magenta", weight=3]; 273[label="FiniteMap.mkBalBranch [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];273 -> 350[label="",style="solid", color="black", weight=3]; 341[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];342[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 + FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="box"];342 -> 400[label="",style="solid", color="black", weight=3]; 343[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (LT == LT)",fontsize=16,color="black",shape="box"];343 -> 401[label="",style="solid", color="black", weight=3]; 344[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (EQ == LT)",fontsize=16,color="black",shape="box"];344 -> 402[label="",style="solid", color="black", weight=3]; 345[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (GT == LT)",fontsize=16,color="black",shape="box"];345 -> 403[label="",style="solid", color="black", weight=3]; 346[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu61 xuu62 xuu63 xuu64 [] xuu31101 True",fontsize=16,color="black",shape="box"];346 -> 404[label="",style="solid", color="black", weight=3]; 275 -> 35[label="",style="dashed", color="red", weight=0]; 275[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 [] xuu31101",fontsize=16,color="magenta"];275 -> 351[label="",style="dashed", color="magenta", weight=3]; 275 -> 352[label="",style="dashed", color="magenta", weight=3]; 407[label="compare2 False False True",fontsize=16,color="black",shape="box"];407 -> 464[label="",style="solid", color="black", weight=3]; 408[label="compare2 False True False",fontsize=16,color="black",shape="box"];408 -> 465[label="",style="solid", color="black", weight=3]; 409[label="compare2 True False False",fontsize=16,color="black",shape="box"];409 -> 466[label="",style="solid", color="black", weight=3]; 410[label="compare2 True True True",fontsize=16,color="black",shape="box"];410 -> 467[label="",style="solid", color="black", weight=3]; 411 -> 915[label="",style="dashed", color="red", weight=0]; 411[label="compare2 (xuu3110000,xuu3110001) (xuu6000,xuu6001) (xuu3110000 == xuu6000 && xuu3110001 == xuu6001)",fontsize=16,color="magenta"];411 -> 916[label="",style="dashed", color="magenta", weight=3]; 411 -> 917[label="",style="dashed", color="magenta", weight=3]; 411 -> 918[label="",style="dashed", color="magenta", weight=3]; 411 -> 919[label="",style="dashed", color="magenta", weight=3]; 411 -> 920[label="",style="dashed", color="magenta", weight=3]; 412[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];412 -> 474[label="",style="solid", color="black", weight=3]; 413[label="compare2 Nothing (Just xuu6000) False",fontsize=16,color="black",shape="box"];413 -> 475[label="",style="solid", color="black", weight=3]; 414[label="compare2 (Just xuu3110000) Nothing False",fontsize=16,color="black",shape="box"];414 -> 476[label="",style="solid", color="black", weight=3]; 415 -> 477[label="",style="dashed", color="red", weight=0]; 415[label="compare2 (Just xuu3110000) (Just xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];415 -> 478[label="",style="dashed", color="magenta", weight=3]; 415 -> 479[label="",style="dashed", color="magenta", weight=3]; 415 -> 480[label="",style="dashed", color="magenta", weight=3]; 416[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];416 -> 481[label="",style="solid", color="black", weight=3]; 417[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];417 -> 482[label="",style="solid", color="black", weight=3]; 418[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];418 -> 483[label="",style="solid", color="black", weight=3]; 419[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];419 -> 484[label="",style="solid", color="black", weight=3]; 420[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];420 -> 485[label="",style="solid", color="black", weight=3]; 421[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];421 -> 486[label="",style="solid", color="black", weight=3]; 422[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];422 -> 487[label="",style="solid", color="black", weight=3]; 423[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];423 -> 488[label="",style="solid", color="black", weight=3]; 424[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];424 -> 489[label="",style="solid", color="black", weight=3]; 425[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];425 -> 490[label="",style="solid", color="black", weight=3]; 426[label="primCmpDouble (Double xuu3110000 (Pos xuu31100010)) (Double xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];426 -> 491[label="",style="solid", color="black", weight=3]; 427[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];427 -> 492[label="",style="solid", color="black", weight=3]; 428[label="primCmpDouble (Double xuu3110000 (Neg xuu31100010)) (Double xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];428 -> 493[label="",style="solid", color="black", weight=3]; 429 -> 390[label="",style="dashed", color="red", weight=0]; 429[label="primCmpNat (Succ xuu31100000) xuu6000",fontsize=16,color="magenta"];429 -> 494[label="",style="dashed", color="magenta", weight=3]; 429 -> 495[label="",style="dashed", color="magenta", weight=3]; 430[label="GT",fontsize=16,color="green",shape="box"];431[label="primCmpInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];431 -> 496[label="",style="solid", color="black", weight=3]; 432[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];432 -> 497[label="",style="solid", color="black", weight=3]; 433[label="primCmpInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];433 -> 498[label="",style="solid", color="black", weight=3]; 434[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];434 -> 499[label="",style="solid", color="black", weight=3]; 435[label="LT",fontsize=16,color="green",shape="box"];436 -> 390[label="",style="dashed", color="red", weight=0]; 436[label="primCmpNat xuu6000 (Succ xuu31100000)",fontsize=16,color="magenta"];436 -> 500[label="",style="dashed", color="magenta", weight=3]; 436 -> 501[label="",style="dashed", color="magenta", weight=3]; 437[label="primCmpInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];437 -> 502[label="",style="solid", color="black", weight=3]; 438[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];438 -> 503[label="",style="solid", color="black", weight=3]; 439[label="primCmpInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];439 -> 504[label="",style="solid", color="black", weight=3]; 440[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];440 -> 505[label="",style="solid", color="black", weight=3]; 441 -> 964[label="",style="dashed", color="red", weight=0]; 441[label="compare2 (xuu3110000,xuu3110001,xuu3110002) (xuu6000,xuu6001,xuu6002) (xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002)",fontsize=16,color="magenta"];441 -> 965[label="",style="dashed", color="magenta", weight=3]; 441 -> 966[label="",style="dashed", color="magenta", weight=3]; 441 -> 967[label="",style="dashed", color="magenta", weight=3]; 441 -> 968[label="",style="dashed", color="magenta", weight=3]; 441 -> 969[label="",style="dashed", color="magenta", weight=3]; 441 -> 970[label="",style="dashed", color="magenta", weight=3]; 441 -> 971[label="",style="dashed", color="magenta", weight=3]; 442[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];442 -> 514[label="",style="solid", color="black", weight=3]; 443[label="primCmpFloat (Float xuu3110000 (Pos xuu31100010)) (Float xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];443 -> 515[label="",style="solid", color="black", weight=3]; 444[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 (Pos xuu60010))",fontsize=16,color="black",shape="box"];444 -> 516[label="",style="solid", color="black", weight=3]; 445[label="primCmpFloat (Float xuu3110000 (Neg xuu31100010)) (Float xuu6000 (Neg xuu60010))",fontsize=16,color="black",shape="box"];445 -> 517[label="",style="solid", color="black", weight=3]; 446[label="primCmpNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3844[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];446 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 518[label="",style="solid", color="burlywood", weight=3]; 3845[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];446 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 519[label="",style="solid", color="burlywood", weight=3]; 447[label="primCmpNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3846[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];447 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 520[label="",style="solid", color="burlywood", weight=3]; 3847[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];447 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 521[label="",style="solid", color="burlywood", weight=3]; 448 -> 522[label="",style="dashed", color="red", weight=0]; 448[label="compare2 (Left xuu3110000) (Left xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];448 -> 523[label="",style="dashed", color="magenta", weight=3]; 448 -> 524[label="",style="dashed", color="magenta", weight=3]; 448 -> 525[label="",style="dashed", color="magenta", weight=3]; 449[label="compare2 (Left xuu3110000) (Right xuu6000) False",fontsize=16,color="black",shape="box"];449 -> 526[label="",style="solid", color="black", weight=3]; 450[label="compare2 (Right xuu3110000) (Left xuu6000) False",fontsize=16,color="black",shape="box"];450 -> 527[label="",style="solid", color="black", weight=3]; 451 -> 528[label="",style="dashed", color="red", weight=0]; 451[label="compare2 (Right xuu3110000) (Right xuu6000) (xuu3110000 == xuu6000)",fontsize=16,color="magenta"];451 -> 529[label="",style="dashed", color="magenta", weight=3]; 451 -> 530[label="",style="dashed", color="magenta", weight=3]; 451 -> 531[label="",style="dashed", color="magenta", weight=3]; 452[label="xuu6000 * xuu3110001",fontsize=16,color="burlywood",shape="triangle"];3848[label="xuu6000/Integer xuu60000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 532[label="",style="solid", color="burlywood", weight=3]; 453 -> 452[label="",style="dashed", color="red", weight=0]; 453[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];453 -> 533[label="",style="dashed", color="magenta", weight=3]; 453 -> 534[label="",style="dashed", color="magenta", weight=3]; 454[label="xuu6000 * xuu3110001",fontsize=16,color="black",shape="triangle"];454 -> 535[label="",style="solid", color="black", weight=3]; 455 -> 454[label="",style="dashed", color="red", weight=0]; 455[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];455 -> 536[label="",style="dashed", color="magenta", weight=3]; 455 -> 537[label="",style="dashed", color="magenta", weight=3]; 456[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];456 -> 538[label="",style="solid", color="black", weight=3]; 457 -> 92[label="",style="dashed", color="red", weight=0]; 457[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 xuu23 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25 : xuu26) xuu27)",fontsize=16,color="magenta"];457 -> 539[label="",style="dashed", color="magenta", weight=3]; 457 -> 540[label="",style="dashed", color="magenta", weight=3]; 457 -> 541[label="",style="dashed", color="magenta", weight=3]; 457 -> 542[label="",style="dashed", color="magenta", weight=3]; 457 -> 543[label="",style="dashed", color="magenta", weight=3]; 347[label="FiniteMap.Branch (xuu311000 : xuu311001) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];347 -> 405[label="",style="dashed", color="green", weight=3]; 348[label="xuu311000 : xuu311001",fontsize=16,color="green",shape="box"];349[label="xuu64",fontsize=16,color="green",shape="box"];350[label="FiniteMap.mkBalBranch6 [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="box"];350 -> 406[label="",style="solid", color="black", weight=3]; 400 -> 2131[label="",style="dashed", color="red", weight=0]; 400[label="primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64) (FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];400 -> 2132[label="",style="dashed", color="magenta", weight=3]; 400 -> 2133[label="",style="dashed", color="magenta", weight=3]; 401[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];401 -> 459[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="triangle"];402 -> 460[label="",style="solid", color="black", weight=3]; 403 -> 402[label="",style="dashed", color="red", weight=0]; 403[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="magenta"];404[label="FiniteMap.Branch [] (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];404 -> 461[label="",style="dashed", color="green", weight=3]; 351[label="[]",fontsize=16,color="green",shape="box"];352[label="xuu64",fontsize=16,color="green",shape="box"];464[label="EQ",fontsize=16,color="green",shape="box"];465[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];465 -> 544[label="",style="solid", color="black", weight=3]; 466[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];466 -> 545[label="",style="solid", color="black", weight=3]; 467[label="EQ",fontsize=16,color="green",shape="box"];916[label="xuu6001",fontsize=16,color="green",shape="box"];917 -> 996[label="",style="dashed", color="red", weight=0]; 917[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];917 -> 997[label="",style="dashed", color="magenta", weight=3]; 917 -> 998[label="",style="dashed", color="magenta", weight=3]; 918[label="xuu3110000",fontsize=16,color="green",shape="box"];919[label="xuu3110001",fontsize=16,color="green",shape="box"];920[label="xuu6000",fontsize=16,color="green",shape="box"];915[label="compare2 (xuu99,xuu100) (xuu101,xuu102) xuu103",fontsize=16,color="burlywood",shape="triangle"];3849[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];915 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 940[label="",style="solid", color="burlywood", weight=3]; 3850[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];915 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 941[label="",style="solid", color="burlywood", weight=3]; 474[label="EQ",fontsize=16,color="green",shape="box"];475[label="compare1 Nothing (Just xuu6000) (Nothing <= Just xuu6000)",fontsize=16,color="black",shape="box"];475 -> 562[label="",style="solid", color="black", weight=3]; 476[label="compare1 (Just xuu3110000) Nothing (Just xuu3110000 <= Nothing)",fontsize=16,color="black",shape="box"];476 -> 563[label="",style="solid", color="black", weight=3]; 478[label="xuu6000",fontsize=16,color="green",shape="box"];479[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3851[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 564[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 565[label="",style="solid", color="blue", weight=3]; 3853[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 566[label="",style="solid", color="blue", weight=3]; 3854[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 567[label="",style="solid", color="blue", weight=3]; 3855[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 568[label="",style="solid", color="blue", weight=3]; 3856[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 569[label="",style="solid", color="blue", weight=3]; 3857[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 570[label="",style="solid", color="blue", weight=3]; 3858[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 571[label="",style="solid", color="blue", weight=3]; 3859[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 572[label="",style="solid", color="blue", weight=3]; 3860[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 573[label="",style="solid", color="blue", weight=3]; 3861[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 574[label="",style="solid", color="blue", weight=3]; 3862[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3862[label="",style="solid", color="blue", weight=9]; 3862 -> 575[label="",style="solid", color="blue", weight=3]; 3863[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3863[label="",style="solid", color="blue", weight=9]; 3863 -> 576[label="",style="solid", color="blue", weight=3]; 3864[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];479 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 577[label="",style="solid", color="blue", weight=3]; 480[label="xuu3110000",fontsize=16,color="green",shape="box"];477[label="compare2 (Just xuu58) (Just xuu59) xuu60",fontsize=16,color="burlywood",shape="triangle"];3865[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];477 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 578[label="",style="solid", color="burlywood", weight=3]; 3866[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];477 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 579[label="",style="solid", color="burlywood", weight=3]; 481[label="EQ",fontsize=16,color="green",shape="box"];482[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];482 -> 580[label="",style="solid", color="black", weight=3]; 483[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];483 -> 581[label="",style="solid", color="black", weight=3]; 484[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];484 -> 582[label="",style="solid", color="black", weight=3]; 485[label="EQ",fontsize=16,color="green",shape="box"];486[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];486 -> 583[label="",style="solid", color="black", weight=3]; 487[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];487 -> 584[label="",style="solid", color="black", weight=3]; 488[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];488 -> 585[label="",style="solid", color="black", weight=3]; 489[label="EQ",fontsize=16,color="green",shape="box"];490 -> 191[label="",style="dashed", color="red", weight=0]; 490[label="compare (xuu3110000 * Pos xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];490 -> 586[label="",style="dashed", color="magenta", weight=3]; 490 -> 587[label="",style="dashed", color="magenta", weight=3]; 491 -> 191[label="",style="dashed", color="red", weight=0]; 491[label="compare (xuu3110000 * Pos xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];491 -> 588[label="",style="dashed", color="magenta", weight=3]; 491 -> 589[label="",style="dashed", color="magenta", weight=3]; 492 -> 191[label="",style="dashed", color="red", weight=0]; 492[label="compare (xuu3110000 * Neg xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];492 -> 590[label="",style="dashed", color="magenta", weight=3]; 492 -> 591[label="",style="dashed", color="magenta", weight=3]; 493 -> 191[label="",style="dashed", color="red", weight=0]; 493[label="compare (xuu3110000 * Neg xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];493 -> 592[label="",style="dashed", color="magenta", weight=3]; 493 -> 593[label="",style="dashed", color="magenta", weight=3]; 494[label="Succ xuu31100000",fontsize=16,color="green",shape="box"];495[label="xuu6000",fontsize=16,color="green",shape="box"];496 -> 390[label="",style="dashed", color="red", weight=0]; 496[label="primCmpNat Zero (Succ xuu60000)",fontsize=16,color="magenta"];496 -> 594[label="",style="dashed", color="magenta", weight=3]; 496 -> 595[label="",style="dashed", color="magenta", weight=3]; 497[label="EQ",fontsize=16,color="green",shape="box"];498[label="GT",fontsize=16,color="green",shape="box"];499[label="EQ",fontsize=16,color="green",shape="box"];500[label="xuu6000",fontsize=16,color="green",shape="box"];501[label="Succ xuu31100000",fontsize=16,color="green",shape="box"];502[label="LT",fontsize=16,color="green",shape="box"];503[label="EQ",fontsize=16,color="green",shape="box"];504 -> 390[label="",style="dashed", color="red", weight=0]; 504[label="primCmpNat (Succ xuu60000) Zero",fontsize=16,color="magenta"];504 -> 596[label="",style="dashed", color="magenta", weight=3]; 504 -> 597[label="",style="dashed", color="magenta", weight=3]; 505[label="EQ",fontsize=16,color="green",shape="box"];965 -> 996[label="",style="dashed", color="red", weight=0]; 965[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];965 -> 999[label="",style="dashed", color="magenta", weight=3]; 965 -> 1000[label="",style="dashed", color="magenta", weight=3]; 966[label="xuu3110000",fontsize=16,color="green",shape="box"];967[label="xuu3110001",fontsize=16,color="green",shape="box"];968[label="xuu6002",fontsize=16,color="green",shape="box"];969[label="xuu6001",fontsize=16,color="green",shape="box"];970[label="xuu6000",fontsize=16,color="green",shape="box"];971[label="xuu3110002",fontsize=16,color="green",shape="box"];964[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) xuu111",fontsize=16,color="burlywood",shape="triangle"];3867[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];964 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 980[label="",style="solid", color="burlywood", weight=3]; 3868[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];964 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 981[label="",style="solid", color="burlywood", weight=3]; 514 -> 191[label="",style="dashed", color="red", weight=0]; 514[label="compare (xuu3110000 * Pos xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];514 -> 614[label="",style="dashed", color="magenta", weight=3]; 514 -> 615[label="",style="dashed", color="magenta", weight=3]; 515 -> 191[label="",style="dashed", color="red", weight=0]; 515[label="compare (xuu3110000 * Pos xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];515 -> 616[label="",style="dashed", color="magenta", weight=3]; 515 -> 617[label="",style="dashed", color="magenta", weight=3]; 516 -> 191[label="",style="dashed", color="red", weight=0]; 516[label="compare (xuu3110000 * Neg xuu60010) (Pos xuu31100010 * xuu6000)",fontsize=16,color="magenta"];516 -> 618[label="",style="dashed", color="magenta", weight=3]; 516 -> 619[label="",style="dashed", color="magenta", weight=3]; 517 -> 191[label="",style="dashed", color="red", weight=0]; 517[label="compare (xuu3110000 * Neg xuu60010) (Neg xuu31100010 * xuu6000)",fontsize=16,color="magenta"];517 -> 620[label="",style="dashed", color="magenta", weight=3]; 517 -> 621[label="",style="dashed", color="magenta", weight=3]; 518[label="primCmpNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];518 -> 622[label="",style="solid", color="black", weight=3]; 519[label="primCmpNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];519 -> 623[label="",style="solid", color="black", weight=3]; 520[label="primCmpNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];520 -> 624[label="",style="solid", color="black", weight=3]; 521[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];521 -> 625[label="",style="solid", color="black", weight=3]; 523[label="xuu3110000",fontsize=16,color="green",shape="box"];524[label="xuu6000",fontsize=16,color="green",shape="box"];525[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3869[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3869[label="",style="solid", color="blue", weight=9]; 3869 -> 626[label="",style="solid", color="blue", weight=3]; 3870[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3870[label="",style="solid", color="blue", weight=9]; 3870 -> 627[label="",style="solid", color="blue", weight=3]; 3871[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 628[label="",style="solid", color="blue", weight=3]; 3872[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 629[label="",style="solid", color="blue", weight=3]; 3873[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 630[label="",style="solid", color="blue", weight=3]; 3874[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 631[label="",style="solid", color="blue", weight=3]; 3875[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 632[label="",style="solid", color="blue", weight=3]; 3876[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 633[label="",style="solid", color="blue", weight=3]; 3877[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 634[label="",style="solid", color="blue", weight=3]; 3878[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 635[label="",style="solid", color="blue", weight=3]; 3879[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 636[label="",style="solid", color="blue", weight=3]; 3880[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 637[label="",style="solid", color="blue", weight=3]; 3881[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 638[label="",style="solid", color="blue", weight=3]; 3882[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];525 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 639[label="",style="solid", color="blue", weight=3]; 522[label="compare2 (Left xuu80) (Left xuu81) xuu82",fontsize=16,color="burlywood",shape="triangle"];3883[label="xuu82/False",fontsize=10,color="white",style="solid",shape="box"];522 -> 3883[label="",style="solid", color="burlywood", weight=9]; 3883 -> 640[label="",style="solid", color="burlywood", weight=3]; 3884[label="xuu82/True",fontsize=10,color="white",style="solid",shape="box"];522 -> 3884[label="",style="solid", color="burlywood", weight=9]; 3884 -> 641[label="",style="solid", color="burlywood", weight=3]; 526[label="compare1 (Left xuu3110000) (Right xuu6000) (Left xuu3110000 <= Right xuu6000)",fontsize=16,color="black",shape="box"];526 -> 642[label="",style="solid", color="black", weight=3]; 527[label="compare1 (Right xuu3110000) (Left xuu6000) (Right xuu3110000 <= Left xuu6000)",fontsize=16,color="black",shape="box"];527 -> 643[label="",style="solid", color="black", weight=3]; 529[label="xuu3110000",fontsize=16,color="green",shape="box"];530[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3885[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 644[label="",style="solid", color="blue", weight=3]; 3886[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 645[label="",style="solid", color="blue", weight=3]; 3887[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 646[label="",style="solid", color="blue", weight=3]; 3888[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 647[label="",style="solid", color="blue", weight=3]; 3889[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 648[label="",style="solid", color="blue", weight=3]; 3890[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 649[label="",style="solid", color="blue", weight=3]; 3891[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 650[label="",style="solid", color="blue", weight=3]; 3892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 651[label="",style="solid", color="blue", weight=3]; 3893[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 652[label="",style="solid", color="blue", weight=3]; 3894[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 653[label="",style="solid", color="blue", weight=3]; 3895[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 654[label="",style="solid", color="blue", weight=3]; 3896[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 655[label="",style="solid", color="blue", weight=3]; 3897[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 656[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];530 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 657[label="",style="solid", color="blue", weight=3]; 531[label="xuu6000",fontsize=16,color="green",shape="box"];528[label="compare2 (Right xuu87) (Right xuu88) xuu89",fontsize=16,color="burlywood",shape="triangle"];3899[label="xuu89/False",fontsize=10,color="white",style="solid",shape="box"];528 -> 3899[label="",style="solid", color="burlywood", weight=9]; 3899 -> 658[label="",style="solid", color="burlywood", weight=3]; 3900[label="xuu89/True",fontsize=10,color="white",style="solid",shape="box"];528 -> 3900[label="",style="solid", color="burlywood", weight=9]; 3900 -> 659[label="",style="solid", color="burlywood", weight=3]; 532[label="Integer xuu60000 * xuu3110001",fontsize=16,color="burlywood",shape="box"];3901[label="xuu3110001/Integer xuu31100010",fontsize=10,color="white",style="solid",shape="box"];532 -> 3901[label="",style="solid", color="burlywood", weight=9]; 3901 -> 665[label="",style="solid", color="burlywood", weight=3]; 533[label="xuu3110000",fontsize=16,color="green",shape="box"];534[label="xuu6001",fontsize=16,color="green",shape="box"];535[label="primMulInt xuu6000 xuu3110001",fontsize=16,color="burlywood",shape="triangle"];3902[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];535 -> 3902[label="",style="solid", color="burlywood", weight=9]; 3902 -> 666[label="",style="solid", color="burlywood", weight=3]; 3903[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];535 -> 3903[label="",style="solid", color="burlywood", weight=9]; 3903 -> 667[label="",style="solid", color="burlywood", weight=3]; 536[label="xuu3110000",fontsize=16,color="green",shape="box"];537[label="xuu6001",fontsize=16,color="green",shape="box"];538[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];538 -> 668[label="",style="solid", color="black", weight=3]; 539[label="xuu21",fontsize=16,color="green",shape="box"];540 -> 35[label="",style="dashed", color="red", weight=0]; 540[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu24 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];540 -> 669[label="",style="dashed", color="magenta", weight=3]; 540 -> 670[label="",style="dashed", color="magenta", weight=3]; 540 -> 671[label="",style="dashed", color="magenta", weight=3]; 541[label="xuu19",fontsize=16,color="green",shape="box"];542[label="xuu20",fontsize=16,color="green",shape="box"];543[label="xuu23",fontsize=16,color="green",shape="box"];405[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="black",shape="triangle"];405 -> 462[label="",style="solid", color="black", weight=3]; 406 -> 860[label="",style="dashed", color="red", weight=0]; 406[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];406 -> 861[label="",style="dashed", color="magenta", weight=3]; 2132 -> 1750[label="",style="dashed", color="red", weight=0]; 2132[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2133 -> 1744[label="",style="dashed", color="red", weight=0]; 2133[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2131[label="primPlusInt xuu197 xuu196",fontsize=16,color="burlywood",shape="triangle"];3904[label="xuu197/Pos xuu1970",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 2166[label="",style="solid", color="burlywood", weight=3]; 3905[label="xuu197/Neg xuu1970",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3905[label="",style="solid", color="burlywood", weight=9]; 3905 -> 2167[label="",style="solid", color="burlywood", weight=3]; 459 -> 3440[label="",style="dashed", color="red", weight=0]; 459[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];459 -> 3441[label="",style="dashed", color="magenta", weight=3]; 459 -> 3442[label="",style="dashed", color="magenta", weight=3]; 459 -> 3443[label="",style="dashed", color="magenta", weight=3]; 459 -> 3444[label="",style="dashed", color="magenta", weight=3]; 459 -> 3445[label="",style="dashed", color="magenta", weight=3]; 460 -> 1075[label="",style="dashed", color="red", weight=0]; 460[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];460 -> 1076[label="",style="dashed", color="magenta", weight=3]; 461 -> 405[label="",style="dashed", color="red", weight=0]; 461[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];544[label="compare1 False True True",fontsize=16,color="black",shape="box"];544 -> 672[label="",style="solid", color="black", weight=3]; 545[label="compare1 True False False",fontsize=16,color="black",shape="box"];545 -> 673[label="",style="solid", color="black", weight=3]; 997[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3906[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 1005[label="",style="solid", color="blue", weight=3]; 3907[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 1006[label="",style="solid", color="blue", weight=3]; 3908[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 1007[label="",style="solid", color="blue", weight=3]; 3909[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 1008[label="",style="solid", color="blue", weight=3]; 3910[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 1009[label="",style="solid", color="blue", weight=3]; 3911[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 1010[label="",style="solid", color="blue", weight=3]; 3912[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 1011[label="",style="solid", color="blue", weight=3]; 3913[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 1012[label="",style="solid", color="blue", weight=3]; 3914[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 1013[label="",style="solid", color="blue", weight=3]; 3915[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 1014[label="",style="solid", color="blue", weight=3]; 3916[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 1015[label="",style="solid", color="blue", weight=3]; 3917[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 1016[label="",style="solid", color="blue", weight=3]; 3918[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 1017[label="",style="solid", color="blue", weight=3]; 3919[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];997 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 1018[label="",style="solid", color="blue", weight=3]; 998[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3920[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 1019[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 1020[label="",style="solid", color="blue", weight=3]; 3922[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 1021[label="",style="solid", color="blue", weight=3]; 3923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 1022[label="",style="solid", color="blue", weight=3]; 3924[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 1023[label="",style="solid", color="blue", weight=3]; 3925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 1024[label="",style="solid", color="blue", weight=3]; 3926[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 1025[label="",style="solid", color="blue", weight=3]; 3927[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 1026[label="",style="solid", color="blue", weight=3]; 3928[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 1027[label="",style="solid", color="blue", weight=3]; 3929[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 1028[label="",style="solid", color="blue", weight=3]; 3930[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 1029[label="",style="solid", color="blue", weight=3]; 3931[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 1030[label="",style="solid", color="blue", weight=3]; 3932[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 1031[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];998 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 1032[label="",style="solid", color="blue", weight=3]; 996[label="xuu116 && xuu117",fontsize=16,color="burlywood",shape="triangle"];3934[label="xuu116/False",fontsize=10,color="white",style="solid",shape="box"];996 -> 3934[label="",style="solid", color="burlywood", weight=9]; 3934 -> 1033[label="",style="solid", color="burlywood", weight=3]; 3935[label="xuu116/True",fontsize=10,color="white",style="solid",shape="box"];996 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 1034[label="",style="solid", color="burlywood", weight=3]; 940[label="compare2 (xuu99,xuu100) (xuu101,xuu102) False",fontsize=16,color="black",shape="box"];940 -> 1035[label="",style="solid", color="black", weight=3]; 941[label="compare2 (xuu99,xuu100) (xuu101,xuu102) True",fontsize=16,color="black",shape="box"];941 -> 1036[label="",style="solid", color="black", weight=3]; 562[label="compare1 Nothing (Just xuu6000) True",fontsize=16,color="black",shape="box"];562 -> 696[label="",style="solid", color="black", weight=3]; 563[label="compare1 (Just xuu3110000) Nothing False",fontsize=16,color="black",shape="box"];563 -> 697[label="",style="solid", color="black", weight=3]; 564 -> 546[label="",style="dashed", color="red", weight=0]; 564[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];564 -> 698[label="",style="dashed", color="magenta", weight=3]; 564 -> 699[label="",style="dashed", color="magenta", weight=3]; 565 -> 547[label="",style="dashed", color="red", weight=0]; 565[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];565 -> 700[label="",style="dashed", color="magenta", weight=3]; 565 -> 701[label="",style="dashed", color="magenta", weight=3]; 566 -> 548[label="",style="dashed", color="red", weight=0]; 566[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];566 -> 702[label="",style="dashed", color="magenta", weight=3]; 566 -> 703[label="",style="dashed", color="magenta", weight=3]; 567 -> 549[label="",style="dashed", color="red", weight=0]; 567[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];567 -> 704[label="",style="dashed", color="magenta", weight=3]; 567 -> 705[label="",style="dashed", color="magenta", weight=3]; 568 -> 550[label="",style="dashed", color="red", weight=0]; 568[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];568 -> 706[label="",style="dashed", color="magenta", weight=3]; 568 -> 707[label="",style="dashed", color="magenta", weight=3]; 569 -> 551[label="",style="dashed", color="red", weight=0]; 569[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];569 -> 708[label="",style="dashed", color="magenta", weight=3]; 569 -> 709[label="",style="dashed", color="magenta", weight=3]; 570 -> 552[label="",style="dashed", color="red", weight=0]; 570[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];570 -> 710[label="",style="dashed", color="magenta", weight=3]; 570 -> 711[label="",style="dashed", color="magenta", weight=3]; 571 -> 553[label="",style="dashed", color="red", weight=0]; 571[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];571 -> 712[label="",style="dashed", color="magenta", weight=3]; 571 -> 713[label="",style="dashed", color="magenta", weight=3]; 572 -> 554[label="",style="dashed", color="red", weight=0]; 572[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];572 -> 714[label="",style="dashed", color="magenta", weight=3]; 572 -> 715[label="",style="dashed", color="magenta", weight=3]; 573 -> 555[label="",style="dashed", color="red", weight=0]; 573[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];573 -> 716[label="",style="dashed", color="magenta", weight=3]; 573 -> 717[label="",style="dashed", color="magenta", weight=3]; 574 -> 556[label="",style="dashed", color="red", weight=0]; 574[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];574 -> 718[label="",style="dashed", color="magenta", weight=3]; 574 -> 719[label="",style="dashed", color="magenta", weight=3]; 575 -> 557[label="",style="dashed", color="red", weight=0]; 575[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];575 -> 720[label="",style="dashed", color="magenta", weight=3]; 575 -> 721[label="",style="dashed", color="magenta", weight=3]; 576 -> 558[label="",style="dashed", color="red", weight=0]; 576[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];576 -> 722[label="",style="dashed", color="magenta", weight=3]; 576 -> 723[label="",style="dashed", color="magenta", weight=3]; 577 -> 559[label="",style="dashed", color="red", weight=0]; 577[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];577 -> 724[label="",style="dashed", color="magenta", weight=3]; 577 -> 725[label="",style="dashed", color="magenta", weight=3]; 578[label="compare2 (Just xuu58) (Just xuu59) False",fontsize=16,color="black",shape="box"];578 -> 726[label="",style="solid", color="black", weight=3]; 579[label="compare2 (Just xuu58) (Just xuu59) True",fontsize=16,color="black",shape="box"];579 -> 727[label="",style="solid", color="black", weight=3]; 580[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];580 -> 728[label="",style="solid", color="black", weight=3]; 581[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];581 -> 729[label="",style="solid", color="black", weight=3]; 582[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];582 -> 730[label="",style="solid", color="black", weight=3]; 583[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];583 -> 731[label="",style="solid", color="black", weight=3]; 584[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];584 -> 732[label="",style="solid", color="black", weight=3]; 585[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];585 -> 733[label="",style="solid", color="black", weight=3]; 586 -> 454[label="",style="dashed", color="red", weight=0]; 586[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];586 -> 734[label="",style="dashed", color="magenta", weight=3]; 586 -> 735[label="",style="dashed", color="magenta", weight=3]; 587 -> 454[label="",style="dashed", color="red", weight=0]; 587[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];587 -> 736[label="",style="dashed", color="magenta", weight=3]; 587 -> 737[label="",style="dashed", color="magenta", weight=3]; 588 -> 454[label="",style="dashed", color="red", weight=0]; 588[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];588 -> 738[label="",style="dashed", color="magenta", weight=3]; 588 -> 739[label="",style="dashed", color="magenta", weight=3]; 589 -> 454[label="",style="dashed", color="red", weight=0]; 589[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];589 -> 740[label="",style="dashed", color="magenta", weight=3]; 589 -> 741[label="",style="dashed", color="magenta", weight=3]; 590 -> 454[label="",style="dashed", color="red", weight=0]; 590[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];590 -> 742[label="",style="dashed", color="magenta", weight=3]; 590 -> 743[label="",style="dashed", color="magenta", weight=3]; 591 -> 454[label="",style="dashed", color="red", weight=0]; 591[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];591 -> 744[label="",style="dashed", color="magenta", weight=3]; 591 -> 745[label="",style="dashed", color="magenta", weight=3]; 592 -> 454[label="",style="dashed", color="red", weight=0]; 592[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];592 -> 746[label="",style="dashed", color="magenta", weight=3]; 592 -> 747[label="",style="dashed", color="magenta", weight=3]; 593 -> 454[label="",style="dashed", color="red", weight=0]; 593[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];593 -> 748[label="",style="dashed", color="magenta", weight=3]; 593 -> 749[label="",style="dashed", color="magenta", weight=3]; 594[label="Zero",fontsize=16,color="green",shape="box"];595[label="Succ xuu60000",fontsize=16,color="green",shape="box"];596[label="Succ xuu60000",fontsize=16,color="green",shape="box"];597[label="Zero",fontsize=16,color="green",shape="box"];999 -> 996[label="",style="dashed", color="red", weight=0]; 999[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];999 -> 1037[label="",style="dashed", color="magenta", weight=3]; 999 -> 1038[label="",style="dashed", color="magenta", weight=3]; 1000[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3936[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 1039[label="",style="solid", color="blue", weight=3]; 3937[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 1040[label="",style="solid", color="blue", weight=3]; 3938[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 1041[label="",style="solid", color="blue", weight=3]; 3939[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 1042[label="",style="solid", color="blue", weight=3]; 3940[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 1043[label="",style="solid", color="blue", weight=3]; 3941[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 1044[label="",style="solid", color="blue", weight=3]; 3942[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 1045[label="",style="solid", color="blue", weight=3]; 3943[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 1046[label="",style="solid", color="blue", weight=3]; 3944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 1047[label="",style="solid", color="blue", weight=3]; 3945[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 1048[label="",style="solid", color="blue", weight=3]; 3946[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 1049[label="",style="solid", color="blue", weight=3]; 3947[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 1050[label="",style="solid", color="blue", weight=3]; 3948[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 1051[label="",style="solid", color="blue", weight=3]; 3949[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1000 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 1052[label="",style="solid", color="blue", weight=3]; 980[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) False",fontsize=16,color="black",shape="box"];980 -> 1053[label="",style="solid", color="black", weight=3]; 981[label="compare2 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) True",fontsize=16,color="black",shape="box"];981 -> 1054[label="",style="solid", color="black", weight=3]; 614 -> 454[label="",style="dashed", color="red", weight=0]; 614[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];614 -> 780[label="",style="dashed", color="magenta", weight=3]; 614 -> 781[label="",style="dashed", color="magenta", weight=3]; 615 -> 454[label="",style="dashed", color="red", weight=0]; 615[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];615 -> 782[label="",style="dashed", color="magenta", weight=3]; 615 -> 783[label="",style="dashed", color="magenta", weight=3]; 616 -> 454[label="",style="dashed", color="red", weight=0]; 616[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];616 -> 784[label="",style="dashed", color="magenta", weight=3]; 616 -> 785[label="",style="dashed", color="magenta", weight=3]; 617 -> 454[label="",style="dashed", color="red", weight=0]; 617[label="xuu3110000 * Pos xuu60010",fontsize=16,color="magenta"];617 -> 786[label="",style="dashed", color="magenta", weight=3]; 617 -> 787[label="",style="dashed", color="magenta", weight=3]; 618 -> 454[label="",style="dashed", color="red", weight=0]; 618[label="Pos xuu31100010 * xuu6000",fontsize=16,color="magenta"];618 -> 788[label="",style="dashed", color="magenta", weight=3]; 618 -> 789[label="",style="dashed", color="magenta", weight=3]; 619 -> 454[label="",style="dashed", color="red", weight=0]; 619[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];619 -> 790[label="",style="dashed", color="magenta", weight=3]; 619 -> 791[label="",style="dashed", color="magenta", weight=3]; 620 -> 454[label="",style="dashed", color="red", weight=0]; 620[label="Neg xuu31100010 * xuu6000",fontsize=16,color="magenta"];620 -> 792[label="",style="dashed", color="magenta", weight=3]; 620 -> 793[label="",style="dashed", color="magenta", weight=3]; 621 -> 454[label="",style="dashed", color="red", weight=0]; 621[label="xuu3110000 * Neg xuu60010",fontsize=16,color="magenta"];621 -> 794[label="",style="dashed", color="magenta", weight=3]; 621 -> 795[label="",style="dashed", color="magenta", weight=3]; 622 -> 390[label="",style="dashed", color="red", weight=0]; 622[label="primCmpNat xuu31100000 xuu60000",fontsize=16,color="magenta"];622 -> 796[label="",style="dashed", color="magenta", weight=3]; 622 -> 797[label="",style="dashed", color="magenta", weight=3]; 623[label="GT",fontsize=16,color="green",shape="box"];624[label="LT",fontsize=16,color="green",shape="box"];625[label="EQ",fontsize=16,color="green",shape="box"];626 -> 546[label="",style="dashed", color="red", weight=0]; 626[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];626 -> 798[label="",style="dashed", color="magenta", weight=3]; 626 -> 799[label="",style="dashed", color="magenta", weight=3]; 627 -> 547[label="",style="dashed", color="red", weight=0]; 627[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];627 -> 800[label="",style="dashed", color="magenta", weight=3]; 627 -> 801[label="",style="dashed", color="magenta", weight=3]; 628 -> 548[label="",style="dashed", color="red", weight=0]; 628[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];628 -> 802[label="",style="dashed", color="magenta", weight=3]; 628 -> 803[label="",style="dashed", color="magenta", weight=3]; 629 -> 549[label="",style="dashed", color="red", weight=0]; 629[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];629 -> 804[label="",style="dashed", color="magenta", weight=3]; 629 -> 805[label="",style="dashed", color="magenta", weight=3]; 630 -> 550[label="",style="dashed", color="red", weight=0]; 630[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];630 -> 806[label="",style="dashed", color="magenta", weight=3]; 630 -> 807[label="",style="dashed", color="magenta", weight=3]; 631 -> 551[label="",style="dashed", color="red", weight=0]; 631[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];631 -> 808[label="",style="dashed", color="magenta", weight=3]; 631 -> 809[label="",style="dashed", color="magenta", weight=3]; 632 -> 552[label="",style="dashed", color="red", weight=0]; 632[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];632 -> 810[label="",style="dashed", color="magenta", weight=3]; 632 -> 811[label="",style="dashed", color="magenta", weight=3]; 633 -> 553[label="",style="dashed", color="red", weight=0]; 633[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];633 -> 812[label="",style="dashed", color="magenta", weight=3]; 633 -> 813[label="",style="dashed", color="magenta", weight=3]; 634 -> 554[label="",style="dashed", color="red", weight=0]; 634[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];634 -> 814[label="",style="dashed", color="magenta", weight=3]; 634 -> 815[label="",style="dashed", color="magenta", weight=3]; 635 -> 555[label="",style="dashed", color="red", weight=0]; 635[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];635 -> 816[label="",style="dashed", color="magenta", weight=3]; 635 -> 817[label="",style="dashed", color="magenta", weight=3]; 636 -> 556[label="",style="dashed", color="red", weight=0]; 636[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];636 -> 818[label="",style="dashed", color="magenta", weight=3]; 636 -> 819[label="",style="dashed", color="magenta", weight=3]; 637 -> 557[label="",style="dashed", color="red", weight=0]; 637[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];637 -> 820[label="",style="dashed", color="magenta", weight=3]; 637 -> 821[label="",style="dashed", color="magenta", weight=3]; 638 -> 558[label="",style="dashed", color="red", weight=0]; 638[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];638 -> 822[label="",style="dashed", color="magenta", weight=3]; 638 -> 823[label="",style="dashed", color="magenta", weight=3]; 639 -> 559[label="",style="dashed", color="red", weight=0]; 639[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];639 -> 824[label="",style="dashed", color="magenta", weight=3]; 639 -> 825[label="",style="dashed", color="magenta", weight=3]; 640[label="compare2 (Left xuu80) (Left xuu81) False",fontsize=16,color="black",shape="box"];640 -> 826[label="",style="solid", color="black", weight=3]; 641[label="compare2 (Left xuu80) (Left xuu81) True",fontsize=16,color="black",shape="box"];641 -> 827[label="",style="solid", color="black", weight=3]; 642[label="compare1 (Left xuu3110000) (Right xuu6000) True",fontsize=16,color="black",shape="box"];642 -> 828[label="",style="solid", color="black", weight=3]; 643[label="compare1 (Right xuu3110000) (Left xuu6000) False",fontsize=16,color="black",shape="box"];643 -> 829[label="",style="solid", color="black", weight=3]; 644 -> 546[label="",style="dashed", color="red", weight=0]; 644[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];644 -> 830[label="",style="dashed", color="magenta", weight=3]; 644 -> 831[label="",style="dashed", color="magenta", weight=3]; 645 -> 547[label="",style="dashed", color="red", weight=0]; 645[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];645 -> 832[label="",style="dashed", color="magenta", weight=3]; 645 -> 833[label="",style="dashed", color="magenta", weight=3]; 646 -> 548[label="",style="dashed", color="red", weight=0]; 646[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];646 -> 834[label="",style="dashed", color="magenta", weight=3]; 646 -> 835[label="",style="dashed", color="magenta", weight=3]; 647 -> 549[label="",style="dashed", color="red", weight=0]; 647[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];647 -> 836[label="",style="dashed", color="magenta", weight=3]; 647 -> 837[label="",style="dashed", color="magenta", weight=3]; 648 -> 550[label="",style="dashed", color="red", weight=0]; 648[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];648 -> 838[label="",style="dashed", color="magenta", weight=3]; 648 -> 839[label="",style="dashed", color="magenta", weight=3]; 649 -> 551[label="",style="dashed", color="red", weight=0]; 649[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];649 -> 840[label="",style="dashed", color="magenta", weight=3]; 649 -> 841[label="",style="dashed", color="magenta", weight=3]; 650 -> 552[label="",style="dashed", color="red", weight=0]; 650[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];650 -> 842[label="",style="dashed", color="magenta", weight=3]; 650 -> 843[label="",style="dashed", color="magenta", weight=3]; 651 -> 553[label="",style="dashed", color="red", weight=0]; 651[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];651 -> 844[label="",style="dashed", color="magenta", weight=3]; 651 -> 845[label="",style="dashed", color="magenta", weight=3]; 652 -> 554[label="",style="dashed", color="red", weight=0]; 652[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];652 -> 846[label="",style="dashed", color="magenta", weight=3]; 652 -> 847[label="",style="dashed", color="magenta", weight=3]; 653 -> 555[label="",style="dashed", color="red", weight=0]; 653[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];653 -> 848[label="",style="dashed", color="magenta", weight=3]; 653 -> 849[label="",style="dashed", color="magenta", weight=3]; 654 -> 556[label="",style="dashed", color="red", weight=0]; 654[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];654 -> 850[label="",style="dashed", color="magenta", weight=3]; 654 -> 851[label="",style="dashed", color="magenta", weight=3]; 655 -> 557[label="",style="dashed", color="red", weight=0]; 655[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];655 -> 852[label="",style="dashed", color="magenta", weight=3]; 655 -> 853[label="",style="dashed", color="magenta", weight=3]; 656 -> 558[label="",style="dashed", color="red", weight=0]; 656[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];656 -> 854[label="",style="dashed", color="magenta", weight=3]; 656 -> 855[label="",style="dashed", color="magenta", weight=3]; 657 -> 559[label="",style="dashed", color="red", weight=0]; 657[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];657 -> 856[label="",style="dashed", color="magenta", weight=3]; 657 -> 857[label="",style="dashed", color="magenta", weight=3]; 658[label="compare2 (Right xuu87) (Right xuu88) False",fontsize=16,color="black",shape="box"];658 -> 858[label="",style="solid", color="black", weight=3]; 659[label="compare2 (Right xuu87) (Right xuu88) True",fontsize=16,color="black",shape="box"];659 -> 859[label="",style="solid", color="black", weight=3]; 665[label="Integer xuu60000 * Integer xuu31100010",fontsize=16,color="black",shape="box"];665 -> 863[label="",style="solid", color="black", weight=3]; 666[label="primMulInt (Pos xuu60000) xuu3110001",fontsize=16,color="burlywood",shape="box"];3950[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];666 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 864[label="",style="solid", color="burlywood", weight=3]; 3951[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];666 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 865[label="",style="solid", color="burlywood", weight=3]; 667[label="primMulInt (Neg xuu60000) xuu3110001",fontsize=16,color="burlywood",shape="box"];3952[label="xuu3110001/Pos xuu31100010",fontsize=10,color="white",style="solid",shape="box"];667 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 866[label="",style="solid", color="burlywood", weight=3]; 3953[label="xuu3110001/Neg xuu31100010",fontsize=10,color="white",style="solid",shape="box"];667 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 867[label="",style="solid", color="burlywood", weight=3]; 668[label="FiniteMap.Branch (xuu25 : xuu26) (FiniteMap.addListToFM0 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];668 -> 868[label="",style="dashed", color="green", weight=3]; 669[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];670[label="xuu27",fontsize=16,color="green",shape="box"];671[label="xuu24",fontsize=16,color="green",shape="box"];462[label="xuu31101",fontsize=16,color="green",shape="box"];861[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];861 -> 869[label="",style="solid", color="black", weight=3]; 860[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu91",fontsize=16,color="burlywood",shape="triangle"];3954[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];860 -> 3954[label="",style="solid", color="burlywood", weight=9]; 3954 -> 870[label="",style="solid", color="burlywood", weight=3]; 3955[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];860 -> 3955[label="",style="solid", color="burlywood", weight=9]; 3955 -> 871[label="",style="solid", color="burlywood", weight=3]; 1750[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];1750 -> 1765[label="",style="solid", color="black", weight=3]; 1744[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="black",shape="triangle"];1744 -> 1754[label="",style="solid", color="black", weight=3]; 2166[label="primPlusInt (Pos xuu1970) xuu196",fontsize=16,color="burlywood",shape="box"];3956[label="xuu196/Pos xuu1960",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3956[label="",style="solid", color="burlywood", weight=9]; 3956 -> 2172[label="",style="solid", color="burlywood", weight=3]; 3957[label="xuu196/Neg xuu1960",fontsize=10,color="white",style="solid",shape="box"];2166 -> 3957[label="",style="solid", color="burlywood", weight=9]; 3957 -> 2173[label="",style="solid", color="burlywood", weight=3]; 2167[label="primPlusInt (Neg xuu1970) xuu196",fontsize=16,color="burlywood",shape="box"];3958[label="xuu196/Pos xuu1960",fontsize=10,color="white",style="solid",shape="box"];2167 -> 3958[label="",style="solid", color="burlywood", weight=9]; 3958 -> 2174[label="",style="solid", color="burlywood", weight=3]; 3959[label="xuu196/Neg xuu1960",fontsize=10,color="white",style="solid",shape="box"];2167 -> 3959[label="",style="solid", color="burlywood", weight=9]; 3959 -> 2175[label="",style="solid", color="burlywood", weight=3]; 3441[label="xuu64",fontsize=16,color="green",shape="box"];3442[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3443[label="xuu61",fontsize=16,color="green",shape="box"];3444[label="xuu29",fontsize=16,color="green",shape="box"];3445[label="Zero",fontsize=16,color="green",shape="box"];3440[label="FiniteMap.mkBranch (Pos (Succ xuu292)) xuu293 xuu294 xuu295 xuu296",fontsize=16,color="black",shape="triangle"];3440 -> 3611[label="",style="solid", color="black", weight=3]; 1076 -> 1743[label="",style="dashed", color="red", weight=0]; 1076[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];1076 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1075[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu118",fontsize=16,color="burlywood",shape="triangle"];3960[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];1075 -> 3960[label="",style="solid", color="burlywood", weight=9]; 3960 -> 1081[label="",style="solid", color="burlywood", weight=3]; 3961[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];1075 -> 3961[label="",style="solid", color="burlywood", weight=9]; 3961 -> 1082[label="",style="solid", color="burlywood", weight=3]; 672[label="LT",fontsize=16,color="green",shape="box"];673[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];673 -> 878[label="",style="solid", color="black", weight=3]; 1005 -> 546[label="",style="dashed", color="red", weight=0]; 1005[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1005 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1006 -> 547[label="",style="dashed", color="red", weight=0]; 1006[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1006 -> 1085[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1086[label="",style="dashed", color="magenta", weight=3]; 1007 -> 548[label="",style="dashed", color="red", weight=0]; 1007[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1007 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1008 -> 549[label="",style="dashed", color="red", weight=0]; 1008[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1008 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1009 -> 550[label="",style="dashed", color="red", weight=0]; 1009[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1009 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1010 -> 551[label="",style="dashed", color="red", weight=0]; 1010[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1010 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1011 -> 552[label="",style="dashed", color="red", weight=0]; 1011[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1011 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1012 -> 553[label="",style="dashed", color="red", weight=0]; 1012[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1012 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1013 -> 554[label="",style="dashed", color="red", weight=0]; 1013[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1013 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1014 -> 555[label="",style="dashed", color="red", weight=0]; 1014[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1014 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1015 -> 556[label="",style="dashed", color="red", weight=0]; 1015[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1015 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1016 -> 557[label="",style="dashed", color="red", weight=0]; 1016[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1016 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1017 -> 558[label="",style="dashed", color="red", weight=0]; 1017[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1017 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1018 -> 559[label="",style="dashed", color="red", weight=0]; 1018[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1018 -> 1109[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1019 -> 546[label="",style="dashed", color="red", weight=0]; 1019[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1020 -> 547[label="",style="dashed", color="red", weight=0]; 1020[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1021 -> 548[label="",style="dashed", color="red", weight=0]; 1021[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1022 -> 549[label="",style="dashed", color="red", weight=0]; 1022[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1023 -> 550[label="",style="dashed", color="red", weight=0]; 1023[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1024 -> 551[label="",style="dashed", color="red", weight=0]; 1024[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1025 -> 552[label="",style="dashed", color="red", weight=0]; 1025[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1026 -> 553[label="",style="dashed", color="red", weight=0]; 1026[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1027 -> 554[label="",style="dashed", color="red", weight=0]; 1027[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1028 -> 555[label="",style="dashed", color="red", weight=0]; 1028[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1029 -> 556[label="",style="dashed", color="red", weight=0]; 1029[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1030 -> 557[label="",style="dashed", color="red", weight=0]; 1030[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1031 -> 558[label="",style="dashed", color="red", weight=0]; 1031[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1032 -> 559[label="",style="dashed", color="red", weight=0]; 1032[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1033[label="False && xuu117",fontsize=16,color="black",shape="box"];1033 -> 1111[label="",style="solid", color="black", weight=3]; 1034[label="True && xuu117",fontsize=16,color="black",shape="box"];1034 -> 1112[label="",style="solid", color="black", weight=3]; 1035[label="compare1 (xuu99,xuu100) (xuu101,xuu102) ((xuu99,xuu100) <= (xuu101,xuu102))",fontsize=16,color="black",shape="box"];1035 -> 1113[label="",style="solid", color="black", weight=3]; 1036[label="EQ",fontsize=16,color="green",shape="box"];696[label="LT",fontsize=16,color="green",shape="box"];697[label="compare0 (Just xuu3110000) Nothing otherwise",fontsize=16,color="black",shape="box"];697 -> 958[label="",style="solid", color="black", weight=3]; 698[label="xuu6000",fontsize=16,color="green",shape="box"];699[label="xuu3110000",fontsize=16,color="green",shape="box"];546[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3962[label="xuu3110000/xuu31100000 : xuu31100001",fontsize=10,color="white",style="solid",shape="box"];546 -> 3962[label="",style="solid", color="burlywood", weight=9]; 3962 -> 674[label="",style="solid", color="burlywood", weight=3]; 3963[label="xuu3110000/[]",fontsize=10,color="white",style="solid",shape="box"];546 -> 3963[label="",style="solid", color="burlywood", weight=9]; 3963 -> 675[label="",style="solid", color="burlywood", weight=3]; 700[label="xuu6000",fontsize=16,color="green",shape="box"];701[label="xuu3110000",fontsize=16,color="green",shape="box"];547[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];547 -> 676[label="",style="solid", color="black", weight=3]; 702[label="xuu6000",fontsize=16,color="green",shape="box"];703[label="xuu3110000",fontsize=16,color="green",shape="box"];548[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];548 -> 677[label="",style="solid", color="black", weight=3]; 704[label="xuu6000",fontsize=16,color="green",shape="box"];705[label="xuu3110000",fontsize=16,color="green",shape="box"];549[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3964[label="xuu3110000/()",fontsize=10,color="white",style="solid",shape="box"];549 -> 3964[label="",style="solid", color="burlywood", weight=9]; 3964 -> 678[label="",style="solid", color="burlywood", weight=3]; 706[label="xuu6000",fontsize=16,color="green",shape="box"];707[label="xuu3110000",fontsize=16,color="green",shape="box"];550[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3965[label="xuu3110000/False",fontsize=10,color="white",style="solid",shape="box"];550 -> 3965[label="",style="solid", color="burlywood", weight=9]; 3965 -> 679[label="",style="solid", color="burlywood", weight=3]; 3966[label="xuu3110000/True",fontsize=10,color="white",style="solid",shape="box"];550 -> 3966[label="",style="solid", color="burlywood", weight=9]; 3966 -> 680[label="",style="solid", color="burlywood", weight=3]; 708[label="xuu6000",fontsize=16,color="green",shape="box"];709[label="xuu3110000",fontsize=16,color="green",shape="box"];551[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];551 -> 681[label="",style="solid", color="black", weight=3]; 710[label="xuu6000",fontsize=16,color="green",shape="box"];711[label="xuu3110000",fontsize=16,color="green",shape="box"];552[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3967[label="xuu3110000/Left xuu31100000",fontsize=10,color="white",style="solid",shape="box"];552 -> 3967[label="",style="solid", color="burlywood", weight=9]; 3967 -> 682[label="",style="solid", color="burlywood", weight=3]; 3968[label="xuu3110000/Right xuu31100000",fontsize=10,color="white",style="solid",shape="box"];552 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 683[label="",style="solid", color="burlywood", weight=3]; 712[label="xuu6000",fontsize=16,color="green",shape="box"];713[label="xuu3110000",fontsize=16,color="green",shape="box"];553[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3969[label="xuu3110000/(xuu31100000,xuu31100001)",fontsize=10,color="white",style="solid",shape="box"];553 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 684[label="",style="solid", color="burlywood", weight=3]; 714[label="xuu6000",fontsize=16,color="green",shape="box"];715[label="xuu3110000",fontsize=16,color="green",shape="box"];554[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3970[label="xuu3110000/Integer xuu31100000",fontsize=10,color="white",style="solid",shape="box"];554 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 685[label="",style="solid", color="burlywood", weight=3]; 716[label="xuu6000",fontsize=16,color="green",shape="box"];717[label="xuu3110000",fontsize=16,color="green",shape="box"];555[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3971[label="xuu3110000/Nothing",fontsize=10,color="white",style="solid",shape="box"];555 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 686[label="",style="solid", color="burlywood", weight=3]; 3972[label="xuu3110000/Just xuu31100000",fontsize=10,color="white",style="solid",shape="box"];555 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 687[label="",style="solid", color="burlywood", weight=3]; 718[label="xuu6000",fontsize=16,color="green",shape="box"];719[label="xuu3110000",fontsize=16,color="green",shape="box"];556[label="xuu3110000 == xuu6000",fontsize=16,color="black",shape="triangle"];556 -> 688[label="",style="solid", color="black", weight=3]; 720[label="xuu6000",fontsize=16,color="green",shape="box"];721[label="xuu3110000",fontsize=16,color="green",shape="box"];557[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3973[label="xuu3110000/(xuu31100000,xuu31100001,xuu31100002)",fontsize=10,color="white",style="solid",shape="box"];557 -> 3973[label="",style="solid", color="burlywood", weight=9]; 3973 -> 689[label="",style="solid", color="burlywood", weight=3]; 722[label="xuu6000",fontsize=16,color="green",shape="box"];723[label="xuu3110000",fontsize=16,color="green",shape="box"];558[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3974[label="xuu3110000/xuu31100000 :% xuu31100001",fontsize=10,color="white",style="solid",shape="box"];558 -> 3974[label="",style="solid", color="burlywood", weight=9]; 3974 -> 690[label="",style="solid", color="burlywood", weight=3]; 724[label="xuu6000",fontsize=16,color="green",shape="box"];725[label="xuu3110000",fontsize=16,color="green",shape="box"];559[label="xuu3110000 == xuu6000",fontsize=16,color="burlywood",shape="triangle"];3975[label="xuu3110000/LT",fontsize=10,color="white",style="solid",shape="box"];559 -> 3975[label="",style="solid", color="burlywood", weight=9]; 3975 -> 691[label="",style="solid", color="burlywood", weight=3]; 3976[label="xuu3110000/EQ",fontsize=10,color="white",style="solid",shape="box"];559 -> 3976[label="",style="solid", color="burlywood", weight=9]; 3976 -> 692[label="",style="solid", color="burlywood", weight=3]; 3977[label="xuu3110000/GT",fontsize=10,color="white",style="solid",shape="box"];559 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 693[label="",style="solid", color="burlywood", weight=3]; 726 -> 1176[label="",style="dashed", color="red", weight=0]; 726[label="compare1 (Just xuu58) (Just xuu59) (Just xuu58 <= Just xuu59)",fontsize=16,color="magenta"];726 -> 1177[label="",style="dashed", color="magenta", weight=3]; 726 -> 1178[label="",style="dashed", color="magenta", weight=3]; 726 -> 1179[label="",style="dashed", color="magenta", weight=3]; 727[label="EQ",fontsize=16,color="green",shape="box"];728[label="LT",fontsize=16,color="green",shape="box"];729[label="LT",fontsize=16,color="green",shape="box"];730[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];730 -> 960[label="",style="solid", color="black", weight=3]; 731[label="LT",fontsize=16,color="green",shape="box"];732[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];732 -> 961[label="",style="solid", color="black", weight=3]; 733[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];733 -> 962[label="",style="solid", color="black", weight=3]; 734[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];735[label="xuu6000",fontsize=16,color="green",shape="box"];736[label="xuu3110000",fontsize=16,color="green",shape="box"];737[label="Pos xuu60010",fontsize=16,color="green",shape="box"];738[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];739[label="xuu6000",fontsize=16,color="green",shape="box"];740[label="xuu3110000",fontsize=16,color="green",shape="box"];741[label="Pos xuu60010",fontsize=16,color="green",shape="box"];742[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];743[label="xuu6000",fontsize=16,color="green",shape="box"];744[label="xuu3110000",fontsize=16,color="green",shape="box"];745[label="Neg xuu60010",fontsize=16,color="green",shape="box"];746[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];747[label="xuu6000",fontsize=16,color="green",shape="box"];748[label="xuu3110000",fontsize=16,color="green",shape="box"];749[label="Neg xuu60010",fontsize=16,color="green",shape="box"];1037[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];3978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 1114[label="",style="solid", color="blue", weight=3]; 3979[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 1115[label="",style="solid", color="blue", weight=3]; 3980[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 1116[label="",style="solid", color="blue", weight=3]; 3981[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 1117[label="",style="solid", color="blue", weight=3]; 3982[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 1118[label="",style="solid", color="blue", weight=3]; 3983[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 1119[label="",style="solid", color="blue", weight=3]; 3984[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 1120[label="",style="solid", color="blue", weight=3]; 3985[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 1121[label="",style="solid", color="blue", weight=3]; 3986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 1122[label="",style="solid", color="blue", weight=3]; 3987[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 1123[label="",style="solid", color="blue", weight=3]; 3988[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 1124[label="",style="solid", color="blue", weight=3]; 3989[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 1125[label="",style="solid", color="blue", weight=3]; 3990[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 1126[label="",style="solid", color="blue", weight=3]; 3991[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1037 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 1127[label="",style="solid", color="blue", weight=3]; 1038[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3992[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 1128[label="",style="solid", color="blue", weight=3]; 3993[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 1129[label="",style="solid", color="blue", weight=3]; 3994[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 1130[label="",style="solid", color="blue", weight=3]; 3995[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 1131[label="",style="solid", color="blue", weight=3]; 3996[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 1132[label="",style="solid", color="blue", weight=3]; 3997[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 1133[label="",style="solid", color="blue", weight=3]; 3998[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 1134[label="",style="solid", color="blue", weight=3]; 3999[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 1135[label="",style="solid", color="blue", weight=3]; 4000[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 1136[label="",style="solid", color="blue", weight=3]; 4001[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 1137[label="",style="solid", color="blue", weight=3]; 4002[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 1138[label="",style="solid", color="blue", weight=3]; 4003[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 1139[label="",style="solid", color="blue", weight=3]; 4004[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 1140[label="",style="solid", color="blue", weight=3]; 4005[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 1141[label="",style="solid", color="blue", weight=3]; 1039 -> 546[label="",style="dashed", color="red", weight=0]; 1039[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1039 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1040 -> 547[label="",style="dashed", color="red", weight=0]; 1040[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1040 -> 1144[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1145[label="",style="dashed", color="magenta", weight=3]; 1041 -> 548[label="",style="dashed", color="red", weight=0]; 1041[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1041 -> 1146[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1042 -> 549[label="",style="dashed", color="red", weight=0]; 1042[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1042 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1043 -> 550[label="",style="dashed", color="red", weight=0]; 1043[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1043 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1044 -> 551[label="",style="dashed", color="red", weight=0]; 1044[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1044 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1045 -> 552[label="",style="dashed", color="red", weight=0]; 1045[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1045 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1046 -> 553[label="",style="dashed", color="red", weight=0]; 1046[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1046 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1047 -> 554[label="",style="dashed", color="red", weight=0]; 1047[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1047 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1048 -> 555[label="",style="dashed", color="red", weight=0]; 1048[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1048 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1049 -> 556[label="",style="dashed", color="red", weight=0]; 1049[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1049 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1050 -> 557[label="",style="dashed", color="red", weight=0]; 1050[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1050 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1051 -> 558[label="",style="dashed", color="red", weight=0]; 1051[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1051 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1051 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1052 -> 559[label="",style="dashed", color="red", weight=0]; 1052[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1052 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1052 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1053[label="compare1 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) ((xuu69,xuu70,xuu71) <= (xuu72,xuu73,xuu74))",fontsize=16,color="black",shape="box"];1053 -> 1170[label="",style="solid", color="black", weight=3]; 1054[label="EQ",fontsize=16,color="green",shape="box"];780[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];781[label="xuu6000",fontsize=16,color="green",shape="box"];782[label="xuu3110000",fontsize=16,color="green",shape="box"];783[label="Pos xuu60010",fontsize=16,color="green",shape="box"];784[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];785[label="xuu6000",fontsize=16,color="green",shape="box"];786[label="xuu3110000",fontsize=16,color="green",shape="box"];787[label="Pos xuu60010",fontsize=16,color="green",shape="box"];788[label="Pos xuu31100010",fontsize=16,color="green",shape="box"];789[label="xuu6000",fontsize=16,color="green",shape="box"];790[label="xuu3110000",fontsize=16,color="green",shape="box"];791[label="Neg xuu60010",fontsize=16,color="green",shape="box"];792[label="Neg xuu31100010",fontsize=16,color="green",shape="box"];793[label="xuu6000",fontsize=16,color="green",shape="box"];794[label="xuu3110000",fontsize=16,color="green",shape="box"];795[label="Neg xuu60010",fontsize=16,color="green",shape="box"];796[label="xuu31100000",fontsize=16,color="green",shape="box"];797[label="xuu60000",fontsize=16,color="green",shape="box"];798[label="xuu6000",fontsize=16,color="green",shape="box"];799[label="xuu3110000",fontsize=16,color="green",shape="box"];800[label="xuu6000",fontsize=16,color="green",shape="box"];801[label="xuu3110000",fontsize=16,color="green",shape="box"];802[label="xuu6000",fontsize=16,color="green",shape="box"];803[label="xuu3110000",fontsize=16,color="green",shape="box"];804[label="xuu6000",fontsize=16,color="green",shape="box"];805[label="xuu3110000",fontsize=16,color="green",shape="box"];806[label="xuu6000",fontsize=16,color="green",shape="box"];807[label="xuu3110000",fontsize=16,color="green",shape="box"];808[label="xuu6000",fontsize=16,color="green",shape="box"];809[label="xuu3110000",fontsize=16,color="green",shape="box"];810[label="xuu6000",fontsize=16,color="green",shape="box"];811[label="xuu3110000",fontsize=16,color="green",shape="box"];812[label="xuu6000",fontsize=16,color="green",shape="box"];813[label="xuu3110000",fontsize=16,color="green",shape="box"];814[label="xuu6000",fontsize=16,color="green",shape="box"];815[label="xuu3110000",fontsize=16,color="green",shape="box"];816[label="xuu6000",fontsize=16,color="green",shape="box"];817[label="xuu3110000",fontsize=16,color="green",shape="box"];818[label="xuu6000",fontsize=16,color="green",shape="box"];819[label="xuu3110000",fontsize=16,color="green",shape="box"];820[label="xuu6000",fontsize=16,color="green",shape="box"];821[label="xuu3110000",fontsize=16,color="green",shape="box"];822[label="xuu6000",fontsize=16,color="green",shape="box"];823[label="xuu3110000",fontsize=16,color="green",shape="box"];824[label="xuu6000",fontsize=16,color="green",shape="box"];825[label="xuu3110000",fontsize=16,color="green",shape="box"];826 -> 1251[label="",style="dashed", color="red", weight=0]; 826[label="compare1 (Left xuu80) (Left xuu81) (Left xuu80 <= Left xuu81)",fontsize=16,color="magenta"];826 -> 1252[label="",style="dashed", color="magenta", weight=3]; 826 -> 1253[label="",style="dashed", color="magenta", weight=3]; 826 -> 1254[label="",style="dashed", color="magenta", weight=3]; 827[label="EQ",fontsize=16,color="green",shape="box"];828[label="LT",fontsize=16,color="green",shape="box"];829[label="compare0 (Right xuu3110000) (Left xuu6000) otherwise",fontsize=16,color="black",shape="box"];829 -> 1056[label="",style="solid", color="black", weight=3]; 830[label="xuu6000",fontsize=16,color="green",shape="box"];831[label="xuu3110000",fontsize=16,color="green",shape="box"];832[label="xuu6000",fontsize=16,color="green",shape="box"];833[label="xuu3110000",fontsize=16,color="green",shape="box"];834[label="xuu6000",fontsize=16,color="green",shape="box"];835[label="xuu3110000",fontsize=16,color="green",shape="box"];836[label="xuu6000",fontsize=16,color="green",shape="box"];837[label="xuu3110000",fontsize=16,color="green",shape="box"];838[label="xuu6000",fontsize=16,color="green",shape="box"];839[label="xuu3110000",fontsize=16,color="green",shape="box"];840[label="xuu6000",fontsize=16,color="green",shape="box"];841[label="xuu3110000",fontsize=16,color="green",shape="box"];842[label="xuu6000",fontsize=16,color="green",shape="box"];843[label="xuu3110000",fontsize=16,color="green",shape="box"];844[label="xuu6000",fontsize=16,color="green",shape="box"];845[label="xuu3110000",fontsize=16,color="green",shape="box"];846[label="xuu6000",fontsize=16,color="green",shape="box"];847[label="xuu3110000",fontsize=16,color="green",shape="box"];848[label="xuu6000",fontsize=16,color="green",shape="box"];849[label="xuu3110000",fontsize=16,color="green",shape="box"];850[label="xuu6000",fontsize=16,color="green",shape="box"];851[label="xuu3110000",fontsize=16,color="green",shape="box"];852[label="xuu6000",fontsize=16,color="green",shape="box"];853[label="xuu3110000",fontsize=16,color="green",shape="box"];854[label="xuu6000",fontsize=16,color="green",shape="box"];855[label="xuu3110000",fontsize=16,color="green",shape="box"];856[label="xuu6000",fontsize=16,color="green",shape="box"];857[label="xuu3110000",fontsize=16,color="green",shape="box"];858 -> 1262[label="",style="dashed", color="red", weight=0]; 858[label="compare1 (Right xuu87) (Right xuu88) (Right xuu87 <= Right xuu88)",fontsize=16,color="magenta"];858 -> 1263[label="",style="dashed", color="magenta", weight=3]; 858 -> 1264[label="",style="dashed", color="magenta", weight=3]; 858 -> 1265[label="",style="dashed", color="magenta", weight=3]; 859[label="EQ",fontsize=16,color="green",shape="box"];863[label="Integer (primMulInt xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];863 -> 1058[label="",style="dashed", color="green", weight=3]; 864[label="primMulInt (Pos xuu60000) (Pos xuu31100010)",fontsize=16,color="black",shape="box"];864 -> 1059[label="",style="solid", color="black", weight=3]; 865[label="primMulInt (Pos xuu60000) (Neg xuu31100010)",fontsize=16,color="black",shape="box"];865 -> 1060[label="",style="solid", color="black", weight=3]; 866[label="primMulInt (Neg xuu60000) (Pos xuu31100010)",fontsize=16,color="black",shape="box"];866 -> 1061[label="",style="solid", color="black", weight=3]; 867[label="primMulInt (Neg xuu60000) (Neg xuu31100010)",fontsize=16,color="black",shape="box"];867 -> 1062[label="",style="solid", color="black", weight=3]; 868 -> 405[label="",style="dashed", color="red", weight=0]; 868[label="FiniteMap.addListToFM0 xuu21 xuu27",fontsize=16,color="magenta"];868 -> 1063[label="",style="dashed", color="magenta", weight=3]; 868 -> 1064[label="",style="dashed", color="magenta", weight=3]; 869 -> 559[label="",style="dashed", color="red", weight=0]; 869[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];869 -> 1065[label="",style="dashed", color="magenta", weight=3]; 869 -> 1066[label="",style="dashed", color="magenta", weight=3]; 870[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];870 -> 1067[label="",style="solid", color="black", weight=3]; 871[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];871 -> 1068[label="",style="solid", color="black", weight=3]; 1765 -> 1754[label="",style="dashed", color="red", weight=0]; 1765[label="FiniteMap.sizeFM xuu29",fontsize=16,color="magenta"];1765 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1754[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4006[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1754 -> 4006[label="",style="solid", color="burlywood", weight=9]; 4006 -> 2038[label="",style="solid", color="burlywood", weight=3]; 4007[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1754 -> 4007[label="",style="solid", color="burlywood", weight=9]; 4007 -> 2039[label="",style="solid", color="burlywood", weight=3]; 2172[label="primPlusInt (Pos xuu1970) (Pos xuu1960)",fontsize=16,color="black",shape="box"];2172 -> 2186[label="",style="solid", color="black", weight=3]; 2173[label="primPlusInt (Pos xuu1970) (Neg xuu1960)",fontsize=16,color="black",shape="box"];2173 -> 2187[label="",style="solid", color="black", weight=3]; 2174[label="primPlusInt (Neg xuu1970) (Pos xuu1960)",fontsize=16,color="black",shape="box"];2174 -> 2188[label="",style="solid", color="black", weight=3]; 2175[label="primPlusInt (Neg xuu1970) (Neg xuu1960)",fontsize=16,color="black",shape="box"];2175 -> 2189[label="",style="solid", color="black", weight=3]; 3611[label="FiniteMap.mkBranchResult xuu293 xuu294 xuu296 xuu295",fontsize=16,color="black",shape="box"];3611 -> 3664[label="",style="solid", color="black", weight=3]; 1745 -> 454[label="",style="dashed", color="red", weight=0]; 1745[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];1745 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1743[label="xuu187 > xuu186",fontsize=16,color="black",shape="triangle"];1743 -> 1757[label="",style="solid", color="black", weight=3]; 1081[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="box"];1081 -> 1183[label="",style="solid", color="black", weight=3]; 1082[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];1082 -> 1184[label="",style="solid", color="black", weight=3]; 878[label="compare0 True False True",fontsize=16,color="black",shape="box"];878 -> 1174[label="",style="solid", color="black", weight=3]; 1083[label="xuu6001",fontsize=16,color="green",shape="box"];1084[label="xuu3110001",fontsize=16,color="green",shape="box"];1085[label="xuu6001",fontsize=16,color="green",shape="box"];1086[label="xuu3110001",fontsize=16,color="green",shape="box"];1087[label="xuu6001",fontsize=16,color="green",shape="box"];1088[label="xuu3110001",fontsize=16,color="green",shape="box"];1089[label="xuu6001",fontsize=16,color="green",shape="box"];1090[label="xuu3110001",fontsize=16,color="green",shape="box"];1091[label="xuu6001",fontsize=16,color="green",shape="box"];1092[label="xuu3110001",fontsize=16,color="green",shape="box"];1093[label="xuu6001",fontsize=16,color="green",shape="box"];1094[label="xuu3110001",fontsize=16,color="green",shape="box"];1095[label="xuu6001",fontsize=16,color="green",shape="box"];1096[label="xuu3110001",fontsize=16,color="green",shape="box"];1097[label="xuu6001",fontsize=16,color="green",shape="box"];1098[label="xuu3110001",fontsize=16,color="green",shape="box"];1099[label="xuu6001",fontsize=16,color="green",shape="box"];1100[label="xuu3110001",fontsize=16,color="green",shape="box"];1101[label="xuu6001",fontsize=16,color="green",shape="box"];1102[label="xuu3110001",fontsize=16,color="green",shape="box"];1103[label="xuu6001",fontsize=16,color="green",shape="box"];1104[label="xuu3110001",fontsize=16,color="green",shape="box"];1105[label="xuu6001",fontsize=16,color="green",shape="box"];1106[label="xuu3110001",fontsize=16,color="green",shape="box"];1107[label="xuu6001",fontsize=16,color="green",shape="box"];1108[label="xuu3110001",fontsize=16,color="green",shape="box"];1109[label="xuu6001",fontsize=16,color="green",shape="box"];1110[label="xuu3110001",fontsize=16,color="green",shape="box"];1111[label="False",fontsize=16,color="green",shape="box"];1112[label="xuu117",fontsize=16,color="green",shape="box"];1113 -> 1299[label="",style="dashed", color="red", weight=0]; 1113[label="compare1 (xuu99,xuu100) (xuu101,xuu102) (xuu99 < xuu101 || xuu99 == xuu101 && xuu100 <= xuu102)",fontsize=16,color="magenta"];1113 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1305[label="",style="dashed", color="magenta", weight=3]; 958[label="compare0 (Just xuu3110000) Nothing True",fontsize=16,color="black",shape="box"];958 -> 1175[label="",style="solid", color="black", weight=3]; 674[label="xuu31100000 : xuu31100001 == xuu6000",fontsize=16,color="burlywood",shape="box"];4008[label="xuu6000/xuu60000 : xuu60001",fontsize=10,color="white",style="solid",shape="box"];674 -> 4008[label="",style="solid", color="burlywood", weight=9]; 4008 -> 879[label="",style="solid", color="burlywood", weight=3]; 4009[label="xuu6000/[]",fontsize=10,color="white",style="solid",shape="box"];674 -> 4009[label="",style="solid", color="burlywood", weight=9]; 4009 -> 880[label="",style="solid", color="burlywood", weight=3]; 675[label="[] == xuu6000",fontsize=16,color="burlywood",shape="box"];4010[label="xuu6000/xuu60000 : xuu60001",fontsize=10,color="white",style="solid",shape="box"];675 -> 4010[label="",style="solid", color="burlywood", weight=9]; 4010 -> 881[label="",style="solid", color="burlywood", weight=3]; 4011[label="xuu6000/[]",fontsize=10,color="white",style="solid",shape="box"];675 -> 4011[label="",style="solid", color="burlywood", weight=9]; 4011 -> 882[label="",style="solid", color="burlywood", weight=3]; 676[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4012[label="xuu3110000/Pos xuu31100000",fontsize=10,color="white",style="solid",shape="box"];676 -> 4012[label="",style="solid", color="burlywood", weight=9]; 4012 -> 883[label="",style="solid", color="burlywood", weight=3]; 4013[label="xuu3110000/Neg xuu31100000",fontsize=10,color="white",style="solid",shape="box"];676 -> 4013[label="",style="solid", color="burlywood", weight=9]; 4013 -> 884[label="",style="solid", color="burlywood", weight=3]; 677[label="primEqFloat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4014[label="xuu3110000/Float xuu31100000 xuu31100001",fontsize=10,color="white",style="solid",shape="box"];677 -> 4014[label="",style="solid", color="burlywood", weight=9]; 4014 -> 885[label="",style="solid", color="burlywood", weight=3]; 678[label="() == xuu6000",fontsize=16,color="burlywood",shape="box"];4015[label="xuu6000/()",fontsize=10,color="white",style="solid",shape="box"];678 -> 4015[label="",style="solid", color="burlywood", weight=9]; 4015 -> 886[label="",style="solid", color="burlywood", weight=3]; 679[label="False == xuu6000",fontsize=16,color="burlywood",shape="box"];4016[label="xuu6000/False",fontsize=10,color="white",style="solid",shape="box"];679 -> 4016[label="",style="solid", color="burlywood", weight=9]; 4016 -> 887[label="",style="solid", color="burlywood", weight=3]; 4017[label="xuu6000/True",fontsize=10,color="white",style="solid",shape="box"];679 -> 4017[label="",style="solid", color="burlywood", weight=9]; 4017 -> 888[label="",style="solid", color="burlywood", weight=3]; 680[label="True == xuu6000",fontsize=16,color="burlywood",shape="box"];4018[label="xuu6000/False",fontsize=10,color="white",style="solid",shape="box"];680 -> 4018[label="",style="solid", color="burlywood", weight=9]; 4018 -> 889[label="",style="solid", color="burlywood", weight=3]; 4019[label="xuu6000/True",fontsize=10,color="white",style="solid",shape="box"];680 -> 4019[label="",style="solid", color="burlywood", weight=9]; 4019 -> 890[label="",style="solid", color="burlywood", weight=3]; 681[label="primEqDouble xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4020[label="xuu3110000/Double xuu31100000 xuu31100001",fontsize=10,color="white",style="solid",shape="box"];681 -> 4020[label="",style="solid", color="burlywood", weight=9]; 4020 -> 891[label="",style="solid", color="burlywood", weight=3]; 682[label="Left xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4021[label="xuu6000/Left xuu60000",fontsize=10,color="white",style="solid",shape="box"];682 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 892[label="",style="solid", color="burlywood", weight=3]; 4022[label="xuu6000/Right xuu60000",fontsize=10,color="white",style="solid",shape="box"];682 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 893[label="",style="solid", color="burlywood", weight=3]; 683[label="Right xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4023[label="xuu6000/Left xuu60000",fontsize=10,color="white",style="solid",shape="box"];683 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 894[label="",style="solid", color="burlywood", weight=3]; 4024[label="xuu6000/Right xuu60000",fontsize=10,color="white",style="solid",shape="box"];683 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 895[label="",style="solid", color="burlywood", weight=3]; 684[label="(xuu31100000,xuu31100001) == xuu6000",fontsize=16,color="burlywood",shape="box"];4025[label="xuu6000/(xuu60000,xuu60001)",fontsize=10,color="white",style="solid",shape="box"];684 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 896[label="",style="solid", color="burlywood", weight=3]; 685[label="Integer xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4026[label="xuu6000/Integer xuu60000",fontsize=10,color="white",style="solid",shape="box"];685 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 897[label="",style="solid", color="burlywood", weight=3]; 686[label="Nothing == xuu6000",fontsize=16,color="burlywood",shape="box"];4027[label="xuu6000/Nothing",fontsize=10,color="white",style="solid",shape="box"];686 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 898[label="",style="solid", color="burlywood", weight=3]; 4028[label="xuu6000/Just xuu60000",fontsize=10,color="white",style="solid",shape="box"];686 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 899[label="",style="solid", color="burlywood", weight=3]; 687[label="Just xuu31100000 == xuu6000",fontsize=16,color="burlywood",shape="box"];4029[label="xuu6000/Nothing",fontsize=10,color="white",style="solid",shape="box"];687 -> 4029[label="",style="solid", color="burlywood", weight=9]; 4029 -> 900[label="",style="solid", color="burlywood", weight=3]; 4030[label="xuu6000/Just xuu60000",fontsize=10,color="white",style="solid",shape="box"];687 -> 4030[label="",style="solid", color="burlywood", weight=9]; 4030 -> 901[label="",style="solid", color="burlywood", weight=3]; 688[label="primEqChar xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="box"];4031[label="xuu3110000/Char xuu31100000",fontsize=10,color="white",style="solid",shape="box"];688 -> 4031[label="",style="solid", color="burlywood", weight=9]; 4031 -> 902[label="",style="solid", color="burlywood", weight=3]; 689[label="(xuu31100000,xuu31100001,xuu31100002) == xuu6000",fontsize=16,color="burlywood",shape="box"];4032[label="xuu6000/(xuu60000,xuu60001,xuu60002)",fontsize=10,color="white",style="solid",shape="box"];689 -> 4032[label="",style="solid", color="burlywood", weight=9]; 4032 -> 903[label="",style="solid", color="burlywood", weight=3]; 690[label="xuu31100000 :% xuu31100001 == xuu6000",fontsize=16,color="burlywood",shape="box"];4033[label="xuu6000/xuu60000 :% xuu60001",fontsize=10,color="white",style="solid",shape="box"];690 -> 4033[label="",style="solid", color="burlywood", weight=9]; 4033 -> 904[label="",style="solid", color="burlywood", weight=3]; 691[label="LT == xuu6000",fontsize=16,color="burlywood",shape="box"];4034[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];691 -> 4034[label="",style="solid", color="burlywood", weight=9]; 4034 -> 905[label="",style="solid", color="burlywood", weight=3]; 4035[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];691 -> 4035[label="",style="solid", color="burlywood", weight=9]; 4035 -> 906[label="",style="solid", color="burlywood", weight=3]; 4036[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];691 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 907[label="",style="solid", color="burlywood", weight=3]; 692[label="EQ == xuu6000",fontsize=16,color="burlywood",shape="box"];4037[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];692 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 908[label="",style="solid", color="burlywood", weight=3]; 4038[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];692 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 909[label="",style="solid", color="burlywood", weight=3]; 4039[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];692 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 910[label="",style="solid", color="burlywood", weight=3]; 693[label="GT == xuu6000",fontsize=16,color="burlywood",shape="box"];4040[label="xuu6000/LT",fontsize=10,color="white",style="solid",shape="box"];693 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 911[label="",style="solid", color="burlywood", weight=3]; 4041[label="xuu6000/EQ",fontsize=10,color="white",style="solid",shape="box"];693 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 912[label="",style="solid", color="burlywood", weight=3]; 4042[label="xuu6000/GT",fontsize=10,color="white",style="solid",shape="box"];693 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 913[label="",style="solid", color="burlywood", weight=3]; 1177[label="xuu59",fontsize=16,color="green",shape="box"];1178[label="xuu58",fontsize=16,color="green",shape="box"];1179[label="Just xuu58 <= Just xuu59",fontsize=16,color="black",shape="box"];1179 -> 1187[label="",style="solid", color="black", weight=3]; 1176[label="compare1 (Just xuu125) (Just xuu126) xuu127",fontsize=16,color="burlywood",shape="triangle"];4043[label="xuu127/False",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 1188[label="",style="solid", color="burlywood", weight=3]; 4044[label="xuu127/True",fontsize=10,color="white",style="solid",shape="box"];1176 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 1189[label="",style="solid", color="burlywood", weight=3]; 960[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];960 -> 1190[label="",style="solid", color="black", weight=3]; 961[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];961 -> 1191[label="",style="solid", color="black", weight=3]; 962[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];962 -> 1192[label="",style="solid", color="black", weight=3]; 1114 -> 546[label="",style="dashed", color="red", weight=0]; 1114[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1114 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1115 -> 547[label="",style="dashed", color="red", weight=0]; 1115[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1115 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1116 -> 548[label="",style="dashed", color="red", weight=0]; 1116[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1116 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1117 -> 549[label="",style="dashed", color="red", weight=0]; 1117[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1117 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1118 -> 550[label="",style="dashed", color="red", weight=0]; 1118[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1118 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1119 -> 551[label="",style="dashed", color="red", weight=0]; 1119[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1119 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1120 -> 552[label="",style="dashed", color="red", weight=0]; 1120[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1120 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1121 -> 553[label="",style="dashed", color="red", weight=0]; 1121[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1121 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1122 -> 554[label="",style="dashed", color="red", weight=0]; 1122[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1122 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1123 -> 555[label="",style="dashed", color="red", weight=0]; 1123[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1123 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1124 -> 556[label="",style="dashed", color="red", weight=0]; 1124[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1124 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1125 -> 557[label="",style="dashed", color="red", weight=0]; 1125[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1125 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1126 -> 558[label="",style="dashed", color="red", weight=0]; 1126[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1126 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1127 -> 559[label="",style="dashed", color="red", weight=0]; 1127[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];1127 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1128 -> 546[label="",style="dashed", color="red", weight=0]; 1128[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1128 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1129 -> 547[label="",style="dashed", color="red", weight=0]; 1129[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1129 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1130 -> 548[label="",style="dashed", color="red", weight=0]; 1130[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1130 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1131 -> 549[label="",style="dashed", color="red", weight=0]; 1131[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1131 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1132 -> 550[label="",style="dashed", color="red", weight=0]; 1132[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1132 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1133 -> 551[label="",style="dashed", color="red", weight=0]; 1133[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1133 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1134 -> 552[label="",style="dashed", color="red", weight=0]; 1134[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1134 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1135 -> 553[label="",style="dashed", color="red", weight=0]; 1135[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1135 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1136 -> 554[label="",style="dashed", color="red", weight=0]; 1136[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1136 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1137 -> 555[label="",style="dashed", color="red", weight=0]; 1137[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1137 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1138 -> 556[label="",style="dashed", color="red", weight=0]; 1138[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1138 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1139 -> 557[label="",style="dashed", color="red", weight=0]; 1139[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1139 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1140 -> 558[label="",style="dashed", color="red", weight=0]; 1140[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1140 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1141 -> 559[label="",style="dashed", color="red", weight=0]; 1141[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1141 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1142[label="xuu6000",fontsize=16,color="green",shape="box"];1143[label="xuu3110000",fontsize=16,color="green",shape="box"];1144[label="xuu6000",fontsize=16,color="green",shape="box"];1145[label="xuu3110000",fontsize=16,color="green",shape="box"];1146[label="xuu6000",fontsize=16,color="green",shape="box"];1147[label="xuu3110000",fontsize=16,color="green",shape="box"];1148[label="xuu6000",fontsize=16,color="green",shape="box"];1149[label="xuu3110000",fontsize=16,color="green",shape="box"];1150[label="xuu6000",fontsize=16,color="green",shape="box"];1151[label="xuu3110000",fontsize=16,color="green",shape="box"];1152[label="xuu6000",fontsize=16,color="green",shape="box"];1153[label="xuu3110000",fontsize=16,color="green",shape="box"];1154[label="xuu6000",fontsize=16,color="green",shape="box"];1155[label="xuu3110000",fontsize=16,color="green",shape="box"];1156[label="xuu6000",fontsize=16,color="green",shape="box"];1157[label="xuu3110000",fontsize=16,color="green",shape="box"];1158[label="xuu6000",fontsize=16,color="green",shape="box"];1159[label="xuu3110000",fontsize=16,color="green",shape="box"];1160[label="xuu6000",fontsize=16,color="green",shape="box"];1161[label="xuu3110000",fontsize=16,color="green",shape="box"];1162[label="xuu6000",fontsize=16,color="green",shape="box"];1163[label="xuu3110000",fontsize=16,color="green",shape="box"];1164[label="xuu6000",fontsize=16,color="green",shape="box"];1165[label="xuu3110000",fontsize=16,color="green",shape="box"];1166[label="xuu6000",fontsize=16,color="green",shape="box"];1167[label="xuu3110000",fontsize=16,color="green",shape="box"];1168[label="xuu6000",fontsize=16,color="green",shape="box"];1169[label="xuu3110000",fontsize=16,color="green",shape="box"];1170 -> 1385[label="",style="dashed", color="red", weight=0]; 1170[label="compare1 (xuu69,xuu70,xuu71) (xuu72,xuu73,xuu74) (xuu69 < xuu72 || xuu69 == xuu72 && (xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74))",fontsize=16,color="magenta"];1170 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1252[label="xuu80",fontsize=16,color="green",shape="box"];1253[label="Left xuu80 <= Left xuu81",fontsize=16,color="black",shape="box"];1253 -> 1258[label="",style="solid", color="black", weight=3]; 1254[label="xuu81",fontsize=16,color="green",shape="box"];1251[label="compare1 (Left xuu135) (Left xuu136) xuu137",fontsize=16,color="burlywood",shape="triangle"];4045[label="xuu137/False",fontsize=10,color="white",style="solid",shape="box"];1251 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 1259[label="",style="solid", color="burlywood", weight=3]; 4046[label="xuu137/True",fontsize=10,color="white",style="solid",shape="box"];1251 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 1260[label="",style="solid", color="burlywood", weight=3]; 1056[label="compare0 (Right xuu3110000) (Left xuu6000) True",fontsize=16,color="black",shape="box"];1056 -> 1261[label="",style="solid", color="black", weight=3]; 1263[label="Right xuu87 <= Right xuu88",fontsize=16,color="black",shape="box"];1263 -> 1269[label="",style="solid", color="black", weight=3]; 1264[label="xuu87",fontsize=16,color="green",shape="box"];1265[label="xuu88",fontsize=16,color="green",shape="box"];1262[label="compare1 (Right xuu142) (Right xuu143) xuu144",fontsize=16,color="burlywood",shape="triangle"];4047[label="xuu144/False",fontsize=10,color="white",style="solid",shape="box"];1262 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 1270[label="",style="solid", color="burlywood", weight=3]; 4048[label="xuu144/True",fontsize=10,color="white",style="solid",shape="box"];1262 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 1271[label="",style="solid", color="burlywood", weight=3]; 1058 -> 535[label="",style="dashed", color="red", weight=0]; 1058[label="primMulInt xuu60000 xuu31100010",fontsize=16,color="magenta"];1058 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1059[label="Pos (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];1059 -> 1274[label="",style="dashed", color="green", weight=3]; 1060[label="Neg (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];1060 -> 1275[label="",style="dashed", color="green", weight=3]; 1061[label="Neg (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];1061 -> 1276[label="",style="dashed", color="green", weight=3]; 1062[label="Pos (primMulNat xuu60000 xuu31100010)",fontsize=16,color="green",shape="box"];1062 -> 1277[label="",style="dashed", color="green", weight=3]; 1063[label="xuu21",fontsize=16,color="green",shape="box"];1064[label="xuu27",fontsize=16,color="green",shape="box"];1065[label="LT",fontsize=16,color="green",shape="box"];1066 -> 191[label="",style="dashed", color="red", weight=0]; 1066[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1066 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1067 -> 1716[label="",style="dashed", color="red", weight=0]; 1067[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];1067 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1068 -> 3440[label="",style="dashed", color="red", weight=0]; 1068[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1068 -> 3446[label="",style="dashed", color="magenta", weight=3]; 1068 -> 3447[label="",style="dashed", color="magenta", weight=3]; 1068 -> 3448[label="",style="dashed", color="magenta", weight=3]; 1068 -> 3449[label="",style="dashed", color="magenta", weight=3]; 1068 -> 3450[label="",style="dashed", color="magenta", weight=3]; 2075[label="xuu29",fontsize=16,color="green",shape="box"];2038[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2038 -> 2071[label="",style="solid", color="black", weight=3]; 2039[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2039 -> 2072[label="",style="solid", color="black", weight=3]; 2186[label="Pos (primPlusNat xuu1970 xuu1960)",fontsize=16,color="green",shape="box"];2186 -> 2494[label="",style="dashed", color="green", weight=3]; 2187[label="primMinusNat xuu1970 xuu1960",fontsize=16,color="burlywood",shape="triangle"];4049[label="xuu1970/Succ xuu19700",fontsize=10,color="white",style="solid",shape="box"];2187 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 2495[label="",style="solid", color="burlywood", weight=3]; 4050[label="xuu1970/Zero",fontsize=10,color="white",style="solid",shape="box"];2187 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 2496[label="",style="solid", color="burlywood", weight=3]; 2188 -> 2187[label="",style="dashed", color="red", weight=0]; 2188[label="primMinusNat xuu1960 xuu1970",fontsize=16,color="magenta"];2188 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2189[label="Neg (primPlusNat xuu1970 xuu1960)",fontsize=16,color="green",shape="box"];2189 -> 2499[label="",style="dashed", color="green", weight=3]; 3664[label="FiniteMap.Branch xuu293 xuu294 (FiniteMap.mkBranchUnbox xuu296 xuu293 xuu295 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)) xuu295 xuu296",fontsize=16,color="green",shape="box"];3664 -> 3670[label="",style="dashed", color="green", weight=3]; 1755[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1755 -> 2040[label="",style="solid", color="black", weight=3]; 1756 -> 1750[label="",style="dashed", color="red", weight=0]; 1756[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];1757 -> 559[label="",style="dashed", color="red", weight=0]; 1757[label="compare xuu187 xuu186 == GT",fontsize=16,color="magenta"];1757 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1757 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1739[label="",style="dashed", color="red", weight=0]; 1183[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 (FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64)",fontsize=16,color="magenta"];1183 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1184[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu29 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4051[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1184 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 1295[label="",style="solid", color="burlywood", weight=3]; 4052[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1184 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 1296[label="",style="solid", color="burlywood", weight=3]; 1174[label="GT",fontsize=16,color="green",shape="box"];1300[label="xuu102",fontsize=16,color="green",shape="box"];1301[label="xuu99",fontsize=16,color="green",shape="box"];1302[label="xuu100",fontsize=16,color="green",shape="box"];1303[label="xuu101",fontsize=16,color="green",shape="box"];1304[label="xuu99 < xuu101",fontsize=16,color="blue",shape="box"];4053[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 1312[label="",style="solid", color="blue", weight=3]; 4054[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 1313[label="",style="solid", color="blue", weight=3]; 4055[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 1314[label="",style="solid", color="blue", weight=3]; 4056[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 1315[label="",style="solid", color="blue", weight=3]; 4057[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 1316[label="",style="solid", color="blue", weight=3]; 4058[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4058[label="",style="solid", color="blue", weight=9]; 4058 -> 1317[label="",style="solid", color="blue", weight=3]; 4059[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4059[label="",style="solid", color="blue", weight=9]; 4059 -> 1318[label="",style="solid", color="blue", weight=3]; 4060[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4060[label="",style="solid", color="blue", weight=9]; 4060 -> 1319[label="",style="solid", color="blue", weight=3]; 4061[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4061[label="",style="solid", color="blue", weight=9]; 4061 -> 1320[label="",style="solid", color="blue", weight=3]; 4062[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4062[label="",style="solid", color="blue", weight=9]; 4062 -> 1321[label="",style="solid", color="blue", weight=3]; 4063[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4063[label="",style="solid", color="blue", weight=9]; 4063 -> 1322[label="",style="solid", color="blue", weight=3]; 4064[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4064[label="",style="solid", color="blue", weight=9]; 4064 -> 1323[label="",style="solid", color="blue", weight=3]; 4065[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 1324[label="",style="solid", color="blue", weight=3]; 4066[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1304 -> 4066[label="",style="solid", color="blue", weight=9]; 4066 -> 1325[label="",style="solid", color="blue", weight=3]; 1305 -> 996[label="",style="dashed", color="red", weight=0]; 1305[label="xuu99 == xuu101 && xuu100 <= xuu102",fontsize=16,color="magenta"];1305 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1299[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (xuu160 || xuu161)",fontsize=16,color="burlywood",shape="triangle"];4067[label="xuu160/False",fontsize=10,color="white",style="solid",shape="box"];1299 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 1328[label="",style="solid", color="burlywood", weight=3]; 4068[label="xuu160/True",fontsize=10,color="white",style="solid",shape="box"];1299 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 1329[label="",style="solid", color="burlywood", weight=3]; 1175[label="GT",fontsize=16,color="green",shape="box"];879[label="xuu31100000 : xuu31100001 == xuu60000 : xuu60001",fontsize=16,color="black",shape="box"];879 -> 1330[label="",style="solid", color="black", weight=3]; 880[label="xuu31100000 : xuu31100001 == []",fontsize=16,color="black",shape="box"];880 -> 1331[label="",style="solid", color="black", weight=3]; 881[label="[] == xuu60000 : xuu60001",fontsize=16,color="black",shape="box"];881 -> 1332[label="",style="solid", color="black", weight=3]; 882[label="[] == []",fontsize=16,color="black",shape="box"];882 -> 1333[label="",style="solid", color="black", weight=3]; 883[label="primEqInt (Pos xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4069[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];883 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 1334[label="",style="solid", color="burlywood", weight=3]; 4070[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];883 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 1335[label="",style="solid", color="burlywood", weight=3]; 884[label="primEqInt (Neg xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4071[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];884 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 1336[label="",style="solid", color="burlywood", weight=3]; 4072[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];884 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 1337[label="",style="solid", color="burlywood", weight=3]; 885[label="primEqFloat (Float xuu31100000 xuu31100001) xuu6000",fontsize=16,color="burlywood",shape="box"];4073[label="xuu6000/Float xuu60000 xuu60001",fontsize=10,color="white",style="solid",shape="box"];885 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 1338[label="",style="solid", color="burlywood", weight=3]; 886[label="() == ()",fontsize=16,color="black",shape="box"];886 -> 1339[label="",style="solid", color="black", weight=3]; 887[label="False == False",fontsize=16,color="black",shape="box"];887 -> 1340[label="",style="solid", color="black", weight=3]; 888[label="False == True",fontsize=16,color="black",shape="box"];888 -> 1341[label="",style="solid", color="black", weight=3]; 889[label="True == False",fontsize=16,color="black",shape="box"];889 -> 1342[label="",style="solid", color="black", weight=3]; 890[label="True == True",fontsize=16,color="black",shape="box"];890 -> 1343[label="",style="solid", color="black", weight=3]; 891[label="primEqDouble (Double xuu31100000 xuu31100001) xuu6000",fontsize=16,color="burlywood",shape="box"];4074[label="xuu6000/Double xuu60000 xuu60001",fontsize=10,color="white",style="solid",shape="box"];891 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 1344[label="",style="solid", color="burlywood", weight=3]; 892[label="Left xuu31100000 == Left xuu60000",fontsize=16,color="black",shape="box"];892 -> 1345[label="",style="solid", color="black", weight=3]; 893[label="Left xuu31100000 == Right xuu60000",fontsize=16,color="black",shape="box"];893 -> 1346[label="",style="solid", color="black", weight=3]; 894[label="Right xuu31100000 == Left xuu60000",fontsize=16,color="black",shape="box"];894 -> 1347[label="",style="solid", color="black", weight=3]; 895[label="Right xuu31100000 == Right xuu60000",fontsize=16,color="black",shape="box"];895 -> 1348[label="",style="solid", color="black", weight=3]; 896[label="(xuu31100000,xuu31100001) == (xuu60000,xuu60001)",fontsize=16,color="black",shape="box"];896 -> 1349[label="",style="solid", color="black", weight=3]; 897[label="Integer xuu31100000 == Integer xuu60000",fontsize=16,color="black",shape="box"];897 -> 1350[label="",style="solid", color="black", weight=3]; 898[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];898 -> 1351[label="",style="solid", color="black", weight=3]; 899[label="Nothing == Just xuu60000",fontsize=16,color="black",shape="box"];899 -> 1352[label="",style="solid", color="black", weight=3]; 900[label="Just xuu31100000 == Nothing",fontsize=16,color="black",shape="box"];900 -> 1353[label="",style="solid", color="black", weight=3]; 901[label="Just xuu31100000 == Just xuu60000",fontsize=16,color="black",shape="box"];901 -> 1354[label="",style="solid", color="black", weight=3]; 902[label="primEqChar (Char xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4075[label="xuu6000/Char xuu60000",fontsize=10,color="white",style="solid",shape="box"];902 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 1355[label="",style="solid", color="burlywood", weight=3]; 903[label="(xuu31100000,xuu31100001,xuu31100002) == (xuu60000,xuu60001,xuu60002)",fontsize=16,color="black",shape="box"];903 -> 1356[label="",style="solid", color="black", weight=3]; 904[label="xuu31100000 :% xuu31100001 == xuu60000 :% xuu60001",fontsize=16,color="black",shape="box"];904 -> 1357[label="",style="solid", color="black", weight=3]; 905[label="LT == LT",fontsize=16,color="black",shape="box"];905 -> 1358[label="",style="solid", color="black", weight=3]; 906[label="LT == EQ",fontsize=16,color="black",shape="box"];906 -> 1359[label="",style="solid", color="black", weight=3]; 907[label="LT == GT",fontsize=16,color="black",shape="box"];907 -> 1360[label="",style="solid", color="black", weight=3]; 908[label="EQ == LT",fontsize=16,color="black",shape="box"];908 -> 1361[label="",style="solid", color="black", weight=3]; 909[label="EQ == EQ",fontsize=16,color="black",shape="box"];909 -> 1362[label="",style="solid", color="black", weight=3]; 910[label="EQ == GT",fontsize=16,color="black",shape="box"];910 -> 1363[label="",style="solid", color="black", weight=3]; 911[label="GT == LT",fontsize=16,color="black",shape="box"];911 -> 1364[label="",style="solid", color="black", weight=3]; 912[label="GT == EQ",fontsize=16,color="black",shape="box"];912 -> 1365[label="",style="solid", color="black", weight=3]; 913[label="GT == GT",fontsize=16,color="black",shape="box"];913 -> 1366[label="",style="solid", color="black", weight=3]; 1187[label="xuu58 <= xuu59",fontsize=16,color="blue",shape="box"];4076[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 1367[label="",style="solid", color="blue", weight=3]; 4077[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 1368[label="",style="solid", color="blue", weight=3]; 4078[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 1369[label="",style="solid", color="blue", weight=3]; 4079[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 1370[label="",style="solid", color="blue", weight=3]; 4080[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 1371[label="",style="solid", color="blue", weight=3]; 4081[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 1372[label="",style="solid", color="blue", weight=3]; 4082[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 1373[label="",style="solid", color="blue", weight=3]; 4083[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 1374[label="",style="solid", color="blue", weight=3]; 4084[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 1375[label="",style="solid", color="blue", weight=3]; 4085[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 1376[label="",style="solid", color="blue", weight=3]; 4086[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 1377[label="",style="solid", color="blue", weight=3]; 4087[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 1378[label="",style="solid", color="blue", weight=3]; 4088[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 1379[label="",style="solid", color="blue", weight=3]; 4089[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 1380[label="",style="solid", color="blue", weight=3]; 1188[label="compare1 (Just xuu125) (Just xuu126) False",fontsize=16,color="black",shape="box"];1188 -> 1381[label="",style="solid", color="black", weight=3]; 1189[label="compare1 (Just xuu125) (Just xuu126) True",fontsize=16,color="black",shape="box"];1189 -> 1382[label="",style="solid", color="black", weight=3]; 1190[label="GT",fontsize=16,color="green",shape="box"];1191[label="GT",fontsize=16,color="green",shape="box"];1192[label="GT",fontsize=16,color="green",shape="box"];1193[label="xuu6002",fontsize=16,color="green",shape="box"];1194[label="xuu3110002",fontsize=16,color="green",shape="box"];1195[label="xuu6002",fontsize=16,color="green",shape="box"];1196[label="xuu3110002",fontsize=16,color="green",shape="box"];1197[label="xuu6002",fontsize=16,color="green",shape="box"];1198[label="xuu3110002",fontsize=16,color="green",shape="box"];1199[label="xuu6002",fontsize=16,color="green",shape="box"];1200[label="xuu3110002",fontsize=16,color="green",shape="box"];1201[label="xuu6002",fontsize=16,color="green",shape="box"];1202[label="xuu3110002",fontsize=16,color="green",shape="box"];1203[label="xuu6002",fontsize=16,color="green",shape="box"];1204[label="xuu3110002",fontsize=16,color="green",shape="box"];1205[label="xuu6002",fontsize=16,color="green",shape="box"];1206[label="xuu3110002",fontsize=16,color="green",shape="box"];1207[label="xuu6002",fontsize=16,color="green",shape="box"];1208[label="xuu3110002",fontsize=16,color="green",shape="box"];1209[label="xuu6002",fontsize=16,color="green",shape="box"];1210[label="xuu3110002",fontsize=16,color="green",shape="box"];1211[label="xuu6002",fontsize=16,color="green",shape="box"];1212[label="xuu3110002",fontsize=16,color="green",shape="box"];1213[label="xuu6002",fontsize=16,color="green",shape="box"];1214[label="xuu3110002",fontsize=16,color="green",shape="box"];1215[label="xuu6002",fontsize=16,color="green",shape="box"];1216[label="xuu3110002",fontsize=16,color="green",shape="box"];1217[label="xuu6002",fontsize=16,color="green",shape="box"];1218[label="xuu3110002",fontsize=16,color="green",shape="box"];1219[label="xuu6002",fontsize=16,color="green",shape="box"];1220[label="xuu3110002",fontsize=16,color="green",shape="box"];1221[label="xuu6001",fontsize=16,color="green",shape="box"];1222[label="xuu3110001",fontsize=16,color="green",shape="box"];1223[label="xuu6001",fontsize=16,color="green",shape="box"];1224[label="xuu3110001",fontsize=16,color="green",shape="box"];1225[label="xuu6001",fontsize=16,color="green",shape="box"];1226[label="xuu3110001",fontsize=16,color="green",shape="box"];1227[label="xuu6001",fontsize=16,color="green",shape="box"];1228[label="xuu3110001",fontsize=16,color="green",shape="box"];1229[label="xuu6001",fontsize=16,color="green",shape="box"];1230[label="xuu3110001",fontsize=16,color="green",shape="box"];1231[label="xuu6001",fontsize=16,color="green",shape="box"];1232[label="xuu3110001",fontsize=16,color="green",shape="box"];1233[label="xuu6001",fontsize=16,color="green",shape="box"];1234[label="xuu3110001",fontsize=16,color="green",shape="box"];1235[label="xuu6001",fontsize=16,color="green",shape="box"];1236[label="xuu3110001",fontsize=16,color="green",shape="box"];1237[label="xuu6001",fontsize=16,color="green",shape="box"];1238[label="xuu3110001",fontsize=16,color="green",shape="box"];1239[label="xuu6001",fontsize=16,color="green",shape="box"];1240[label="xuu3110001",fontsize=16,color="green",shape="box"];1241[label="xuu6001",fontsize=16,color="green",shape="box"];1242[label="xuu3110001",fontsize=16,color="green",shape="box"];1243[label="xuu6001",fontsize=16,color="green",shape="box"];1244[label="xuu3110001",fontsize=16,color="green",shape="box"];1245[label="xuu6001",fontsize=16,color="green",shape="box"];1246[label="xuu3110001",fontsize=16,color="green",shape="box"];1247[label="xuu6001",fontsize=16,color="green",shape="box"];1248[label="xuu3110001",fontsize=16,color="green",shape="box"];1386[label="xuu74",fontsize=16,color="green",shape="box"];1387 -> 996[label="",style="dashed", color="red", weight=0]; 1387[label="xuu69 == xuu72 && (xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74)",fontsize=16,color="magenta"];1387 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1388[label="xuu69 < xuu72",fontsize=16,color="blue",shape="box"];4090[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 1404[label="",style="solid", color="blue", weight=3]; 4091[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 1405[label="",style="solid", color="blue", weight=3]; 4092[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 1406[label="",style="solid", color="blue", weight=3]; 4093[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 1407[label="",style="solid", color="blue", weight=3]; 4094[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 1408[label="",style="solid", color="blue", weight=3]; 4095[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 1409[label="",style="solid", color="blue", weight=3]; 4096[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 1410[label="",style="solid", color="blue", weight=3]; 4097[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 1411[label="",style="solid", color="blue", weight=3]; 4098[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 1412[label="",style="solid", color="blue", weight=3]; 4099[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 1413[label="",style="solid", color="blue", weight=3]; 4100[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 1414[label="",style="solid", color="blue", weight=3]; 4101[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 1415[label="",style="solid", color="blue", weight=3]; 4102[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 1416[label="",style="solid", color="blue", weight=3]; 4103[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 1417[label="",style="solid", color="blue", weight=3]; 1389[label="xuu72",fontsize=16,color="green",shape="box"];1390[label="xuu71",fontsize=16,color="green",shape="box"];1391[label="xuu69",fontsize=16,color="green",shape="box"];1392[label="xuu70",fontsize=16,color="green",shape="box"];1393[label="xuu73",fontsize=16,color="green",shape="box"];1385[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (xuu177 || xuu178)",fontsize=16,color="burlywood",shape="triangle"];4104[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];1385 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 1418[label="",style="solid", color="burlywood", weight=3]; 4105[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];1385 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 1419[label="",style="solid", color="burlywood", weight=3]; 1258[label="xuu80 <= xuu81",fontsize=16,color="blue",shape="box"];4106[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 1420[label="",style="solid", color="blue", weight=3]; 4107[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 1421[label="",style="solid", color="blue", weight=3]; 4108[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 1422[label="",style="solid", color="blue", weight=3]; 4109[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 1423[label="",style="solid", color="blue", weight=3]; 4110[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 1424[label="",style="solid", color="blue", weight=3]; 4111[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 1425[label="",style="solid", color="blue", weight=3]; 4112[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4112[label="",style="solid", color="blue", weight=9]; 4112 -> 1426[label="",style="solid", color="blue", weight=3]; 4113[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4113[label="",style="solid", color="blue", weight=9]; 4113 -> 1427[label="",style="solid", color="blue", weight=3]; 4114[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4114[label="",style="solid", color="blue", weight=9]; 4114 -> 1428[label="",style="solid", color="blue", weight=3]; 4115[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4115[label="",style="solid", color="blue", weight=9]; 4115 -> 1429[label="",style="solid", color="blue", weight=3]; 4116[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 1430[label="",style="solid", color="blue", weight=3]; 4117[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 1431[label="",style="solid", color="blue", weight=3]; 4118[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4118[label="",style="solid", color="blue", weight=9]; 4118 -> 1432[label="",style="solid", color="blue", weight=3]; 4119[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1258 -> 4119[label="",style="solid", color="blue", weight=9]; 4119 -> 1433[label="",style="solid", color="blue", weight=3]; 1259[label="compare1 (Left xuu135) (Left xuu136) False",fontsize=16,color="black",shape="box"];1259 -> 1434[label="",style="solid", color="black", weight=3]; 1260[label="compare1 (Left xuu135) (Left xuu136) True",fontsize=16,color="black",shape="box"];1260 -> 1435[label="",style="solid", color="black", weight=3]; 1261[label="GT",fontsize=16,color="green",shape="box"];1269[label="xuu87 <= xuu88",fontsize=16,color="blue",shape="box"];4120[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4120[label="",style="solid", color="blue", weight=9]; 4120 -> 1436[label="",style="solid", color="blue", weight=3]; 4121[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 1437[label="",style="solid", color="blue", weight=3]; 4122[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 1438[label="",style="solid", color="blue", weight=3]; 4123[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 1439[label="",style="solid", color="blue", weight=3]; 4124[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 1440[label="",style="solid", color="blue", weight=3]; 4125[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 1441[label="",style="solid", color="blue", weight=3]; 4126[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 1442[label="",style="solid", color="blue", weight=3]; 4127[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 1443[label="",style="solid", color="blue", weight=3]; 4128[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 1444[label="",style="solid", color="blue", weight=3]; 4129[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 1445[label="",style="solid", color="blue", weight=3]; 4130[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 1446[label="",style="solid", color="blue", weight=3]; 4131[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 1447[label="",style="solid", color="blue", weight=3]; 4132[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 1448[label="",style="solid", color="blue", weight=3]; 4133[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 1449[label="",style="solid", color="blue", weight=3]; 1270[label="compare1 (Right xuu142) (Right xuu143) False",fontsize=16,color="black",shape="box"];1270 -> 1450[label="",style="solid", color="black", weight=3]; 1271[label="compare1 (Right xuu142) (Right xuu143) True",fontsize=16,color="black",shape="box"];1271 -> 1451[label="",style="solid", color="black", weight=3]; 1272[label="xuu60000",fontsize=16,color="green",shape="box"];1273[label="xuu31100010",fontsize=16,color="green",shape="box"];1274[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="burlywood",shape="triangle"];4134[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1274 -> 4134[label="",style="solid", color="burlywood", weight=9]; 4134 -> 1452[label="",style="solid", color="burlywood", weight=3]; 4135[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1274 -> 4135[label="",style="solid", color="burlywood", weight=9]; 4135 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1275 -> 1274[label="",style="dashed", color="red", weight=0]; 1275[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1275 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1274[label="",style="dashed", color="red", weight=0]; 1276[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1276 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1274[label="",style="dashed", color="red", weight=0]; 1277[label="primMulNat xuu60000 xuu31100010",fontsize=16,color="magenta"];1277 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1277 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1278[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1279[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 + FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="box"];1279 -> 1458[label="",style="solid", color="black", weight=3]; 1717 -> 1743[label="",style="dashed", color="red", weight=0]; 1717[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1717 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1716[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu180",fontsize=16,color="burlywood",shape="triangle"];4136[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];1716 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 1722[label="",style="solid", color="burlywood", weight=3]; 4137[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];1716 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 1723[label="",style="solid", color="burlywood", weight=3]; 3446[label="xuu41",fontsize=16,color="green",shape="box"];3447[label="[]",fontsize=16,color="green",shape="box"];3448[label="xuu61",fontsize=16,color="green",shape="box"];3449[label="xuu63",fontsize=16,color="green",shape="box"];3450[label="Zero",fontsize=16,color="green",shape="box"];2071[label="Pos Zero",fontsize=16,color="green",shape="box"];2072[label="xuu642",fontsize=16,color="green",shape="box"];2494[label="primPlusNat xuu1970 xuu1960",fontsize=16,color="burlywood",shape="triangle"];4138[label="xuu1970/Succ xuu19700",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4138[label="",style="solid", color="burlywood", weight=9]; 4138 -> 2586[label="",style="solid", color="burlywood", weight=3]; 4139[label="xuu1970/Zero",fontsize=10,color="white",style="solid",shape="box"];2494 -> 4139[label="",style="solid", color="burlywood", weight=9]; 4139 -> 2587[label="",style="solid", color="burlywood", weight=3]; 2495[label="primMinusNat (Succ xuu19700) xuu1960",fontsize=16,color="burlywood",shape="box"];4140[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4140[label="",style="solid", color="burlywood", weight=9]; 4140 -> 2588[label="",style="solid", color="burlywood", weight=3]; 4141[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2495 -> 4141[label="",style="solid", color="burlywood", weight=9]; 4141 -> 2589[label="",style="solid", color="burlywood", weight=3]; 2496[label="primMinusNat Zero xuu1960",fontsize=16,color="burlywood",shape="box"];4142[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4142[label="",style="solid", color="burlywood", weight=9]; 4142 -> 2590[label="",style="solid", color="burlywood", weight=3]; 4143[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2496 -> 4143[label="",style="solid", color="burlywood", weight=9]; 4143 -> 2591[label="",style="solid", color="burlywood", weight=3]; 2497[label="xuu1960",fontsize=16,color="green",shape="box"];2498[label="xuu1970",fontsize=16,color="green",shape="box"];2499 -> 2494[label="",style="dashed", color="red", weight=0]; 2499[label="primPlusNat xuu1970 xuu1960",fontsize=16,color="magenta"];2499 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2593[label="",style="dashed", color="magenta", weight=3]; 3670[label="FiniteMap.mkBranchUnbox xuu296 xuu293 xuu295 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)",fontsize=16,color="black",shape="box"];3670 -> 3681[label="",style="solid", color="black", weight=3]; 2040[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2041[label="GT",fontsize=16,color="green",shape="box"];2042 -> 191[label="",style="dashed", color="red", weight=0]; 2042[label="compare xuu187 xuu186",fontsize=16,color="magenta"];2042 -> 2073[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1743[label="",style="dashed", color="red", weight=0]; 1740[label="FiniteMap.mkBalBranch6Size_l (xuu600 : xuu601) xuu61 xuu29 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];1740 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1739[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu184",fontsize=16,color="burlywood",shape="triangle"];4144[label="xuu184/False",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4144[label="",style="solid", color="burlywood", weight=9]; 4144 -> 1758[label="",style="solid", color="burlywood", weight=3]; 4145[label="xuu184/True",fontsize=10,color="white",style="solid",shape="box"];1739 -> 4145[label="",style="solid", color="burlywood", weight=9]; 4145 -> 1759[label="",style="solid", color="burlywood", weight=3]; 1295[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 FiniteMap.EmptyFM xuu29 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1295 -> 1477[label="",style="solid", color="black", weight=3]; 1296[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1296 -> 1478[label="",style="solid", color="black", weight=3]; 1312[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1312 -> 1479[label="",style="solid", color="black", weight=3]; 1313[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1313 -> 1480[label="",style="solid", color="black", weight=3]; 1314[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1314 -> 1481[label="",style="solid", color="black", weight=3]; 1315[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1315 -> 1482[label="",style="solid", color="black", weight=3]; 1316[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1316 -> 1483[label="",style="solid", color="black", weight=3]; 1317[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1317 -> 1484[label="",style="solid", color="black", weight=3]; 1318[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1318 -> 1485[label="",style="solid", color="black", weight=3]; 1319[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1319 -> 1486[label="",style="solid", color="black", weight=3]; 1320[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1320 -> 1487[label="",style="solid", color="black", weight=3]; 1321[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1321 -> 1488[label="",style="solid", color="black", weight=3]; 1322[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1322 -> 1489[label="",style="solid", color="black", weight=3]; 1323[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1323 -> 1490[label="",style="solid", color="black", weight=3]; 1324[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1324 -> 1491[label="",style="solid", color="black", weight=3]; 1325[label="xuu99 < xuu101",fontsize=16,color="black",shape="triangle"];1325 -> 1492[label="",style="solid", color="black", weight=3]; 1326[label="xuu100 <= xuu102",fontsize=16,color="blue",shape="box"];4146[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1493[label="",style="solid", color="blue", weight=3]; 4147[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1494[label="",style="solid", color="blue", weight=3]; 4148[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1495[label="",style="solid", color="blue", weight=3]; 4149[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1496[label="",style="solid", color="blue", weight=3]; 4150[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 1497[label="",style="solid", color="blue", weight=3]; 4151[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 1498[label="",style="solid", color="blue", weight=3]; 4152[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 1499[label="",style="solid", color="blue", weight=3]; 4153[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 1500[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 1501[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 1502[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 1503[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 1504[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 1505[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 1506[label="",style="solid", color="blue", weight=3]; 1327[label="xuu99 == xuu101",fontsize=16,color="blue",shape="box"];4160[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 1507[label="",style="solid", color="blue", weight=3]; 4161[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 1508[label="",style="solid", color="blue", weight=3]; 4162[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 1509[label="",style="solid", color="blue", weight=3]; 4163[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 1510[label="",style="solid", color="blue", weight=3]; 4164[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 1511[label="",style="solid", color="blue", weight=3]; 4165[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 1512[label="",style="solid", color="blue", weight=3]; 4166[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 1513[label="",style="solid", color="blue", weight=3]; 4167[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 1514[label="",style="solid", color="blue", weight=3]; 4168[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 1515[label="",style="solid", color="blue", weight=3]; 4169[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 1516[label="",style="solid", color="blue", weight=3]; 4170[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 1517[label="",style="solid", color="blue", weight=3]; 4171[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1518[label="",style="solid", color="blue", weight=3]; 4172[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 1519[label="",style="solid", color="blue", weight=3]; 4173[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 1520[label="",style="solid", color="blue", weight=3]; 1328[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (False || xuu161)",fontsize=16,color="black",shape="box"];1328 -> 1521[label="",style="solid", color="black", weight=3]; 1329[label="compare1 (xuu156,xuu157) (xuu158,xuu159) (True || xuu161)",fontsize=16,color="black",shape="box"];1329 -> 1522[label="",style="solid", color="black", weight=3]; 1330 -> 996[label="",style="dashed", color="red", weight=0]; 1330[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1330 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1331[label="False",fontsize=16,color="green",shape="box"];1332[label="False",fontsize=16,color="green",shape="box"];1333[label="True",fontsize=16,color="green",shape="box"];1334[label="primEqInt (Pos (Succ xuu311000000)) xuu6000",fontsize=16,color="burlywood",shape="box"];4174[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1334 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 1525[label="",style="solid", color="burlywood", weight=3]; 4175[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1334 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1335[label="primEqInt (Pos Zero) xuu6000",fontsize=16,color="burlywood",shape="box"];4176[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 1527[label="",style="solid", color="burlywood", weight=3]; 4177[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1335 -> 4177[label="",style="solid", color="burlywood", weight=9]; 4177 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1336[label="primEqInt (Neg (Succ xuu311000000)) xuu6000",fontsize=16,color="burlywood",shape="box"];4178[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1336 -> 4178[label="",style="solid", color="burlywood", weight=9]; 4178 -> 1529[label="",style="solid", color="burlywood", weight=3]; 4179[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1336 -> 4179[label="",style="solid", color="burlywood", weight=9]; 4179 -> 1530[label="",style="solid", color="burlywood", weight=3]; 1337[label="primEqInt (Neg Zero) xuu6000",fontsize=16,color="burlywood",shape="box"];4180[label="xuu6000/Pos xuu60000",fontsize=10,color="white",style="solid",shape="box"];1337 -> 4180[label="",style="solid", color="burlywood", weight=9]; 4180 -> 1531[label="",style="solid", color="burlywood", weight=3]; 4181[label="xuu6000/Neg xuu60000",fontsize=10,color="white",style="solid",shape="box"];1337 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 1532[label="",style="solid", color="burlywood", weight=3]; 1338[label="primEqFloat (Float xuu31100000 xuu31100001) (Float xuu60000 xuu60001)",fontsize=16,color="black",shape="box"];1338 -> 1533[label="",style="solid", color="black", weight=3]; 1339[label="True",fontsize=16,color="green",shape="box"];1340[label="True",fontsize=16,color="green",shape="box"];1341[label="False",fontsize=16,color="green",shape="box"];1342[label="False",fontsize=16,color="green",shape="box"];1343[label="True",fontsize=16,color="green",shape="box"];1344[label="primEqDouble (Double xuu31100000 xuu31100001) (Double xuu60000 xuu60001)",fontsize=16,color="black",shape="box"];1344 -> 1534[label="",style="solid", color="black", weight=3]; 1345[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 1535[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 1536[label="",style="solid", color="blue", weight=3]; 4184[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 1537[label="",style="solid", color="blue", weight=3]; 4185[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 1538[label="",style="solid", color="blue", weight=3]; 4186[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 1539[label="",style="solid", color="blue", weight=3]; 4187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 1540[label="",style="solid", color="blue", weight=3]; 4188[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 1541[label="",style="solid", color="blue", weight=3]; 4189[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 1542[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 1543[label="",style="solid", color="blue", weight=3]; 4191[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 1544[label="",style="solid", color="blue", weight=3]; 4192[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 1545[label="",style="solid", color="blue", weight=3]; 4193[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 1546[label="",style="solid", color="blue", weight=3]; 4194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 1547[label="",style="solid", color="blue", weight=3]; 4195[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1345 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 1548[label="",style="solid", color="blue", weight=3]; 1346[label="False",fontsize=16,color="green",shape="box"];1347[label="False",fontsize=16,color="green",shape="box"];1348[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4196[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 1549[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 1550[label="",style="solid", color="blue", weight=3]; 4198[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 1551[label="",style="solid", color="blue", weight=3]; 4199[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 1552[label="",style="solid", color="blue", weight=3]; 4200[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 1553[label="",style="solid", color="blue", weight=3]; 4201[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 1554[label="",style="solid", color="blue", weight=3]; 4202[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 1555[label="",style="solid", color="blue", weight=3]; 4203[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 1556[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 1557[label="",style="solid", color="blue", weight=3]; 4205[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 1558[label="",style="solid", color="blue", weight=3]; 4206[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 1559[label="",style="solid", color="blue", weight=3]; 4207[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 1560[label="",style="solid", color="blue", weight=3]; 4208[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 1561[label="",style="solid", color="blue", weight=3]; 4209[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 1562[label="",style="solid", color="blue", weight=3]; 1349 -> 996[label="",style="dashed", color="red", weight=0]; 1349[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1349 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1350 -> 676[label="",style="dashed", color="red", weight=0]; 1350[label="primEqInt xuu31100000 xuu60000",fontsize=16,color="magenta"];1350 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1351[label="True",fontsize=16,color="green",shape="box"];1352[label="False",fontsize=16,color="green",shape="box"];1353[label="False",fontsize=16,color="green",shape="box"];1354[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4210[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 1567[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 1568[label="",style="solid", color="blue", weight=3]; 4212[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 1569[label="",style="solid", color="blue", weight=3]; 4213[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 1570[label="",style="solid", color="blue", weight=3]; 4214[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 1571[label="",style="solid", color="blue", weight=3]; 4215[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 1572[label="",style="solid", color="blue", weight=3]; 4216[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 1573[label="",style="solid", color="blue", weight=3]; 4217[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 1574[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 1575[label="",style="solid", color="blue", weight=3]; 4219[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 1576[label="",style="solid", color="blue", weight=3]; 4220[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 1577[label="",style="solid", color="blue", weight=3]; 4221[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 1578[label="",style="solid", color="blue", weight=3]; 4222[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 1579[label="",style="solid", color="blue", weight=3]; 4223[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 1580[label="",style="solid", color="blue", weight=3]; 1355[label="primEqChar (Char xuu31100000) (Char xuu60000)",fontsize=16,color="black",shape="box"];1355 -> 1581[label="",style="solid", color="black", weight=3]; 1356 -> 996[label="",style="dashed", color="red", weight=0]; 1356[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001 && xuu31100002 == xuu60002",fontsize=16,color="magenta"];1356 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1357 -> 996[label="",style="dashed", color="red", weight=0]; 1357[label="xuu31100000 == xuu60000 && xuu31100001 == xuu60001",fontsize=16,color="magenta"];1357 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1358[label="True",fontsize=16,color="green",shape="box"];1359[label="False",fontsize=16,color="green",shape="box"];1360[label="False",fontsize=16,color="green",shape="box"];1361[label="False",fontsize=16,color="green",shape="box"];1362[label="True",fontsize=16,color="green",shape="box"];1363[label="False",fontsize=16,color="green",shape="box"];1364[label="False",fontsize=16,color="green",shape="box"];1365[label="False",fontsize=16,color="green",shape="box"];1366[label="True",fontsize=16,color="green",shape="box"];1367[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4224[label="xuu58/False",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4224[label="",style="solid", color="burlywood", weight=9]; 4224 -> 1586[label="",style="solid", color="burlywood", weight=3]; 4225[label="xuu58/True",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4225[label="",style="solid", color="burlywood", weight=9]; 4225 -> 1587[label="",style="solid", color="burlywood", weight=3]; 1368[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4226[label="xuu58/(xuu580,xuu581)",fontsize=10,color="white",style="solid",shape="box"];1368 -> 4226[label="",style="solid", color="burlywood", weight=9]; 4226 -> 1588[label="",style="solid", color="burlywood", weight=3]; 1369[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1369 -> 1589[label="",style="solid", color="black", weight=3]; 1370[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4227[label="xuu58/Nothing",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4227[label="",style="solid", color="burlywood", weight=9]; 4227 -> 1590[label="",style="solid", color="burlywood", weight=3]; 4228[label="xuu58/Just xuu580",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4228[label="",style="solid", color="burlywood", weight=9]; 4228 -> 1591[label="",style="solid", color="burlywood", weight=3]; 1371[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4229[label="xuu58/LT",fontsize=10,color="white",style="solid",shape="box"];1371 -> 4229[label="",style="solid", color="burlywood", weight=9]; 4229 -> 1592[label="",style="solid", color="burlywood", weight=3]; 4230[label="xuu58/EQ",fontsize=10,color="white",style="solid",shape="box"];1371 -> 4230[label="",style="solid", color="burlywood", weight=9]; 4230 -> 1593[label="",style="solid", color="burlywood", weight=3]; 4231[label="xuu58/GT",fontsize=10,color="white",style="solid",shape="box"];1371 -> 4231[label="",style="solid", color="burlywood", weight=9]; 4231 -> 1594[label="",style="solid", color="burlywood", weight=3]; 1372[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1372 -> 1595[label="",style="solid", color="black", weight=3]; 1373[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1373 -> 1596[label="",style="solid", color="black", weight=3]; 1374[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1374 -> 1597[label="",style="solid", color="black", weight=3]; 1375[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4232[label="xuu58/(xuu580,xuu581,xuu582)",fontsize=10,color="white",style="solid",shape="box"];1375 -> 4232[label="",style="solid", color="burlywood", weight=9]; 4232 -> 1598[label="",style="solid", color="burlywood", weight=3]; 1376[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1376 -> 1599[label="",style="solid", color="black", weight=3]; 1377[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1377 -> 1600[label="",style="solid", color="black", weight=3]; 1378[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1378 -> 1601[label="",style="solid", color="black", weight=3]; 1379[label="xuu58 <= xuu59",fontsize=16,color="burlywood",shape="triangle"];4233[label="xuu58/Left xuu580",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4233[label="",style="solid", color="burlywood", weight=9]; 4233 -> 1602[label="",style="solid", color="burlywood", weight=3]; 4234[label="xuu58/Right xuu580",fontsize=10,color="white",style="solid",shape="box"];1379 -> 4234[label="",style="solid", color="burlywood", weight=9]; 4234 -> 1603[label="",style="solid", color="burlywood", weight=3]; 1380[label="xuu58 <= xuu59",fontsize=16,color="black",shape="triangle"];1380 -> 1604[label="",style="solid", color="black", weight=3]; 1381[label="compare0 (Just xuu125) (Just xuu126) otherwise",fontsize=16,color="black",shape="box"];1381 -> 1605[label="",style="solid", color="black", weight=3]; 1382[label="LT",fontsize=16,color="green",shape="box"];1402 -> 2066[label="",style="dashed", color="red", weight=0]; 1402[label="xuu70 < xuu73 || xuu70 == xuu73 && xuu71 <= xuu74",fontsize=16,color="magenta"];1402 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1402 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1403[label="xuu69 == xuu72",fontsize=16,color="blue",shape="box"];4235[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 1608[label="",style="solid", color="blue", weight=3]; 4236[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 1609[label="",style="solid", color="blue", weight=3]; 4237[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 1610[label="",style="solid", color="blue", weight=3]; 4238[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 1611[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 1612[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 1613[label="",style="solid", color="blue", weight=3]; 4241[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 1614[label="",style="solid", color="blue", weight=3]; 4242[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 1615[label="",style="solid", color="blue", weight=3]; 4243[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 1616[label="",style="solid", color="blue", weight=3]; 4244[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 1617[label="",style="solid", color="blue", weight=3]; 4245[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 1618[label="",style="solid", color="blue", weight=3]; 4246[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 1619[label="",style="solid", color="blue", weight=3]; 4247[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 1620[label="",style="solid", color="blue", weight=3]; 4248[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 1621[label="",style="solid", color="blue", weight=3]; 1404 -> 1312[label="",style="dashed", color="red", weight=0]; 1404[label="xuu69 < xuu72",fontsize=16,color="magenta"];1404 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1313[label="",style="dashed", color="red", weight=0]; 1405[label="xuu69 < xuu72",fontsize=16,color="magenta"];1405 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1314[label="",style="dashed", color="red", weight=0]; 1406[label="xuu69 < xuu72",fontsize=16,color="magenta"];1406 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1315[label="",style="dashed", color="red", weight=0]; 1407[label="xuu69 < xuu72",fontsize=16,color="magenta"];1407 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1316[label="",style="dashed", color="red", weight=0]; 1408[label="xuu69 < xuu72",fontsize=16,color="magenta"];1408 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1317[label="",style="dashed", color="red", weight=0]; 1409[label="xuu69 < xuu72",fontsize=16,color="magenta"];1409 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1318[label="",style="dashed", color="red", weight=0]; 1410[label="xuu69 < xuu72",fontsize=16,color="magenta"];1410 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1319[label="",style="dashed", color="red", weight=0]; 1411[label="xuu69 < xuu72",fontsize=16,color="magenta"];1411 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1320[label="",style="dashed", color="red", weight=0]; 1412[label="xuu69 < xuu72",fontsize=16,color="magenta"];1412 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1321[label="",style="dashed", color="red", weight=0]; 1413[label="xuu69 < xuu72",fontsize=16,color="magenta"];1413 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1322[label="",style="dashed", color="red", weight=0]; 1414[label="xuu69 < xuu72",fontsize=16,color="magenta"];1414 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1323[label="",style="dashed", color="red", weight=0]; 1415[label="xuu69 < xuu72",fontsize=16,color="magenta"];1415 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1324[label="",style="dashed", color="red", weight=0]; 1416[label="xuu69 < xuu72",fontsize=16,color="magenta"];1416 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1325[label="",style="dashed", color="red", weight=0]; 1417[label="xuu69 < xuu72",fontsize=16,color="magenta"];1417 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1418[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (False || xuu178)",fontsize=16,color="black",shape="box"];1418 -> 1650[label="",style="solid", color="black", weight=3]; 1419[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) (True || xuu178)",fontsize=16,color="black",shape="box"];1419 -> 1651[label="",style="solid", color="black", weight=3]; 1420 -> 1367[label="",style="dashed", color="red", weight=0]; 1420[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1420 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1368[label="",style="dashed", color="red", weight=0]; 1421[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1421 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1369[label="",style="dashed", color="red", weight=0]; 1422[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1422 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1370[label="",style="dashed", color="red", weight=0]; 1423[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1423 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1371[label="",style="dashed", color="red", weight=0]; 1424[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1424 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1372[label="",style="dashed", color="red", weight=0]; 1425[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1425 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1373[label="",style="dashed", color="red", weight=0]; 1426[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1426 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1374[label="",style="dashed", color="red", weight=0]; 1427[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1427 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1375[label="",style="dashed", color="red", weight=0]; 1428[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1428 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1376[label="",style="dashed", color="red", weight=0]; 1429[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1429 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1377[label="",style="dashed", color="red", weight=0]; 1430[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1430 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1378[label="",style="dashed", color="red", weight=0]; 1431[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1431 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1379[label="",style="dashed", color="red", weight=0]; 1432[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1432 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1380[label="",style="dashed", color="red", weight=0]; 1433[label="xuu80 <= xuu81",fontsize=16,color="magenta"];1433 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1434[label="compare0 (Left xuu135) (Left xuu136) otherwise",fontsize=16,color="black",shape="box"];1434 -> 1680[label="",style="solid", color="black", weight=3]; 1435[label="LT",fontsize=16,color="green",shape="box"];1436 -> 1367[label="",style="dashed", color="red", weight=0]; 1436[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1436 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1368[label="",style="dashed", color="red", weight=0]; 1437[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1437 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1369[label="",style="dashed", color="red", weight=0]; 1438[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1438 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1370[label="",style="dashed", color="red", weight=0]; 1439[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1439 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1371[label="",style="dashed", color="red", weight=0]; 1440[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1440 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1372[label="",style="dashed", color="red", weight=0]; 1441[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1441 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1373[label="",style="dashed", color="red", weight=0]; 1442[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1442 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1374[label="",style="dashed", color="red", weight=0]; 1443[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1443 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1375[label="",style="dashed", color="red", weight=0]; 1444[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1444 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1376[label="",style="dashed", color="red", weight=0]; 1445[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1445 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1377[label="",style="dashed", color="red", weight=0]; 1446[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1446 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1378[label="",style="dashed", color="red", weight=0]; 1447[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1447 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1379[label="",style="dashed", color="red", weight=0]; 1448[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1448 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1380[label="",style="dashed", color="red", weight=0]; 1449[label="xuu87 <= xuu88",fontsize=16,color="magenta"];1449 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1450[label="compare0 (Right xuu142) (Right xuu143) otherwise",fontsize=16,color="black",shape="box"];1450 -> 1709[label="",style="solid", color="black", weight=3]; 1451[label="LT",fontsize=16,color="green",shape="box"];1452[label="primMulNat (Succ xuu600000) xuu31100010",fontsize=16,color="burlywood",shape="box"];4249[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1452 -> 4249[label="",style="solid", color="burlywood", weight=9]; 4249 -> 1710[label="",style="solid", color="burlywood", weight=3]; 4250[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1452 -> 4250[label="",style="solid", color="burlywood", weight=9]; 4250 -> 1711[label="",style="solid", color="burlywood", weight=3]; 1453[label="primMulNat Zero xuu31100010",fontsize=16,color="burlywood",shape="box"];4251[label="xuu31100010/Succ xuu311000100",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 1712[label="",style="solid", color="burlywood", weight=3]; 4252[label="xuu31100010/Zero",fontsize=10,color="white",style="solid",shape="box"];1453 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 1713[label="",style="solid", color="burlywood", weight=3]; 1454[label="xuu31100010",fontsize=16,color="green",shape="box"];1455[label="xuu60000",fontsize=16,color="green",shape="box"];1456[label="xuu31100010",fontsize=16,color="green",shape="box"];1457[label="xuu60000",fontsize=16,color="green",shape="box"];1458 -> 2131[label="",style="dashed", color="red", weight=0]; 1458[label="primPlusInt (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41) (FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];1458 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1458 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1748[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];1748 -> 1760[label="",style="solid", color="black", weight=3]; 1749 -> 454[label="",style="dashed", color="red", weight=0]; 1749[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1749 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1722[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];1722 -> 1763[label="",style="solid", color="black", weight=3]; 1723[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];1723 -> 1764[label="",style="solid", color="black", weight=3]; 2586[label="primPlusNat (Succ xuu19700) xuu1960",fontsize=16,color="burlywood",shape="box"];4253[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2586 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 2737[label="",style="solid", color="burlywood", weight=3]; 4254[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2586 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 2738[label="",style="solid", color="burlywood", weight=3]; 2587[label="primPlusNat Zero xuu1960",fontsize=16,color="burlywood",shape="box"];4255[label="xuu1960/Succ xuu19600",fontsize=10,color="white",style="solid",shape="box"];2587 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 2739[label="",style="solid", color="burlywood", weight=3]; 4256[label="xuu1960/Zero",fontsize=10,color="white",style="solid",shape="box"];2587 -> 4256[label="",style="solid", color="burlywood", weight=9]; 4256 -> 2740[label="",style="solid", color="burlywood", weight=3]; 2588[label="primMinusNat (Succ xuu19700) (Succ xuu19600)",fontsize=16,color="black",shape="box"];2588 -> 2741[label="",style="solid", color="black", weight=3]; 2589[label="primMinusNat (Succ xuu19700) Zero",fontsize=16,color="black",shape="box"];2589 -> 2742[label="",style="solid", color="black", weight=3]; 2590[label="primMinusNat Zero (Succ xuu19600)",fontsize=16,color="black",shape="box"];2590 -> 2743[label="",style="solid", color="black", weight=3]; 2591[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2591 -> 2744[label="",style="solid", color="black", weight=3]; 2592[label="xuu1970",fontsize=16,color="green",shape="box"];2593[label="xuu1960",fontsize=16,color="green",shape="box"];3681[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295 + FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3681 -> 3682[label="",style="solid", color="black", weight=3]; 2073[label="xuu186",fontsize=16,color="green",shape="box"];2074[label="xuu187",fontsize=16,color="green",shape="box"];1751 -> 454[label="",style="dashed", color="red", weight=0]; 1751[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];1751 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1758[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 False",fontsize=16,color="black",shape="box"];1758 -> 2043[label="",style="solid", color="black", weight=3]; 1759[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];1759 -> 2044[label="",style="solid", color="black", weight=3]; 1477[label="error []",fontsize=16,color="red",shape="box"];1478[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1478 -> 1768[label="",style="solid", color="black", weight=3]; 1479 -> 559[label="",style="dashed", color="red", weight=0]; 1479[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1479 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1480 -> 559[label="",style="dashed", color="red", weight=0]; 1480[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1480 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1481 -> 559[label="",style="dashed", color="red", weight=0]; 1481[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1481 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1482 -> 559[label="",style="dashed", color="red", weight=0]; 1482[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1482 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1483 -> 559[label="",style="dashed", color="red", weight=0]; 1483[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1483 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1484 -> 559[label="",style="dashed", color="red", weight=0]; 1484[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1484 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1485 -> 559[label="",style="dashed", color="red", weight=0]; 1485[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1485 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1486 -> 559[label="",style="dashed", color="red", weight=0]; 1486[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1486 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1487 -> 559[label="",style="dashed", color="red", weight=0]; 1487[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1487 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1488 -> 559[label="",style="dashed", color="red", weight=0]; 1488[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1488 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1489 -> 559[label="",style="dashed", color="red", weight=0]; 1489[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1489 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1490 -> 559[label="",style="dashed", color="red", weight=0]; 1490[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1490 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1491 -> 559[label="",style="dashed", color="red", weight=0]; 1491[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1491 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1492 -> 559[label="",style="dashed", color="red", weight=0]; 1492[label="compare xuu99 xuu101 == LT",fontsize=16,color="magenta"];1492 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1367[label="",style="dashed", color="red", weight=0]; 1493[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1493 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1368[label="",style="dashed", color="red", weight=0]; 1494[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1494 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1369[label="",style="dashed", color="red", weight=0]; 1495[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1495 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1370[label="",style="dashed", color="red", weight=0]; 1496[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1496 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1371[label="",style="dashed", color="red", weight=0]; 1497[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1497 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1372[label="",style="dashed", color="red", weight=0]; 1498[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1498 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1373[label="",style="dashed", color="red", weight=0]; 1499[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1499 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1374[label="",style="dashed", color="red", weight=0]; 1500[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1500 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1375[label="",style="dashed", color="red", weight=0]; 1501[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1501 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1376[label="",style="dashed", color="red", weight=0]; 1502[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1502 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1377[label="",style="dashed", color="red", weight=0]; 1503[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1503 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1378[label="",style="dashed", color="red", weight=0]; 1504[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1504 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1379[label="",style="dashed", color="red", weight=0]; 1505[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1505 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1380[label="",style="dashed", color="red", weight=0]; 1506[label="xuu100 <= xuu102",fontsize=16,color="magenta"];1506 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1507 -> 550[label="",style="dashed", color="red", weight=0]; 1507[label="xuu99 == xuu101",fontsize=16,color="magenta"];1507 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1508 -> 553[label="",style="dashed", color="red", weight=0]; 1508[label="xuu99 == xuu101",fontsize=16,color="magenta"];1508 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1509 -> 546[label="",style="dashed", color="red", weight=0]; 1509[label="xuu99 == xuu101",fontsize=16,color="magenta"];1509 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1510 -> 555[label="",style="dashed", color="red", weight=0]; 1510[label="xuu99 == xuu101",fontsize=16,color="magenta"];1510 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1511 -> 559[label="",style="dashed", color="red", weight=0]; 1511[label="xuu99 == xuu101",fontsize=16,color="magenta"];1511 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1512 -> 554[label="",style="dashed", color="red", weight=0]; 1512[label="xuu99 == xuu101",fontsize=16,color="magenta"];1512 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1513 -> 551[label="",style="dashed", color="red", weight=0]; 1513[label="xuu99 == xuu101",fontsize=16,color="magenta"];1513 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1514 -> 547[label="",style="dashed", color="red", weight=0]; 1514[label="xuu99 == xuu101",fontsize=16,color="magenta"];1514 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1515 -> 557[label="",style="dashed", color="red", weight=0]; 1515[label="xuu99 == xuu101",fontsize=16,color="magenta"];1515 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1516 -> 548[label="",style="dashed", color="red", weight=0]; 1516[label="xuu99 == xuu101",fontsize=16,color="magenta"];1516 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1517 -> 549[label="",style="dashed", color="red", weight=0]; 1517[label="xuu99 == xuu101",fontsize=16,color="magenta"];1517 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1518 -> 556[label="",style="dashed", color="red", weight=0]; 1518[label="xuu99 == xuu101",fontsize=16,color="magenta"];1518 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1519 -> 552[label="",style="dashed", color="red", weight=0]; 1519[label="xuu99 == xuu101",fontsize=16,color="magenta"];1519 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1520 -> 558[label="",style="dashed", color="red", weight=0]; 1520[label="xuu99 == xuu101",fontsize=16,color="magenta"];1520 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1521[label="compare1 (xuu156,xuu157) (xuu158,xuu159) xuu161",fontsize=16,color="burlywood",shape="triangle"];4257[label="xuu161/False",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4257[label="",style="solid", color="burlywood", weight=9]; 4257 -> 1853[label="",style="solid", color="burlywood", weight=3]; 4258[label="xuu161/True",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4258[label="",style="solid", color="burlywood", weight=9]; 4258 -> 1854[label="",style="solid", color="burlywood", weight=3]; 1522 -> 1521[label="",style="dashed", color="red", weight=0]; 1522[label="compare1 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="magenta"];1522 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1523 -> 546[label="",style="dashed", color="red", weight=0]; 1523[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1523 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1524[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4259[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 1858[label="",style="solid", color="blue", weight=3]; 4260[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 1859[label="",style="solid", color="blue", weight=3]; 4261[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 1860[label="",style="solid", color="blue", weight=3]; 4262[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 1861[label="",style="solid", color="blue", weight=3]; 4263[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 1862[label="",style="solid", color="blue", weight=3]; 4264[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 1863[label="",style="solid", color="blue", weight=3]; 4265[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 1864[label="",style="solid", color="blue", weight=3]; 4266[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 1865[label="",style="solid", color="blue", weight=3]; 4267[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 1866[label="",style="solid", color="blue", weight=3]; 4268[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 1867[label="",style="solid", color="blue", weight=3]; 4269[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 1868[label="",style="solid", color="blue", weight=3]; 4270[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 1869[label="",style="solid", color="blue", weight=3]; 4271[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 1870[label="",style="solid", color="blue", weight=3]; 4272[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1524 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 1871[label="",style="solid", color="blue", weight=3]; 1525[label="primEqInt (Pos (Succ xuu311000000)) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4273[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 1872[label="",style="solid", color="burlywood", weight=3]; 4274[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 1873[label="",style="solid", color="burlywood", weight=3]; 1526[label="primEqInt (Pos (Succ xuu311000000)) (Neg xuu60000)",fontsize=16,color="black",shape="box"];1526 -> 1874[label="",style="solid", color="black", weight=3]; 1527[label="primEqInt (Pos Zero) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4275[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1527 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 1875[label="",style="solid", color="burlywood", weight=3]; 4276[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1527 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 1876[label="",style="solid", color="burlywood", weight=3]; 1528[label="primEqInt (Pos Zero) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4277[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1528 -> 4277[label="",style="solid", color="burlywood", weight=9]; 4277 -> 1877[label="",style="solid", color="burlywood", weight=3]; 4278[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1528 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 1878[label="",style="solid", color="burlywood", weight=3]; 1529[label="primEqInt (Neg (Succ xuu311000000)) (Pos xuu60000)",fontsize=16,color="black",shape="box"];1529 -> 1879[label="",style="solid", color="black", weight=3]; 1530[label="primEqInt (Neg (Succ xuu311000000)) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4279[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 1880[label="",style="solid", color="burlywood", weight=3]; 4280[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 1881[label="",style="solid", color="burlywood", weight=3]; 1531[label="primEqInt (Neg Zero) (Pos xuu60000)",fontsize=16,color="burlywood",shape="box"];4281[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1531 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 1882[label="",style="solid", color="burlywood", weight=3]; 4282[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1531 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 1883[label="",style="solid", color="burlywood", weight=3]; 1532[label="primEqInt (Neg Zero) (Neg xuu60000)",fontsize=16,color="burlywood",shape="box"];4283[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 1884[label="",style="solid", color="burlywood", weight=3]; 4284[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];1532 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 1885[label="",style="solid", color="burlywood", weight=3]; 1533 -> 547[label="",style="dashed", color="red", weight=0]; 1533[label="xuu31100000 * xuu60001 == xuu31100001 * xuu60000",fontsize=16,color="magenta"];1533 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1534 -> 547[label="",style="dashed", color="red", weight=0]; 1534[label="xuu31100000 * xuu60001 == xuu31100001 * xuu60000",fontsize=16,color="magenta"];1534 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1535 -> 546[label="",style="dashed", color="red", weight=0]; 1535[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1535 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1536 -> 547[label="",style="dashed", color="red", weight=0]; 1536[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1536 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1537 -> 548[label="",style="dashed", color="red", weight=0]; 1537[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1537 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1538 -> 549[label="",style="dashed", color="red", weight=0]; 1538[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1538 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1539 -> 550[label="",style="dashed", color="red", weight=0]; 1539[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1539 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1540 -> 551[label="",style="dashed", color="red", weight=0]; 1540[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1540 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1541 -> 552[label="",style="dashed", color="red", weight=0]; 1541[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1541 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1542 -> 553[label="",style="dashed", color="red", weight=0]; 1542[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1542 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1543 -> 554[label="",style="dashed", color="red", weight=0]; 1543[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1543 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1544 -> 555[label="",style="dashed", color="red", weight=0]; 1544[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1544 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1545 -> 556[label="",style="dashed", color="red", weight=0]; 1545[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1545 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1546 -> 557[label="",style="dashed", color="red", weight=0]; 1546[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1546 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1547 -> 558[label="",style="dashed", color="red", weight=0]; 1547[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1547 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1548 -> 559[label="",style="dashed", color="red", weight=0]; 1548[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1548 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1549 -> 546[label="",style="dashed", color="red", weight=0]; 1549[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1549 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1550 -> 547[label="",style="dashed", color="red", weight=0]; 1550[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1550 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1551 -> 548[label="",style="dashed", color="red", weight=0]; 1551[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1551 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1552 -> 549[label="",style="dashed", color="red", weight=0]; 1552[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1552 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1553 -> 550[label="",style="dashed", color="red", weight=0]; 1553[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1553 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1554 -> 551[label="",style="dashed", color="red", weight=0]; 1554[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1554 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1555 -> 552[label="",style="dashed", color="red", weight=0]; 1555[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1555 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1556 -> 553[label="",style="dashed", color="red", weight=0]; 1556[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1556 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1557 -> 554[label="",style="dashed", color="red", weight=0]; 1557[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1557 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1558 -> 555[label="",style="dashed", color="red", weight=0]; 1558[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1558 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1559 -> 556[label="",style="dashed", color="red", weight=0]; 1559[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1559 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1560 -> 557[label="",style="dashed", color="red", weight=0]; 1560[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1560 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1561 -> 558[label="",style="dashed", color="red", weight=0]; 1561[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1561 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1562 -> 559[label="",style="dashed", color="red", weight=0]; 1562[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1562 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1563[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4285[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 1946[label="",style="solid", color="blue", weight=3]; 4286[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 1947[label="",style="solid", color="blue", weight=3]; 4287[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 1948[label="",style="solid", color="blue", weight=3]; 4288[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 1949[label="",style="solid", color="blue", weight=3]; 4289[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 1950[label="",style="solid", color="blue", weight=3]; 4290[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 1951[label="",style="solid", color="blue", weight=3]; 4291[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 1952[label="",style="solid", color="blue", weight=3]; 4292[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 1953[label="",style="solid", color="blue", weight=3]; 4293[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 1954[label="",style="solid", color="blue", weight=3]; 4294[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 1955[label="",style="solid", color="blue", weight=3]; 4295[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 1956[label="",style="solid", color="blue", weight=3]; 4296[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 1957[label="",style="solid", color="blue", weight=3]; 4297[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 1958[label="",style="solid", color="blue", weight=3]; 4298[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 1959[label="",style="solid", color="blue", weight=3]; 1564[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4299[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 1960[label="",style="solid", color="blue", weight=3]; 4300[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 1961[label="",style="solid", color="blue", weight=3]; 4301[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 1962[label="",style="solid", color="blue", weight=3]; 4302[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 1963[label="",style="solid", color="blue", weight=3]; 4303[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 1964[label="",style="solid", color="blue", weight=3]; 4304[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 1965[label="",style="solid", color="blue", weight=3]; 4305[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 1966[label="",style="solid", color="blue", weight=3]; 4306[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 1967[label="",style="solid", color="blue", weight=3]; 4307[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 1968[label="",style="solid", color="blue", weight=3]; 4308[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 1969[label="",style="solid", color="blue", weight=3]; 4309[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 1970[label="",style="solid", color="blue", weight=3]; 4310[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 1971[label="",style="solid", color="blue", weight=3]; 4311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 1972[label="",style="solid", color="blue", weight=3]; 4312[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 1973[label="",style="solid", color="blue", weight=3]; 1565[label="xuu60000",fontsize=16,color="green",shape="box"];1566[label="xuu31100000",fontsize=16,color="green",shape="box"];1567 -> 546[label="",style="dashed", color="red", weight=0]; 1567[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1567 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1568 -> 547[label="",style="dashed", color="red", weight=0]; 1568[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1568 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1569 -> 548[label="",style="dashed", color="red", weight=0]; 1569[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1569 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1570 -> 549[label="",style="dashed", color="red", weight=0]; 1570[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1570 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1571 -> 550[label="",style="dashed", color="red", weight=0]; 1571[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1571 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1572 -> 551[label="",style="dashed", color="red", weight=0]; 1572[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1572 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1573 -> 552[label="",style="dashed", color="red", weight=0]; 1573[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1573 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1574 -> 553[label="",style="dashed", color="red", weight=0]; 1574[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1574 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1575 -> 554[label="",style="dashed", color="red", weight=0]; 1575[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1575 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1576 -> 555[label="",style="dashed", color="red", weight=0]; 1576[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1576 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1577 -> 556[label="",style="dashed", color="red", weight=0]; 1577[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1577 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1578 -> 557[label="",style="dashed", color="red", weight=0]; 1578[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1578 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1579 -> 558[label="",style="dashed", color="red", weight=0]; 1579[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1579 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1580 -> 559[label="",style="dashed", color="red", weight=0]; 1580[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1580 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1580 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1581[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="burlywood",shape="triangle"];4313[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4313[label="",style="solid", color="burlywood", weight=9]; 4313 -> 2002[label="",style="solid", color="burlywood", weight=3]; 4314[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4314[label="",style="solid", color="burlywood", weight=9]; 4314 -> 2003[label="",style="solid", color="burlywood", weight=3]; 1582 -> 996[label="",style="dashed", color="red", weight=0]; 1582[label="xuu31100001 == xuu60001 && xuu31100002 == xuu60002",fontsize=16,color="magenta"];1582 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1582 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1583[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4315[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 2006[label="",style="solid", color="blue", weight=3]; 4316[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 2007[label="",style="solid", color="blue", weight=3]; 4317[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 2008[label="",style="solid", color="blue", weight=3]; 4318[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 2009[label="",style="solid", color="blue", weight=3]; 4319[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 2010[label="",style="solid", color="blue", weight=3]; 4320[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 2011[label="",style="solid", color="blue", weight=3]; 4321[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 2012[label="",style="solid", color="blue", weight=3]; 4322[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 2013[label="",style="solid", color="blue", weight=3]; 4323[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 2014[label="",style="solid", color="blue", weight=3]; 4324[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 2015[label="",style="solid", color="blue", weight=3]; 4325[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 2016[label="",style="solid", color="blue", weight=3]; 4326[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 2017[label="",style="solid", color="blue", weight=3]; 4327[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 2018[label="",style="solid", color="blue", weight=3]; 4328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 2019[label="",style="solid", color="blue", weight=3]; 1584[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4329[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 2020[label="",style="solid", color="blue", weight=3]; 4330[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 2021[label="",style="solid", color="blue", weight=3]; 1585[label="xuu31100000 == xuu60000",fontsize=16,color="blue",shape="box"];4331[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 2022[label="",style="solid", color="blue", weight=3]; 4332[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 2023[label="",style="solid", color="blue", weight=3]; 1586[label="False <= xuu59",fontsize=16,color="burlywood",shape="box"];4333[label="xuu59/False",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 2024[label="",style="solid", color="burlywood", weight=3]; 4334[label="xuu59/True",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 2025[label="",style="solid", color="burlywood", weight=3]; 1587[label="True <= xuu59",fontsize=16,color="burlywood",shape="box"];4335[label="xuu59/False",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 2026[label="",style="solid", color="burlywood", weight=3]; 4336[label="xuu59/True",fontsize=10,color="white",style="solid",shape="box"];1587 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 2027[label="",style="solid", color="burlywood", weight=3]; 1588[label="(xuu580,xuu581) <= xuu59",fontsize=16,color="burlywood",shape="box"];4337[label="xuu59/(xuu590,xuu591)",fontsize=10,color="white",style="solid",shape="box"];1588 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 2028[label="",style="solid", color="burlywood", weight=3]; 1589 -> 2029[label="",style="dashed", color="red", weight=0]; 1589[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1589 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1590[label="Nothing <= xuu59",fontsize=16,color="burlywood",shape="box"];4338[label="xuu59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 2045[label="",style="solid", color="burlywood", weight=3]; 4339[label="xuu59/Just xuu590",fontsize=10,color="white",style="solid",shape="box"];1590 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 2046[label="",style="solid", color="burlywood", weight=3]; 1591[label="Just xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4340[label="xuu59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1591 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 2047[label="",style="solid", color="burlywood", weight=3]; 4341[label="xuu59/Just xuu590",fontsize=10,color="white",style="solid",shape="box"];1591 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 2048[label="",style="solid", color="burlywood", weight=3]; 1592[label="LT <= xuu59",fontsize=16,color="burlywood",shape="box"];4342[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1592 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 2049[label="",style="solid", color="burlywood", weight=3]; 4343[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1592 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 2050[label="",style="solid", color="burlywood", weight=3]; 4344[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1592 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 2051[label="",style="solid", color="burlywood", weight=3]; 1593[label="EQ <= xuu59",fontsize=16,color="burlywood",shape="box"];4345[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1593 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 2052[label="",style="solid", color="burlywood", weight=3]; 4346[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1593 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 2053[label="",style="solid", color="burlywood", weight=3]; 4347[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1593 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 2054[label="",style="solid", color="burlywood", weight=3]; 1594[label="GT <= xuu59",fontsize=16,color="burlywood",shape="box"];4348[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1594 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 2055[label="",style="solid", color="burlywood", weight=3]; 4349[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1594 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 2056[label="",style="solid", color="burlywood", weight=3]; 4350[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1594 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 2057[label="",style="solid", color="burlywood", weight=3]; 1595 -> 2029[label="",style="dashed", color="red", weight=0]; 1595[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1595 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1596 -> 2029[label="",style="dashed", color="red", weight=0]; 1596[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1596 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1597 -> 2029[label="",style="dashed", color="red", weight=0]; 1597[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1597 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1598[label="(xuu580,xuu581,xuu582) <= xuu59",fontsize=16,color="burlywood",shape="box"];4351[label="xuu59/(xuu590,xuu591,xuu592)",fontsize=10,color="white",style="solid",shape="box"];1598 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 2058[label="",style="solid", color="burlywood", weight=3]; 1599 -> 2029[label="",style="dashed", color="red", weight=0]; 1599[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1599 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1600 -> 2029[label="",style="dashed", color="red", weight=0]; 1600[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1600 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1601 -> 2029[label="",style="dashed", color="red", weight=0]; 1601[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1601 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1602[label="Left xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4352[label="xuu59/Left xuu590",fontsize=10,color="white",style="solid",shape="box"];1602 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 2059[label="",style="solid", color="burlywood", weight=3]; 4353[label="xuu59/Right xuu590",fontsize=10,color="white",style="solid",shape="box"];1602 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 2060[label="",style="solid", color="burlywood", weight=3]; 1603[label="Right xuu580 <= xuu59",fontsize=16,color="burlywood",shape="box"];4354[label="xuu59/Left xuu590",fontsize=10,color="white",style="solid",shape="box"];1603 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 2061[label="",style="solid", color="burlywood", weight=3]; 4355[label="xuu59/Right xuu590",fontsize=10,color="white",style="solid",shape="box"];1603 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 2062[label="",style="solid", color="burlywood", weight=3]; 1604 -> 2029[label="",style="dashed", color="red", weight=0]; 1604[label="compare xuu58 xuu59 /= GT",fontsize=16,color="magenta"];1604 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1605[label="compare0 (Just xuu125) (Just xuu126) True",fontsize=16,color="black",shape="box"];1605 -> 2063[label="",style="solid", color="black", weight=3]; 2067 -> 996[label="",style="dashed", color="red", weight=0]; 2067[label="xuu70 == xuu73 && xuu71 <= xuu74",fontsize=16,color="magenta"];2067 -> 2076[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2077[label="",style="dashed", color="magenta", weight=3]; 2068[label="xuu70 < xuu73",fontsize=16,color="blue",shape="box"];4356[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 2078[label="",style="solid", color="blue", weight=3]; 4357[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 2079[label="",style="solid", color="blue", weight=3]; 4358[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 2080[label="",style="solid", color="blue", weight=3]; 4359[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 2081[label="",style="solid", color="blue", weight=3]; 4360[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 2082[label="",style="solid", color="blue", weight=3]; 4361[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 2083[label="",style="solid", color="blue", weight=3]; 4362[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 2084[label="",style="solid", color="blue", weight=3]; 4363[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 2085[label="",style="solid", color="blue", weight=3]; 4364[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 2086[label="",style="solid", color="blue", weight=3]; 4365[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 2087[label="",style="solid", color="blue", weight=3]; 4366[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 2088[label="",style="solid", color="blue", weight=3]; 4367[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 2089[label="",style="solid", color="blue", weight=3]; 4368[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 2090[label="",style="solid", color="blue", weight=3]; 4369[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 2091[label="",style="solid", color="blue", weight=3]; 2066[label="xuu194 || xuu195",fontsize=16,color="burlywood",shape="triangle"];4370[label="xuu194/False",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 2092[label="",style="solid", color="burlywood", weight=3]; 4371[label="xuu194/True",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 2093[label="",style="solid", color="burlywood", weight=3]; 1608 -> 550[label="",style="dashed", color="red", weight=0]; 1608[label="xuu69 == xuu72",fontsize=16,color="magenta"];1608 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1608 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1609 -> 553[label="",style="dashed", color="red", weight=0]; 1609[label="xuu69 == xuu72",fontsize=16,color="magenta"];1609 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1609 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1610 -> 546[label="",style="dashed", color="red", weight=0]; 1610[label="xuu69 == xuu72",fontsize=16,color="magenta"];1610 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1610 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1611 -> 555[label="",style="dashed", color="red", weight=0]; 1611[label="xuu69 == xuu72",fontsize=16,color="magenta"];1611 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1611 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1612 -> 559[label="",style="dashed", color="red", weight=0]; 1612[label="xuu69 == xuu72",fontsize=16,color="magenta"];1612 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1612 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1613 -> 554[label="",style="dashed", color="red", weight=0]; 1613[label="xuu69 == xuu72",fontsize=16,color="magenta"];1613 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1613 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1614 -> 551[label="",style="dashed", color="red", weight=0]; 1614[label="xuu69 == xuu72",fontsize=16,color="magenta"];1614 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1614 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1615 -> 547[label="",style="dashed", color="red", weight=0]; 1615[label="xuu69 == xuu72",fontsize=16,color="magenta"];1615 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1615 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1616 -> 557[label="",style="dashed", color="red", weight=0]; 1616[label="xuu69 == xuu72",fontsize=16,color="magenta"];1616 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1616 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1617 -> 548[label="",style="dashed", color="red", weight=0]; 1617[label="xuu69 == xuu72",fontsize=16,color="magenta"];1617 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1617 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1618 -> 549[label="",style="dashed", color="red", weight=0]; 1618[label="xuu69 == xuu72",fontsize=16,color="magenta"];1618 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1618 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1619 -> 556[label="",style="dashed", color="red", weight=0]; 1619[label="xuu69 == xuu72",fontsize=16,color="magenta"];1619 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1619 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1620 -> 552[label="",style="dashed", color="red", weight=0]; 1620[label="xuu69 == xuu72",fontsize=16,color="magenta"];1620 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1620 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1621 -> 558[label="",style="dashed", color="red", weight=0]; 1621[label="xuu69 == xuu72",fontsize=16,color="magenta"];1621 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1621 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1622[label="xuu69",fontsize=16,color="green",shape="box"];1623[label="xuu72",fontsize=16,color="green",shape="box"];1624[label="xuu69",fontsize=16,color="green",shape="box"];1625[label="xuu72",fontsize=16,color="green",shape="box"];1626[label="xuu69",fontsize=16,color="green",shape="box"];1627[label="xuu72",fontsize=16,color="green",shape="box"];1628[label="xuu69",fontsize=16,color="green",shape="box"];1629[label="xuu72",fontsize=16,color="green",shape="box"];1630[label="xuu69",fontsize=16,color="green",shape="box"];1631[label="xuu72",fontsize=16,color="green",shape="box"];1632[label="xuu69",fontsize=16,color="green",shape="box"];1633[label="xuu72",fontsize=16,color="green",shape="box"];1634[label="xuu69",fontsize=16,color="green",shape="box"];1635[label="xuu72",fontsize=16,color="green",shape="box"];1636[label="xuu69",fontsize=16,color="green",shape="box"];1637[label="xuu72",fontsize=16,color="green",shape="box"];1638[label="xuu69",fontsize=16,color="green",shape="box"];1639[label="xuu72",fontsize=16,color="green",shape="box"];1640[label="xuu69",fontsize=16,color="green",shape="box"];1641[label="xuu72",fontsize=16,color="green",shape="box"];1642[label="xuu69",fontsize=16,color="green",shape="box"];1643[label="xuu72",fontsize=16,color="green",shape="box"];1644[label="xuu69",fontsize=16,color="green",shape="box"];1645[label="xuu72",fontsize=16,color="green",shape="box"];1646[label="xuu69",fontsize=16,color="green",shape="box"];1647[label="xuu72",fontsize=16,color="green",shape="box"];1648[label="xuu69",fontsize=16,color="green",shape="box"];1649[label="xuu72",fontsize=16,color="green",shape="box"];1650[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) xuu178",fontsize=16,color="burlywood",shape="triangle"];4372[label="xuu178/False",fontsize=10,color="white",style="solid",shape="box"];1650 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 2122[label="",style="solid", color="burlywood", weight=3]; 4373[label="xuu178/True",fontsize=10,color="white",style="solid",shape="box"];1650 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 2123[label="",style="solid", color="burlywood", weight=3]; 1651 -> 1650[label="",style="dashed", color="red", weight=0]; 1651[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="magenta"];1651 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1652[label="xuu81",fontsize=16,color="green",shape="box"];1653[label="xuu80",fontsize=16,color="green",shape="box"];1654[label="xuu81",fontsize=16,color="green",shape="box"];1655[label="xuu80",fontsize=16,color="green",shape="box"];1656[label="xuu81",fontsize=16,color="green",shape="box"];1657[label="xuu80",fontsize=16,color="green",shape="box"];1658[label="xuu81",fontsize=16,color="green",shape="box"];1659[label="xuu80",fontsize=16,color="green",shape="box"];1660[label="xuu81",fontsize=16,color="green",shape="box"];1661[label="xuu80",fontsize=16,color="green",shape="box"];1662[label="xuu81",fontsize=16,color="green",shape="box"];1663[label="xuu80",fontsize=16,color="green",shape="box"];1664[label="xuu81",fontsize=16,color="green",shape="box"];1665[label="xuu80",fontsize=16,color="green",shape="box"];1666[label="xuu81",fontsize=16,color="green",shape="box"];1667[label="xuu80",fontsize=16,color="green",shape="box"];1668[label="xuu81",fontsize=16,color="green",shape="box"];1669[label="xuu80",fontsize=16,color="green",shape="box"];1670[label="xuu81",fontsize=16,color="green",shape="box"];1671[label="xuu80",fontsize=16,color="green",shape="box"];1672[label="xuu81",fontsize=16,color="green",shape="box"];1673[label="xuu80",fontsize=16,color="green",shape="box"];1674[label="xuu81",fontsize=16,color="green",shape="box"];1675[label="xuu80",fontsize=16,color="green",shape="box"];1676[label="xuu81",fontsize=16,color="green",shape="box"];1677[label="xuu80",fontsize=16,color="green",shape="box"];1678[label="xuu81",fontsize=16,color="green",shape="box"];1679[label="xuu80",fontsize=16,color="green",shape="box"];1680[label="compare0 (Left xuu135) (Left xuu136) True",fontsize=16,color="black",shape="box"];1680 -> 2125[label="",style="solid", color="black", weight=3]; 1681[label="xuu88",fontsize=16,color="green",shape="box"];1682[label="xuu87",fontsize=16,color="green",shape="box"];1683[label="xuu88",fontsize=16,color="green",shape="box"];1684[label="xuu87",fontsize=16,color="green",shape="box"];1685[label="xuu88",fontsize=16,color="green",shape="box"];1686[label="xuu87",fontsize=16,color="green",shape="box"];1687[label="xuu88",fontsize=16,color="green",shape="box"];1688[label="xuu87",fontsize=16,color="green",shape="box"];1689[label="xuu88",fontsize=16,color="green",shape="box"];1690[label="xuu87",fontsize=16,color="green",shape="box"];1691[label="xuu88",fontsize=16,color="green",shape="box"];1692[label="xuu87",fontsize=16,color="green",shape="box"];1693[label="xuu88",fontsize=16,color="green",shape="box"];1694[label="xuu87",fontsize=16,color="green",shape="box"];1695[label="xuu88",fontsize=16,color="green",shape="box"];1696[label="xuu87",fontsize=16,color="green",shape="box"];1697[label="xuu88",fontsize=16,color="green",shape="box"];1698[label="xuu87",fontsize=16,color="green",shape="box"];1699[label="xuu88",fontsize=16,color="green",shape="box"];1700[label="xuu87",fontsize=16,color="green",shape="box"];1701[label="xuu88",fontsize=16,color="green",shape="box"];1702[label="xuu87",fontsize=16,color="green",shape="box"];1703[label="xuu88",fontsize=16,color="green",shape="box"];1704[label="xuu87",fontsize=16,color="green",shape="box"];1705[label="xuu88",fontsize=16,color="green",shape="box"];1706[label="xuu87",fontsize=16,color="green",shape="box"];1707[label="xuu88",fontsize=16,color="green",shape="box"];1708[label="xuu87",fontsize=16,color="green",shape="box"];1709[label="compare0 (Right xuu142) (Right xuu143) True",fontsize=16,color="black",shape="box"];1709 -> 2126[label="",style="solid", color="black", weight=3]; 1710[label="primMulNat (Succ xuu600000) (Succ xuu311000100)",fontsize=16,color="black",shape="box"];1710 -> 2127[label="",style="solid", color="black", weight=3]; 1711[label="primMulNat (Succ xuu600000) Zero",fontsize=16,color="black",shape="box"];1711 -> 2128[label="",style="solid", color="black", weight=3]; 1712[label="primMulNat Zero (Succ xuu311000100)",fontsize=16,color="black",shape="box"];1712 -> 2129[label="",style="solid", color="black", weight=3]; 1713[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1713 -> 2130[label="",style="solid", color="black", weight=3]; 2146[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="black",shape="triangle"];2146 -> 2168[label="",style="solid", color="black", weight=3]; 2147 -> 1748[label="",style="dashed", color="red", weight=0]; 2147[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1760 -> 1754[label="",style="dashed", color="red", weight=0]; 1760[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];1760 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1755[label="",style="dashed", color="red", weight=0]; 1761[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1762 -> 2146[label="",style="dashed", color="red", weight=0]; 1762[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];1763 -> 2170[label="",style="dashed", color="red", weight=0]; 1763[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41)",fontsize=16,color="magenta"];1763 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1764[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 xuu41 xuu63 xuu41 xuu41",fontsize=16,color="burlywood",shape="box"];4374[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1764 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 2176[label="",style="solid", color="burlywood", weight=3]; 4375[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];1764 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 2177[label="",style="solid", color="burlywood", weight=3]; 2737[label="primPlusNat (Succ xuu19700) (Succ xuu19600)",fontsize=16,color="black",shape="box"];2737 -> 2851[label="",style="solid", color="black", weight=3]; 2738[label="primPlusNat (Succ xuu19700) Zero",fontsize=16,color="black",shape="box"];2738 -> 2852[label="",style="solid", color="black", weight=3]; 2739[label="primPlusNat Zero (Succ xuu19600)",fontsize=16,color="black",shape="box"];2739 -> 2853[label="",style="solid", color="black", weight=3]; 2740[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2740 -> 2854[label="",style="solid", color="black", weight=3]; 2741 -> 2187[label="",style="dashed", color="red", weight=0]; 2741[label="primMinusNat xuu19700 xuu19600",fontsize=16,color="magenta"];2741 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2742[label="Pos (Succ xuu19700)",fontsize=16,color="green",shape="box"];2743[label="Neg (Succ xuu19600)",fontsize=16,color="green",shape="box"];2744[label="Pos Zero",fontsize=16,color="green",shape="box"];3682 -> 2131[label="",style="dashed", color="red", weight=0]; 3682[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295) (FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295)",fontsize=16,color="magenta"];3682 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3682 -> 3684[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1755[label="",style="dashed", color="red", weight=0]; 1766[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1767 -> 1744[label="",style="dashed", color="red", weight=0]; 1767[label="FiniteMap.mkBalBranch6Size_r (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2043[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 otherwise",fontsize=16,color="black",shape="box"];2043 -> 2181[label="",style="solid", color="black", weight=3]; 2044[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 xuu29 xuu64 xuu29 xuu64 xuu29",fontsize=16,color="burlywood",shape="box"];4376[label="xuu29/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 2182[label="",style="solid", color="burlywood", weight=3]; 4377[label="xuu29/FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 2183[label="",style="solid", color="burlywood", weight=3]; 1768 -> 2184[label="",style="dashed", color="red", weight=0]; 1768[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1768 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1769[label="LT",fontsize=16,color="green",shape="box"];1770 -> 184[label="",style="dashed", color="red", weight=0]; 1770[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1770 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1771[label="LT",fontsize=16,color="green",shape="box"];1772 -> 185[label="",style="dashed", color="red", weight=0]; 1772[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1772 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1773[label="LT",fontsize=16,color="green",shape="box"];1774 -> 186[label="",style="dashed", color="red", weight=0]; 1774[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1774 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1775[label="LT",fontsize=16,color="green",shape="box"];1776 -> 187[label="",style="dashed", color="red", weight=0]; 1776[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1776 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1776 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1777[label="LT",fontsize=16,color="green",shape="box"];1778 -> 188[label="",style="dashed", color="red", weight=0]; 1778[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1778 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1778 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1779[label="LT",fontsize=16,color="green",shape="box"];1780 -> 189[label="",style="dashed", color="red", weight=0]; 1780[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1780 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1781[label="LT",fontsize=16,color="green",shape="box"];1782 -> 190[label="",style="dashed", color="red", weight=0]; 1782[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1782 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1783[label="LT",fontsize=16,color="green",shape="box"];1784 -> 191[label="",style="dashed", color="red", weight=0]; 1784[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1784 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1785[label="LT",fontsize=16,color="green",shape="box"];1786 -> 192[label="",style="dashed", color="red", weight=0]; 1786[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1786 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1787[label="LT",fontsize=16,color="green",shape="box"];1788 -> 193[label="",style="dashed", color="red", weight=0]; 1788[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1788 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1788 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1789[label="LT",fontsize=16,color="green",shape="box"];1790 -> 194[label="",style="dashed", color="red", weight=0]; 1790[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1790 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1790 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1791[label="LT",fontsize=16,color="green",shape="box"];1792 -> 195[label="",style="dashed", color="red", weight=0]; 1792[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1792 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1792 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1793[label="LT",fontsize=16,color="green",shape="box"];1794 -> 196[label="",style="dashed", color="red", weight=0]; 1794[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1794 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1794 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1795[label="LT",fontsize=16,color="green",shape="box"];1796 -> 197[label="",style="dashed", color="red", weight=0]; 1796[label="compare xuu99 xuu101",fontsize=16,color="magenta"];1796 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1796 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1797[label="xuu102",fontsize=16,color="green",shape="box"];1798[label="xuu100",fontsize=16,color="green",shape="box"];1799[label="xuu102",fontsize=16,color="green",shape="box"];1800[label="xuu100",fontsize=16,color="green",shape="box"];1801[label="xuu102",fontsize=16,color="green",shape="box"];1802[label="xuu100",fontsize=16,color="green",shape="box"];1803[label="xuu102",fontsize=16,color="green",shape="box"];1804[label="xuu100",fontsize=16,color="green",shape="box"];1805[label="xuu102",fontsize=16,color="green",shape="box"];1806[label="xuu100",fontsize=16,color="green",shape="box"];1807[label="xuu102",fontsize=16,color="green",shape="box"];1808[label="xuu100",fontsize=16,color="green",shape="box"];1809[label="xuu102",fontsize=16,color="green",shape="box"];1810[label="xuu100",fontsize=16,color="green",shape="box"];1811[label="xuu102",fontsize=16,color="green",shape="box"];1812[label="xuu100",fontsize=16,color="green",shape="box"];1813[label="xuu102",fontsize=16,color="green",shape="box"];1814[label="xuu100",fontsize=16,color="green",shape="box"];1815[label="xuu102",fontsize=16,color="green",shape="box"];1816[label="xuu100",fontsize=16,color="green",shape="box"];1817[label="xuu102",fontsize=16,color="green",shape="box"];1818[label="xuu100",fontsize=16,color="green",shape="box"];1819[label="xuu102",fontsize=16,color="green",shape="box"];1820[label="xuu100",fontsize=16,color="green",shape="box"];1821[label="xuu102",fontsize=16,color="green",shape="box"];1822[label="xuu100",fontsize=16,color="green",shape="box"];1823[label="xuu102",fontsize=16,color="green",shape="box"];1824[label="xuu100",fontsize=16,color="green",shape="box"];1825[label="xuu101",fontsize=16,color="green",shape="box"];1826[label="xuu99",fontsize=16,color="green",shape="box"];1827[label="xuu101",fontsize=16,color="green",shape="box"];1828[label="xuu99",fontsize=16,color="green",shape="box"];1829[label="xuu101",fontsize=16,color="green",shape="box"];1830[label="xuu99",fontsize=16,color="green",shape="box"];1831[label="xuu101",fontsize=16,color="green",shape="box"];1832[label="xuu99",fontsize=16,color="green",shape="box"];1833[label="xuu101",fontsize=16,color="green",shape="box"];1834[label="xuu99",fontsize=16,color="green",shape="box"];1835[label="xuu101",fontsize=16,color="green",shape="box"];1836[label="xuu99",fontsize=16,color="green",shape="box"];1837[label="xuu101",fontsize=16,color="green",shape="box"];1838[label="xuu99",fontsize=16,color="green",shape="box"];1839[label="xuu101",fontsize=16,color="green",shape="box"];1840[label="xuu99",fontsize=16,color="green",shape="box"];1841[label="xuu101",fontsize=16,color="green",shape="box"];1842[label="xuu99",fontsize=16,color="green",shape="box"];1843[label="xuu101",fontsize=16,color="green",shape="box"];1844[label="xuu99",fontsize=16,color="green",shape="box"];1845[label="xuu101",fontsize=16,color="green",shape="box"];1846[label="xuu99",fontsize=16,color="green",shape="box"];1847[label="xuu101",fontsize=16,color="green",shape="box"];1848[label="xuu99",fontsize=16,color="green",shape="box"];1849[label="xuu101",fontsize=16,color="green",shape="box"];1850[label="xuu99",fontsize=16,color="green",shape="box"];1851[label="xuu101",fontsize=16,color="green",shape="box"];1852[label="xuu99",fontsize=16,color="green",shape="box"];1853[label="compare1 (xuu156,xuu157) (xuu158,xuu159) False",fontsize=16,color="black",shape="box"];1853 -> 2218[label="",style="solid", color="black", weight=3]; 1854[label="compare1 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="black",shape="box"];1854 -> 2219[label="",style="solid", color="black", weight=3]; 1855[label="True",fontsize=16,color="green",shape="box"];1856[label="xuu60001",fontsize=16,color="green",shape="box"];1857[label="xuu31100001",fontsize=16,color="green",shape="box"];1858 -> 546[label="",style="dashed", color="red", weight=0]; 1858[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1858 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1859 -> 547[label="",style="dashed", color="red", weight=0]; 1859[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1859 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1860 -> 548[label="",style="dashed", color="red", weight=0]; 1860[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1860 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1861 -> 549[label="",style="dashed", color="red", weight=0]; 1861[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1861 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1862 -> 550[label="",style="dashed", color="red", weight=0]; 1862[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1862 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1863 -> 551[label="",style="dashed", color="red", weight=0]; 1863[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1863 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1864 -> 552[label="",style="dashed", color="red", weight=0]; 1864[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1864 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1865 -> 553[label="",style="dashed", color="red", weight=0]; 1865[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1865 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1866 -> 554[label="",style="dashed", color="red", weight=0]; 1866[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1866 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1867 -> 555[label="",style="dashed", color="red", weight=0]; 1867[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1867 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1868 -> 556[label="",style="dashed", color="red", weight=0]; 1868[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1868 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1869 -> 557[label="",style="dashed", color="red", weight=0]; 1869[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1869 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1870 -> 558[label="",style="dashed", color="red", weight=0]; 1870[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1870 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1871 -> 559[label="",style="dashed", color="red", weight=0]; 1871[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1871 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1872[label="primEqInt (Pos (Succ xuu311000000)) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1872 -> 2248[label="",style="solid", color="black", weight=3]; 1873[label="primEqInt (Pos (Succ xuu311000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1873 -> 2249[label="",style="solid", color="black", weight=3]; 1874[label="False",fontsize=16,color="green",shape="box"];1875[label="primEqInt (Pos Zero) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1875 -> 2250[label="",style="solid", color="black", weight=3]; 1876[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1876 -> 2251[label="",style="solid", color="black", weight=3]; 1877[label="primEqInt (Pos Zero) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1877 -> 2252[label="",style="solid", color="black", weight=3]; 1878[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1878 -> 2253[label="",style="solid", color="black", weight=3]; 1879[label="False",fontsize=16,color="green",shape="box"];1880[label="primEqInt (Neg (Succ xuu311000000)) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1880 -> 2254[label="",style="solid", color="black", weight=3]; 1881[label="primEqInt (Neg (Succ xuu311000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1881 -> 2255[label="",style="solid", color="black", weight=3]; 1882[label="primEqInt (Neg Zero) (Pos (Succ xuu600000))",fontsize=16,color="black",shape="box"];1882 -> 2256[label="",style="solid", color="black", weight=3]; 1883[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1883 -> 2257[label="",style="solid", color="black", weight=3]; 1884[label="primEqInt (Neg Zero) (Neg (Succ xuu600000))",fontsize=16,color="black",shape="box"];1884 -> 2258[label="",style="solid", color="black", weight=3]; 1885[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1885 -> 2259[label="",style="solid", color="black", weight=3]; 1886 -> 454[label="",style="dashed", color="red", weight=0]; 1886[label="xuu31100001 * xuu60000",fontsize=16,color="magenta"];1886 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1887 -> 454[label="",style="dashed", color="red", weight=0]; 1887[label="xuu31100000 * xuu60001",fontsize=16,color="magenta"];1887 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1888 -> 454[label="",style="dashed", color="red", weight=0]; 1888[label="xuu31100001 * xuu60000",fontsize=16,color="magenta"];1888 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1889 -> 454[label="",style="dashed", color="red", weight=0]; 1889[label="xuu31100000 * xuu60001",fontsize=16,color="magenta"];1889 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1890[label="xuu60000",fontsize=16,color="green",shape="box"];1891[label="xuu31100000",fontsize=16,color="green",shape="box"];1892[label="xuu60000",fontsize=16,color="green",shape="box"];1893[label="xuu31100000",fontsize=16,color="green",shape="box"];1894[label="xuu60000",fontsize=16,color="green",shape="box"];1895[label="xuu31100000",fontsize=16,color="green",shape="box"];1896[label="xuu60000",fontsize=16,color="green",shape="box"];1897[label="xuu31100000",fontsize=16,color="green",shape="box"];1898[label="xuu60000",fontsize=16,color="green",shape="box"];1899[label="xuu31100000",fontsize=16,color="green",shape="box"];1900[label="xuu60000",fontsize=16,color="green",shape="box"];1901[label="xuu31100000",fontsize=16,color="green",shape="box"];1902[label="xuu60000",fontsize=16,color="green",shape="box"];1903[label="xuu31100000",fontsize=16,color="green",shape="box"];1904[label="xuu60000",fontsize=16,color="green",shape="box"];1905[label="xuu31100000",fontsize=16,color="green",shape="box"];1906[label="xuu60000",fontsize=16,color="green",shape="box"];1907[label="xuu31100000",fontsize=16,color="green",shape="box"];1908[label="xuu60000",fontsize=16,color="green",shape="box"];1909[label="xuu31100000",fontsize=16,color="green",shape="box"];1910[label="xuu60000",fontsize=16,color="green",shape="box"];1911[label="xuu31100000",fontsize=16,color="green",shape="box"];1912[label="xuu60000",fontsize=16,color="green",shape="box"];1913[label="xuu31100000",fontsize=16,color="green",shape="box"];1914[label="xuu60000",fontsize=16,color="green",shape="box"];1915[label="xuu31100000",fontsize=16,color="green",shape="box"];1916[label="xuu60000",fontsize=16,color="green",shape="box"];1917[label="xuu31100000",fontsize=16,color="green",shape="box"];1918[label="xuu60000",fontsize=16,color="green",shape="box"];1919[label="xuu31100000",fontsize=16,color="green",shape="box"];1920[label="xuu60000",fontsize=16,color="green",shape="box"];1921[label="xuu31100000",fontsize=16,color="green",shape="box"];1922[label="xuu60000",fontsize=16,color="green",shape="box"];1923[label="xuu31100000",fontsize=16,color="green",shape="box"];1924[label="xuu60000",fontsize=16,color="green",shape="box"];1925[label="xuu31100000",fontsize=16,color="green",shape="box"];1926[label="xuu60000",fontsize=16,color="green",shape="box"];1927[label="xuu31100000",fontsize=16,color="green",shape="box"];1928[label="xuu60000",fontsize=16,color="green",shape="box"];1929[label="xuu31100000",fontsize=16,color="green",shape="box"];1930[label="xuu60000",fontsize=16,color="green",shape="box"];1931[label="xuu31100000",fontsize=16,color="green",shape="box"];1932[label="xuu60000",fontsize=16,color="green",shape="box"];1933[label="xuu31100000",fontsize=16,color="green",shape="box"];1934[label="xuu60000",fontsize=16,color="green",shape="box"];1935[label="xuu31100000",fontsize=16,color="green",shape="box"];1936[label="xuu60000",fontsize=16,color="green",shape="box"];1937[label="xuu31100000",fontsize=16,color="green",shape="box"];1938[label="xuu60000",fontsize=16,color="green",shape="box"];1939[label="xuu31100000",fontsize=16,color="green",shape="box"];1940[label="xuu60000",fontsize=16,color="green",shape="box"];1941[label="xuu31100000",fontsize=16,color="green",shape="box"];1942[label="xuu60000",fontsize=16,color="green",shape="box"];1943[label="xuu31100000",fontsize=16,color="green",shape="box"];1944[label="xuu60000",fontsize=16,color="green",shape="box"];1945[label="xuu31100000",fontsize=16,color="green",shape="box"];1946 -> 546[label="",style="dashed", color="red", weight=0]; 1946[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1946 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1947 -> 547[label="",style="dashed", color="red", weight=0]; 1947[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1947 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1948 -> 548[label="",style="dashed", color="red", weight=0]; 1948[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1948 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1949 -> 549[label="",style="dashed", color="red", weight=0]; 1949[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1949 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1950 -> 550[label="",style="dashed", color="red", weight=0]; 1950[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1950 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1951 -> 551[label="",style="dashed", color="red", weight=0]; 1951[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1951 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2279[label="",style="dashed", color="magenta", weight=3]; 1952 -> 552[label="",style="dashed", color="red", weight=0]; 1952[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1952 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1953 -> 553[label="",style="dashed", color="red", weight=0]; 1953[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1953 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1953 -> 2283[label="",style="dashed", color="magenta", weight=3]; 1954 -> 554[label="",style="dashed", color="red", weight=0]; 1954[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1954 -> 2284[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2285[label="",style="dashed", color="magenta", weight=3]; 1955 -> 555[label="",style="dashed", color="red", weight=0]; 1955[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1955 -> 2286[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2287[label="",style="dashed", color="magenta", weight=3]; 1956 -> 556[label="",style="dashed", color="red", weight=0]; 1956[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1956 -> 2288[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1957 -> 557[label="",style="dashed", color="red", weight=0]; 1957[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1957 -> 2290[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2291[label="",style="dashed", color="magenta", weight=3]; 1958 -> 558[label="",style="dashed", color="red", weight=0]; 1958[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1958 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1959 -> 559[label="",style="dashed", color="red", weight=0]; 1959[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];1959 -> 2294[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2295[label="",style="dashed", color="magenta", weight=3]; 1960 -> 546[label="",style="dashed", color="red", weight=0]; 1960[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1960 -> 2296[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2297[label="",style="dashed", color="magenta", weight=3]; 1961 -> 547[label="",style="dashed", color="red", weight=0]; 1961[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1961 -> 2298[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2299[label="",style="dashed", color="magenta", weight=3]; 1962 -> 548[label="",style="dashed", color="red", weight=0]; 1962[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1962 -> 2300[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2301[label="",style="dashed", color="magenta", weight=3]; 1963 -> 549[label="",style="dashed", color="red", weight=0]; 1963[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1963 -> 2302[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2303[label="",style="dashed", color="magenta", weight=3]; 1964 -> 550[label="",style="dashed", color="red", weight=0]; 1964[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1964 -> 2304[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2305[label="",style="dashed", color="magenta", weight=3]; 1965 -> 551[label="",style="dashed", color="red", weight=0]; 1965[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1965 -> 2306[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2307[label="",style="dashed", color="magenta", weight=3]; 1966 -> 552[label="",style="dashed", color="red", weight=0]; 1966[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1966 -> 2308[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2309[label="",style="dashed", color="magenta", weight=3]; 1967 -> 553[label="",style="dashed", color="red", weight=0]; 1967[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1967 -> 2310[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2311[label="",style="dashed", color="magenta", weight=3]; 1968 -> 554[label="",style="dashed", color="red", weight=0]; 1968[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1968 -> 2312[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2313[label="",style="dashed", color="magenta", weight=3]; 1969 -> 555[label="",style="dashed", color="red", weight=0]; 1969[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1969 -> 2314[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2315[label="",style="dashed", color="magenta", weight=3]; 1970 -> 556[label="",style="dashed", color="red", weight=0]; 1970[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1970 -> 2316[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2317[label="",style="dashed", color="magenta", weight=3]; 1971 -> 557[label="",style="dashed", color="red", weight=0]; 1971[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1971 -> 2318[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2319[label="",style="dashed", color="magenta", weight=3]; 1972 -> 558[label="",style="dashed", color="red", weight=0]; 1972[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1972 -> 2320[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2321[label="",style="dashed", color="magenta", weight=3]; 1973 -> 559[label="",style="dashed", color="red", weight=0]; 1973[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];1973 -> 2322[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2323[label="",style="dashed", color="magenta", weight=3]; 1974[label="xuu60000",fontsize=16,color="green",shape="box"];1975[label="xuu31100000",fontsize=16,color="green",shape="box"];1976[label="xuu60000",fontsize=16,color="green",shape="box"];1977[label="xuu31100000",fontsize=16,color="green",shape="box"];1978[label="xuu60000",fontsize=16,color="green",shape="box"];1979[label="xuu31100000",fontsize=16,color="green",shape="box"];1980[label="xuu60000",fontsize=16,color="green",shape="box"];1981[label="xuu31100000",fontsize=16,color="green",shape="box"];1982[label="xuu60000",fontsize=16,color="green",shape="box"];1983[label="xuu31100000",fontsize=16,color="green",shape="box"];1984[label="xuu60000",fontsize=16,color="green",shape="box"];1985[label="xuu31100000",fontsize=16,color="green",shape="box"];1986[label="xuu60000",fontsize=16,color="green",shape="box"];1987[label="xuu31100000",fontsize=16,color="green",shape="box"];1988[label="xuu60000",fontsize=16,color="green",shape="box"];1989[label="xuu31100000",fontsize=16,color="green",shape="box"];1990[label="xuu60000",fontsize=16,color="green",shape="box"];1991[label="xuu31100000",fontsize=16,color="green",shape="box"];1992[label="xuu60000",fontsize=16,color="green",shape="box"];1993[label="xuu31100000",fontsize=16,color="green",shape="box"];1994[label="xuu60000",fontsize=16,color="green",shape="box"];1995[label="xuu31100000",fontsize=16,color="green",shape="box"];1996[label="xuu60000",fontsize=16,color="green",shape="box"];1997[label="xuu31100000",fontsize=16,color="green",shape="box"];1998[label="xuu60000",fontsize=16,color="green",shape="box"];1999[label="xuu31100000",fontsize=16,color="green",shape="box"];2000[label="xuu60000",fontsize=16,color="green",shape="box"];2001[label="xuu31100000",fontsize=16,color="green",shape="box"];2002[label="primEqNat (Succ xuu311000000) xuu60000",fontsize=16,color="burlywood",shape="box"];4378[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];2002 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 2324[label="",style="solid", color="burlywood", weight=3]; 4379[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];2002 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 2325[label="",style="solid", color="burlywood", weight=3]; 2003[label="primEqNat Zero xuu60000",fontsize=16,color="burlywood",shape="box"];4380[label="xuu60000/Succ xuu600000",fontsize=10,color="white",style="solid",shape="box"];2003 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 2326[label="",style="solid", color="burlywood", weight=3]; 4381[label="xuu60000/Zero",fontsize=10,color="white",style="solid",shape="box"];2003 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 2327[label="",style="solid", color="burlywood", weight=3]; 2004[label="xuu31100002 == xuu60002",fontsize=16,color="blue",shape="box"];4382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 2328[label="",style="solid", color="blue", weight=3]; 4383[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 2329[label="",style="solid", color="blue", weight=3]; 4384[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 2330[label="",style="solid", color="blue", weight=3]; 4385[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 2331[label="",style="solid", color="blue", weight=3]; 4386[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 2332[label="",style="solid", color="blue", weight=3]; 4387[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 2333[label="",style="solid", color="blue", weight=3]; 4388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 2334[label="",style="solid", color="blue", weight=3]; 4389[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 2335[label="",style="solid", color="blue", weight=3]; 4390[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 2336[label="",style="solid", color="blue", weight=3]; 4391[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 2337[label="",style="solid", color="blue", weight=3]; 4392[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 2338[label="",style="solid", color="blue", weight=3]; 4393[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 2339[label="",style="solid", color="blue", weight=3]; 4394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4394[label="",style="solid", color="blue", weight=9]; 4394 -> 2340[label="",style="solid", color="blue", weight=3]; 4395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 2341[label="",style="solid", color="blue", weight=3]; 2005[label="xuu31100001 == xuu60001",fontsize=16,color="blue",shape="box"];4396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 2342[label="",style="solid", color="blue", weight=3]; 4397[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 2343[label="",style="solid", color="blue", weight=3]; 4398[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 2344[label="",style="solid", color="blue", weight=3]; 4399[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 2345[label="",style="solid", color="blue", weight=3]; 4400[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 2346[label="",style="solid", color="blue", weight=3]; 4401[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2347[label="",style="solid", color="blue", weight=3]; 4402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2348[label="",style="solid", color="blue", weight=3]; 4403[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2349[label="",style="solid", color="blue", weight=3]; 4404[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2350[label="",style="solid", color="blue", weight=3]; 4405[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2351[label="",style="solid", color="blue", weight=3]; 4406[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2352[label="",style="solid", color="blue", weight=3]; 4407[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2353[label="",style="solid", color="blue", weight=3]; 4408[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2354[label="",style="solid", color="blue", weight=3]; 4409[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2005 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2355[label="",style="solid", color="blue", weight=3]; 2006 -> 546[label="",style="dashed", color="red", weight=0]; 2006[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2006 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2007 -> 547[label="",style="dashed", color="red", weight=0]; 2007[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2007 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2008 -> 548[label="",style="dashed", color="red", weight=0]; 2008[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2008 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2009 -> 549[label="",style="dashed", color="red", weight=0]; 2009[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2009 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2010 -> 550[label="",style="dashed", color="red", weight=0]; 2010[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2010 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2011 -> 551[label="",style="dashed", color="red", weight=0]; 2011[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2011 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2012 -> 552[label="",style="dashed", color="red", weight=0]; 2012[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2012 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2013 -> 553[label="",style="dashed", color="red", weight=0]; 2013[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2013 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2014 -> 554[label="",style="dashed", color="red", weight=0]; 2014[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2014 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2015 -> 555[label="",style="dashed", color="red", weight=0]; 2015[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2015 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2016 -> 556[label="",style="dashed", color="red", weight=0]; 2016[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2016 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2017 -> 557[label="",style="dashed", color="red", weight=0]; 2017[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2017 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2018 -> 558[label="",style="dashed", color="red", weight=0]; 2018[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2018 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2019 -> 559[label="",style="dashed", color="red", weight=0]; 2019[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2019 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2020 -> 547[label="",style="dashed", color="red", weight=0]; 2020[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2020 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2021 -> 554[label="",style="dashed", color="red", weight=0]; 2021[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2021 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2022 -> 547[label="",style="dashed", color="red", weight=0]; 2022[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2022 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2023 -> 554[label="",style="dashed", color="red", weight=0]; 2023[label="xuu31100000 == xuu60000",fontsize=16,color="magenta"];2023 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2024[label="False <= False",fontsize=16,color="black",shape="box"];2024 -> 2392[label="",style="solid", color="black", weight=3]; 2025[label="False <= True",fontsize=16,color="black",shape="box"];2025 -> 2393[label="",style="solid", color="black", weight=3]; 2026[label="True <= False",fontsize=16,color="black",shape="box"];2026 -> 2394[label="",style="solid", color="black", weight=3]; 2027[label="True <= True",fontsize=16,color="black",shape="box"];2027 -> 2395[label="",style="solid", color="black", weight=3]; 2028[label="(xuu580,xuu581) <= (xuu590,xuu591)",fontsize=16,color="black",shape="box"];2028 -> 2396[label="",style="solid", color="black", weight=3]; 2030 -> 186[label="",style="dashed", color="red", weight=0]; 2030[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2030 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2029[label="xuu190 /= GT",fontsize=16,color="black",shape="triangle"];2029 -> 2399[label="",style="solid", color="black", weight=3]; 2045[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2045 -> 2400[label="",style="solid", color="black", weight=3]; 2046[label="Nothing <= Just xuu590",fontsize=16,color="black",shape="box"];2046 -> 2401[label="",style="solid", color="black", weight=3]; 2047[label="Just xuu580 <= Nothing",fontsize=16,color="black",shape="box"];2047 -> 2402[label="",style="solid", color="black", weight=3]; 2048[label="Just xuu580 <= Just xuu590",fontsize=16,color="black",shape="box"];2048 -> 2403[label="",style="solid", color="black", weight=3]; 2049[label="LT <= LT",fontsize=16,color="black",shape="box"];2049 -> 2404[label="",style="solid", color="black", weight=3]; 2050[label="LT <= EQ",fontsize=16,color="black",shape="box"];2050 -> 2405[label="",style="solid", color="black", weight=3]; 2051[label="LT <= GT",fontsize=16,color="black",shape="box"];2051 -> 2406[label="",style="solid", color="black", weight=3]; 2052[label="EQ <= LT",fontsize=16,color="black",shape="box"];2052 -> 2407[label="",style="solid", color="black", weight=3]; 2053[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2053 -> 2408[label="",style="solid", color="black", weight=3]; 2054[label="EQ <= GT",fontsize=16,color="black",shape="box"];2054 -> 2409[label="",style="solid", color="black", weight=3]; 2055[label="GT <= LT",fontsize=16,color="black",shape="box"];2055 -> 2410[label="",style="solid", color="black", weight=3]; 2056[label="GT <= EQ",fontsize=16,color="black",shape="box"];2056 -> 2411[label="",style="solid", color="black", weight=3]; 2057[label="GT <= GT",fontsize=16,color="black",shape="box"];2057 -> 2412[label="",style="solid", color="black", weight=3]; 2031 -> 189[label="",style="dashed", color="red", weight=0]; 2031[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2031 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2032 -> 190[label="",style="dashed", color="red", weight=0]; 2032[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2032 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2033 -> 191[label="",style="dashed", color="red", weight=0]; 2033[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2033 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2058[label="(xuu580,xuu581,xuu582) <= (xuu590,xuu591,xuu592)",fontsize=16,color="black",shape="box"];2058 -> 2419[label="",style="solid", color="black", weight=3]; 2034 -> 193[label="",style="dashed", color="red", weight=0]; 2034[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2034 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2035 -> 194[label="",style="dashed", color="red", weight=0]; 2035[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2035 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2036 -> 195[label="",style="dashed", color="red", weight=0]; 2036[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2036 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2059[label="Left xuu580 <= Left xuu590",fontsize=16,color="black",shape="box"];2059 -> 2426[label="",style="solid", color="black", weight=3]; 2060[label="Left xuu580 <= Right xuu590",fontsize=16,color="black",shape="box"];2060 -> 2427[label="",style="solid", color="black", weight=3]; 2061[label="Right xuu580 <= Left xuu590",fontsize=16,color="black",shape="box"];2061 -> 2428[label="",style="solid", color="black", weight=3]; 2062[label="Right xuu580 <= Right xuu590",fontsize=16,color="black",shape="box"];2062 -> 2429[label="",style="solid", color="black", weight=3]; 2037 -> 197[label="",style="dashed", color="red", weight=0]; 2037[label="compare xuu58 xuu59",fontsize=16,color="magenta"];2037 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2063[label="GT",fontsize=16,color="green",shape="box"];2076[label="xuu71 <= xuu74",fontsize=16,color="blue",shape="box"];4410[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2432[label="",style="solid", color="blue", weight=3]; 4411[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2433[label="",style="solid", color="blue", weight=3]; 4412[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2434[label="",style="solid", color="blue", weight=3]; 4413[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2435[label="",style="solid", color="blue", weight=3]; 4414[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2436[label="",style="solid", color="blue", weight=3]; 4415[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2437[label="",style="solid", color="blue", weight=3]; 4416[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2438[label="",style="solid", color="blue", weight=3]; 4417[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2439[label="",style="solid", color="blue", weight=3]; 4418[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2440[label="",style="solid", color="blue", weight=3]; 4419[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2441[label="",style="solid", color="blue", weight=3]; 4420[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2442[label="",style="solid", color="blue", weight=3]; 4421[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2443[label="",style="solid", color="blue", weight=3]; 4422[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2444[label="",style="solid", color="blue", weight=3]; 4423[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2445[label="",style="solid", color="blue", weight=3]; 2077[label="xuu70 == xuu73",fontsize=16,color="blue",shape="box"];4424[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2446[label="",style="solid", color="blue", weight=3]; 4425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2447[label="",style="solid", color="blue", weight=3]; 4426[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2448[label="",style="solid", color="blue", weight=3]; 4427[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2449[label="",style="solid", color="blue", weight=3]; 4428[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2450[label="",style="solid", color="blue", weight=3]; 4429[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2451[label="",style="solid", color="blue", weight=3]; 4430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2452[label="",style="solid", color="blue", weight=3]; 4431[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2453[label="",style="solid", color="blue", weight=3]; 4432[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2454[label="",style="solid", color="blue", weight=3]; 4433[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2455[label="",style="solid", color="blue", weight=3]; 4434[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2456[label="",style="solid", color="blue", weight=3]; 4435[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2457[label="",style="solid", color="blue", weight=3]; 4436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2458[label="",style="solid", color="blue", weight=3]; 4437[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2459[label="",style="solid", color="blue", weight=3]; 2078 -> 1312[label="",style="dashed", color="red", weight=0]; 2078[label="xuu70 < xuu73",fontsize=16,color="magenta"];2078 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2079 -> 1313[label="",style="dashed", color="red", weight=0]; 2079[label="xuu70 < xuu73",fontsize=16,color="magenta"];2079 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2080 -> 1314[label="",style="dashed", color="red", weight=0]; 2080[label="xuu70 < xuu73",fontsize=16,color="magenta"];2080 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2081 -> 1315[label="",style="dashed", color="red", weight=0]; 2081[label="xuu70 < xuu73",fontsize=16,color="magenta"];2081 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2082 -> 1316[label="",style="dashed", color="red", weight=0]; 2082[label="xuu70 < xuu73",fontsize=16,color="magenta"];2082 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2083 -> 1317[label="",style="dashed", color="red", weight=0]; 2083[label="xuu70 < xuu73",fontsize=16,color="magenta"];2083 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2084 -> 1318[label="",style="dashed", color="red", weight=0]; 2084[label="xuu70 < xuu73",fontsize=16,color="magenta"];2084 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2085 -> 1319[label="",style="dashed", color="red", weight=0]; 2085[label="xuu70 < xuu73",fontsize=16,color="magenta"];2085 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2086 -> 1320[label="",style="dashed", color="red", weight=0]; 2086[label="xuu70 < xuu73",fontsize=16,color="magenta"];2086 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2087 -> 1321[label="",style="dashed", color="red", weight=0]; 2087[label="xuu70 < xuu73",fontsize=16,color="magenta"];2087 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2088 -> 1322[label="",style="dashed", color="red", weight=0]; 2088[label="xuu70 < xuu73",fontsize=16,color="magenta"];2088 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2089 -> 1323[label="",style="dashed", color="red", weight=0]; 2089[label="xuu70 < xuu73",fontsize=16,color="magenta"];2089 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2090 -> 1324[label="",style="dashed", color="red", weight=0]; 2090[label="xuu70 < xuu73",fontsize=16,color="magenta"];2090 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1325[label="",style="dashed", color="red", weight=0]; 2091[label="xuu70 < xuu73",fontsize=16,color="magenta"];2091 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2092[label="False || xuu195",fontsize=16,color="black",shape="box"];2092 -> 2488[label="",style="solid", color="black", weight=3]; 2093[label="True || xuu195",fontsize=16,color="black",shape="box"];2093 -> 2489[label="",style="solid", color="black", weight=3]; 2094[label="xuu72",fontsize=16,color="green",shape="box"];2095[label="xuu69",fontsize=16,color="green",shape="box"];2096[label="xuu72",fontsize=16,color="green",shape="box"];2097[label="xuu69",fontsize=16,color="green",shape="box"];2098[label="xuu72",fontsize=16,color="green",shape="box"];2099[label="xuu69",fontsize=16,color="green",shape="box"];2100[label="xuu72",fontsize=16,color="green",shape="box"];2101[label="xuu69",fontsize=16,color="green",shape="box"];2102[label="xuu72",fontsize=16,color="green",shape="box"];2103[label="xuu69",fontsize=16,color="green",shape="box"];2104[label="xuu72",fontsize=16,color="green",shape="box"];2105[label="xuu69",fontsize=16,color="green",shape="box"];2106[label="xuu72",fontsize=16,color="green",shape="box"];2107[label="xuu69",fontsize=16,color="green",shape="box"];2108[label="xuu72",fontsize=16,color="green",shape="box"];2109[label="xuu69",fontsize=16,color="green",shape="box"];2110[label="xuu72",fontsize=16,color="green",shape="box"];2111[label="xuu69",fontsize=16,color="green",shape="box"];2112[label="xuu72",fontsize=16,color="green",shape="box"];2113[label="xuu69",fontsize=16,color="green",shape="box"];2114[label="xuu72",fontsize=16,color="green",shape="box"];2115[label="xuu69",fontsize=16,color="green",shape="box"];2116[label="xuu72",fontsize=16,color="green",shape="box"];2117[label="xuu69",fontsize=16,color="green",shape="box"];2118[label="xuu72",fontsize=16,color="green",shape="box"];2119[label="xuu69",fontsize=16,color="green",shape="box"];2120[label="xuu72",fontsize=16,color="green",shape="box"];2121[label="xuu69",fontsize=16,color="green",shape="box"];2122[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) False",fontsize=16,color="black",shape="box"];2122 -> 2490[label="",style="solid", color="black", weight=3]; 2123[label="compare1 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="black",shape="box"];2123 -> 2491[label="",style="solid", color="black", weight=3]; 2124[label="True",fontsize=16,color="green",shape="box"];2125[label="GT",fontsize=16,color="green",shape="box"];2126[label="GT",fontsize=16,color="green",shape="box"];2127 -> 2492[label="",style="dashed", color="red", weight=0]; 2127[label="primPlusNat (primMulNat xuu600000 (Succ xuu311000100)) (Succ xuu311000100)",fontsize=16,color="magenta"];2127 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2128[label="Zero",fontsize=16,color="green",shape="box"];2129[label="Zero",fontsize=16,color="green",shape="box"];2130[label="Zero",fontsize=16,color="green",shape="box"];2168 -> 1754[label="",style="dashed", color="red", weight=0]; 2168[label="FiniteMap.sizeFM xuu63",fontsize=16,color="magenta"];2168 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2169[label="xuu41",fontsize=16,color="green",shape="box"];2171 -> 1743[label="",style="dashed", color="red", weight=0]; 2171[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2171 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2170[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 xuu198",fontsize=16,color="burlywood",shape="triangle"];4438[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4438[label="",style="solid", color="burlywood", weight=9]; 4438 -> 2503[label="",style="solid", color="burlywood", weight=3]; 4439[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4439[label="",style="solid", color="burlywood", weight=9]; 4439 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2176[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 FiniteMap.EmptyFM xuu63 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2176 -> 2505[label="",style="solid", color="black", weight=3]; 2177[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2177 -> 2506[label="",style="solid", color="black", weight=3]; 2851[label="Succ (Succ (primPlusNat xuu19700 xuu19600))",fontsize=16,color="green",shape="box"];2851 -> 2862[label="",style="dashed", color="green", weight=3]; 2852[label="Succ xuu19700",fontsize=16,color="green",shape="box"];2853[label="Succ xuu19600",fontsize=16,color="green",shape="box"];2854[label="Zero",fontsize=16,color="green",shape="box"];2855[label="xuu19700",fontsize=16,color="green",shape="box"];2856[label="xuu19600",fontsize=16,color="green",shape="box"];3683[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3683 -> 3685[label="",style="solid", color="black", weight=3]; 3684[label="FiniteMap.mkBranchRight_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3684 -> 3686[label="",style="solid", color="black", weight=3]; 2181[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu600 : xuu601) xuu61 xuu29 xuu64 (xuu600 : xuu601) xuu61 xuu29 xuu64 True",fontsize=16,color="black",shape="box"];2181 -> 2510[label="",style="solid", color="black", weight=3]; 2182[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2182 -> 2511[label="",style="solid", color="black", weight=3]; 2183[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2183 -> 2512[label="",style="solid", color="black", weight=3]; 2185 -> 1319[label="",style="dashed", color="red", weight=0]; 2185[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2185 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2184[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu203",fontsize=16,color="burlywood",shape="triangle"];4440[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4440[label="",style="solid", color="burlywood", weight=9]; 4440 -> 2515[label="",style="solid", color="burlywood", weight=3]; 4441[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 2516[label="",style="solid", color="burlywood", weight=3]; 2190[label="xuu101",fontsize=16,color="green",shape="box"];2191[label="xuu99",fontsize=16,color="green",shape="box"];2192[label="xuu101",fontsize=16,color="green",shape="box"];2193[label="xuu99",fontsize=16,color="green",shape="box"];2194[label="xuu101",fontsize=16,color="green",shape="box"];2195[label="xuu99",fontsize=16,color="green",shape="box"];2196[label="xuu101",fontsize=16,color="green",shape="box"];2197[label="xuu99",fontsize=16,color="green",shape="box"];2198[label="xuu101",fontsize=16,color="green",shape="box"];2199[label="xuu99",fontsize=16,color="green",shape="box"];2200[label="xuu101",fontsize=16,color="green",shape="box"];2201[label="xuu99",fontsize=16,color="green",shape="box"];2202[label="xuu101",fontsize=16,color="green",shape="box"];2203[label="xuu99",fontsize=16,color="green",shape="box"];2204[label="xuu101",fontsize=16,color="green",shape="box"];2205[label="xuu99",fontsize=16,color="green",shape="box"];2206[label="xuu101",fontsize=16,color="green",shape="box"];2207[label="xuu99",fontsize=16,color="green",shape="box"];2208[label="xuu101",fontsize=16,color="green",shape="box"];2209[label="xuu99",fontsize=16,color="green",shape="box"];2210[label="xuu101",fontsize=16,color="green",shape="box"];2211[label="xuu99",fontsize=16,color="green",shape="box"];2212[label="xuu101",fontsize=16,color="green",shape="box"];2213[label="xuu99",fontsize=16,color="green",shape="box"];2214[label="xuu101",fontsize=16,color="green",shape="box"];2215[label="xuu99",fontsize=16,color="green",shape="box"];2216[label="xuu101",fontsize=16,color="green",shape="box"];2217[label="xuu99",fontsize=16,color="green",shape="box"];2218[label="compare0 (xuu156,xuu157) (xuu158,xuu159) otherwise",fontsize=16,color="black",shape="box"];2218 -> 2517[label="",style="solid", color="black", weight=3]; 2219[label="LT",fontsize=16,color="green",shape="box"];2220[label="xuu60000",fontsize=16,color="green",shape="box"];2221[label="xuu31100000",fontsize=16,color="green",shape="box"];2222[label="xuu60000",fontsize=16,color="green",shape="box"];2223[label="xuu31100000",fontsize=16,color="green",shape="box"];2224[label="xuu60000",fontsize=16,color="green",shape="box"];2225[label="xuu31100000",fontsize=16,color="green",shape="box"];2226[label="xuu60000",fontsize=16,color="green",shape="box"];2227[label="xuu31100000",fontsize=16,color="green",shape="box"];2228[label="xuu60000",fontsize=16,color="green",shape="box"];2229[label="xuu31100000",fontsize=16,color="green",shape="box"];2230[label="xuu60000",fontsize=16,color="green",shape="box"];2231[label="xuu31100000",fontsize=16,color="green",shape="box"];2232[label="xuu60000",fontsize=16,color="green",shape="box"];2233[label="xuu31100000",fontsize=16,color="green",shape="box"];2234[label="xuu60000",fontsize=16,color="green",shape="box"];2235[label="xuu31100000",fontsize=16,color="green",shape="box"];2236[label="xuu60000",fontsize=16,color="green",shape="box"];2237[label="xuu31100000",fontsize=16,color="green",shape="box"];2238[label="xuu60000",fontsize=16,color="green",shape="box"];2239[label="xuu31100000",fontsize=16,color="green",shape="box"];2240[label="xuu60000",fontsize=16,color="green",shape="box"];2241[label="xuu31100000",fontsize=16,color="green",shape="box"];2242[label="xuu60000",fontsize=16,color="green",shape="box"];2243[label="xuu31100000",fontsize=16,color="green",shape="box"];2244[label="xuu60000",fontsize=16,color="green",shape="box"];2245[label="xuu31100000",fontsize=16,color="green",shape="box"];2246[label="xuu60000",fontsize=16,color="green",shape="box"];2247[label="xuu31100000",fontsize=16,color="green",shape="box"];2248 -> 1581[label="",style="dashed", color="red", weight=0]; 2248[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2248 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2249[label="False",fontsize=16,color="green",shape="box"];2250[label="False",fontsize=16,color="green",shape="box"];2251[label="True",fontsize=16,color="green",shape="box"];2252[label="False",fontsize=16,color="green",shape="box"];2253[label="True",fontsize=16,color="green",shape="box"];2254 -> 1581[label="",style="dashed", color="red", weight=0]; 2254[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2254 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2255[label="False",fontsize=16,color="green",shape="box"];2256[label="False",fontsize=16,color="green",shape="box"];2257[label="True",fontsize=16,color="green",shape="box"];2258[label="False",fontsize=16,color="green",shape="box"];2259[label="True",fontsize=16,color="green",shape="box"];2260[label="xuu31100001",fontsize=16,color="green",shape="box"];2261[label="xuu60000",fontsize=16,color="green",shape="box"];2262[label="xuu31100000",fontsize=16,color="green",shape="box"];2263[label="xuu60001",fontsize=16,color="green",shape="box"];2264[label="xuu31100001",fontsize=16,color="green",shape="box"];2265[label="xuu60000",fontsize=16,color="green",shape="box"];2266[label="xuu31100000",fontsize=16,color="green",shape="box"];2267[label="xuu60001",fontsize=16,color="green",shape="box"];2268[label="xuu60001",fontsize=16,color="green",shape="box"];2269[label="xuu31100001",fontsize=16,color="green",shape="box"];2270[label="xuu60001",fontsize=16,color="green",shape="box"];2271[label="xuu31100001",fontsize=16,color="green",shape="box"];2272[label="xuu60001",fontsize=16,color="green",shape="box"];2273[label="xuu31100001",fontsize=16,color="green",shape="box"];2274[label="xuu60001",fontsize=16,color="green",shape="box"];2275[label="xuu31100001",fontsize=16,color="green",shape="box"];2276[label="xuu60001",fontsize=16,color="green",shape="box"];2277[label="xuu31100001",fontsize=16,color="green",shape="box"];2278[label="xuu60001",fontsize=16,color="green",shape="box"];2279[label="xuu31100001",fontsize=16,color="green",shape="box"];2280[label="xuu60001",fontsize=16,color="green",shape="box"];2281[label="xuu31100001",fontsize=16,color="green",shape="box"];2282[label="xuu60001",fontsize=16,color="green",shape="box"];2283[label="xuu31100001",fontsize=16,color="green",shape="box"];2284[label="xuu60001",fontsize=16,color="green",shape="box"];2285[label="xuu31100001",fontsize=16,color="green",shape="box"];2286[label="xuu60001",fontsize=16,color="green",shape="box"];2287[label="xuu31100001",fontsize=16,color="green",shape="box"];2288[label="xuu60001",fontsize=16,color="green",shape="box"];2289[label="xuu31100001",fontsize=16,color="green",shape="box"];2290[label="xuu60001",fontsize=16,color="green",shape="box"];2291[label="xuu31100001",fontsize=16,color="green",shape="box"];2292[label="xuu60001",fontsize=16,color="green",shape="box"];2293[label="xuu31100001",fontsize=16,color="green",shape="box"];2294[label="xuu60001",fontsize=16,color="green",shape="box"];2295[label="xuu31100001",fontsize=16,color="green",shape="box"];2296[label="xuu60000",fontsize=16,color="green",shape="box"];2297[label="xuu31100000",fontsize=16,color="green",shape="box"];2298[label="xuu60000",fontsize=16,color="green",shape="box"];2299[label="xuu31100000",fontsize=16,color="green",shape="box"];2300[label="xuu60000",fontsize=16,color="green",shape="box"];2301[label="xuu31100000",fontsize=16,color="green",shape="box"];2302[label="xuu60000",fontsize=16,color="green",shape="box"];2303[label="xuu31100000",fontsize=16,color="green",shape="box"];2304[label="xuu60000",fontsize=16,color="green",shape="box"];2305[label="xuu31100000",fontsize=16,color="green",shape="box"];2306[label="xuu60000",fontsize=16,color="green",shape="box"];2307[label="xuu31100000",fontsize=16,color="green",shape="box"];2308[label="xuu60000",fontsize=16,color="green",shape="box"];2309[label="xuu31100000",fontsize=16,color="green",shape="box"];2310[label="xuu60000",fontsize=16,color="green",shape="box"];2311[label="xuu31100000",fontsize=16,color="green",shape="box"];2312[label="xuu60000",fontsize=16,color="green",shape="box"];2313[label="xuu31100000",fontsize=16,color="green",shape="box"];2314[label="xuu60000",fontsize=16,color="green",shape="box"];2315[label="xuu31100000",fontsize=16,color="green",shape="box"];2316[label="xuu60000",fontsize=16,color="green",shape="box"];2317[label="xuu31100000",fontsize=16,color="green",shape="box"];2318[label="xuu60000",fontsize=16,color="green",shape="box"];2319[label="xuu31100000",fontsize=16,color="green",shape="box"];2320[label="xuu60000",fontsize=16,color="green",shape="box"];2321[label="xuu31100000",fontsize=16,color="green",shape="box"];2322[label="xuu60000",fontsize=16,color="green",shape="box"];2323[label="xuu31100000",fontsize=16,color="green",shape="box"];2324[label="primEqNat (Succ xuu311000000) (Succ xuu600000)",fontsize=16,color="black",shape="box"];2324 -> 2522[label="",style="solid", color="black", weight=3]; 2325[label="primEqNat (Succ xuu311000000) Zero",fontsize=16,color="black",shape="box"];2325 -> 2523[label="",style="solid", color="black", weight=3]; 2326[label="primEqNat Zero (Succ xuu600000)",fontsize=16,color="black",shape="box"];2326 -> 2524[label="",style="solid", color="black", weight=3]; 2327[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2327 -> 2525[label="",style="solid", color="black", weight=3]; 2328 -> 546[label="",style="dashed", color="red", weight=0]; 2328[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2328 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2329 -> 547[label="",style="dashed", color="red", weight=0]; 2329[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2329 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2330 -> 548[label="",style="dashed", color="red", weight=0]; 2330[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2330 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2331 -> 549[label="",style="dashed", color="red", weight=0]; 2331[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2331 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2332 -> 550[label="",style="dashed", color="red", weight=0]; 2332[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2332 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2333 -> 551[label="",style="dashed", color="red", weight=0]; 2333[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2333 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2334 -> 552[label="",style="dashed", color="red", weight=0]; 2334[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2334 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2335 -> 553[label="",style="dashed", color="red", weight=0]; 2335[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2335 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2336 -> 554[label="",style="dashed", color="red", weight=0]; 2336[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2336 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2337 -> 555[label="",style="dashed", color="red", weight=0]; 2337[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2337 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2338 -> 556[label="",style="dashed", color="red", weight=0]; 2338[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2338 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2339 -> 557[label="",style="dashed", color="red", weight=0]; 2339[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2339 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2340 -> 558[label="",style="dashed", color="red", weight=0]; 2340[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2340 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2341 -> 559[label="",style="dashed", color="red", weight=0]; 2341[label="xuu31100002 == xuu60002",fontsize=16,color="magenta"];2341 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2342 -> 546[label="",style="dashed", color="red", weight=0]; 2342[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2342 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2343 -> 547[label="",style="dashed", color="red", weight=0]; 2343[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2343 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2344 -> 548[label="",style="dashed", color="red", weight=0]; 2344[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2344 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2345 -> 549[label="",style="dashed", color="red", weight=0]; 2345[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2345 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2346 -> 550[label="",style="dashed", color="red", weight=0]; 2346[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2346 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2347 -> 551[label="",style="dashed", color="red", weight=0]; 2347[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2347 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2348 -> 552[label="",style="dashed", color="red", weight=0]; 2348[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2348 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2349 -> 553[label="",style="dashed", color="red", weight=0]; 2349[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2349 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2350 -> 554[label="",style="dashed", color="red", weight=0]; 2350[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2350 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2351 -> 555[label="",style="dashed", color="red", weight=0]; 2351[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2351 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2352 -> 556[label="",style="dashed", color="red", weight=0]; 2352[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2352 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2353 -> 557[label="",style="dashed", color="red", weight=0]; 2353[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2353 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2354 -> 558[label="",style="dashed", color="red", weight=0]; 2354[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2354 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2355 -> 559[label="",style="dashed", color="red", weight=0]; 2355[label="xuu31100001 == xuu60001",fontsize=16,color="magenta"];2355 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2356[label="xuu60000",fontsize=16,color="green",shape="box"];2357[label="xuu31100000",fontsize=16,color="green",shape="box"];2358[label="xuu60000",fontsize=16,color="green",shape="box"];2359[label="xuu31100000",fontsize=16,color="green",shape="box"];2360[label="xuu60000",fontsize=16,color="green",shape="box"];2361[label="xuu31100000",fontsize=16,color="green",shape="box"];2362[label="xuu60000",fontsize=16,color="green",shape="box"];2363[label="xuu31100000",fontsize=16,color="green",shape="box"];2364[label="xuu60000",fontsize=16,color="green",shape="box"];2365[label="xuu31100000",fontsize=16,color="green",shape="box"];2366[label="xuu60000",fontsize=16,color="green",shape="box"];2367[label="xuu31100000",fontsize=16,color="green",shape="box"];2368[label="xuu60000",fontsize=16,color="green",shape="box"];2369[label="xuu31100000",fontsize=16,color="green",shape="box"];2370[label="xuu60000",fontsize=16,color="green",shape="box"];2371[label="xuu31100000",fontsize=16,color="green",shape="box"];2372[label="xuu60000",fontsize=16,color="green",shape="box"];2373[label="xuu31100000",fontsize=16,color="green",shape="box"];2374[label="xuu60000",fontsize=16,color="green",shape="box"];2375[label="xuu31100000",fontsize=16,color="green",shape="box"];2376[label="xuu60000",fontsize=16,color="green",shape="box"];2377[label="xuu31100000",fontsize=16,color="green",shape="box"];2378[label="xuu60000",fontsize=16,color="green",shape="box"];2379[label="xuu31100000",fontsize=16,color="green",shape="box"];2380[label="xuu60000",fontsize=16,color="green",shape="box"];2381[label="xuu31100000",fontsize=16,color="green",shape="box"];2382[label="xuu60000",fontsize=16,color="green",shape="box"];2383[label="xuu31100000",fontsize=16,color="green",shape="box"];2384[label="xuu60001",fontsize=16,color="green",shape="box"];2385[label="xuu31100001",fontsize=16,color="green",shape="box"];2386[label="xuu60001",fontsize=16,color="green",shape="box"];2387[label="xuu31100001",fontsize=16,color="green",shape="box"];2388[label="xuu60000",fontsize=16,color="green",shape="box"];2389[label="xuu31100000",fontsize=16,color="green",shape="box"];2390[label="xuu60000",fontsize=16,color="green",shape="box"];2391[label="xuu31100000",fontsize=16,color="green",shape="box"];2392[label="True",fontsize=16,color="green",shape="box"];2393[label="True",fontsize=16,color="green",shape="box"];2394[label="False",fontsize=16,color="green",shape="box"];2395[label="True",fontsize=16,color="green",shape="box"];2396 -> 2066[label="",style="dashed", color="red", weight=0]; 2396[label="xuu580 < xuu590 || xuu580 == xuu590 && xuu581 <= xuu591",fontsize=16,color="magenta"];2396 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2397[label="xuu59",fontsize=16,color="green",shape="box"];2398[label="xuu58",fontsize=16,color="green",shape="box"];2399 -> 2584[label="",style="dashed", color="red", weight=0]; 2399[label="not (xuu190 == GT)",fontsize=16,color="magenta"];2399 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2400[label="True",fontsize=16,color="green",shape="box"];2401[label="True",fontsize=16,color="green",shape="box"];2402[label="False",fontsize=16,color="green",shape="box"];2403[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4442[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2594[label="",style="solid", color="blue", weight=3]; 4443[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2595[label="",style="solid", color="blue", weight=3]; 4444[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2596[label="",style="solid", color="blue", weight=3]; 4445[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2597[label="",style="solid", color="blue", weight=3]; 4446[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2598[label="",style="solid", color="blue", weight=3]; 4447[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2599[label="",style="solid", color="blue", weight=3]; 4448[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2600[label="",style="solid", color="blue", weight=3]; 4449[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2601[label="",style="solid", color="blue", weight=3]; 4450[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2602[label="",style="solid", color="blue", weight=3]; 4451[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2603[label="",style="solid", color="blue", weight=3]; 4452[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2604[label="",style="solid", color="blue", weight=3]; 4453[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2605[label="",style="solid", color="blue", weight=3]; 4454[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2606[label="",style="solid", color="blue", weight=3]; 4455[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2403 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2607[label="",style="solid", color="blue", weight=3]; 2404[label="True",fontsize=16,color="green",shape="box"];2405[label="True",fontsize=16,color="green",shape="box"];2406[label="True",fontsize=16,color="green",shape="box"];2407[label="False",fontsize=16,color="green",shape="box"];2408[label="True",fontsize=16,color="green",shape="box"];2409[label="True",fontsize=16,color="green",shape="box"];2410[label="False",fontsize=16,color="green",shape="box"];2411[label="False",fontsize=16,color="green",shape="box"];2412[label="True",fontsize=16,color="green",shape="box"];2413[label="xuu59",fontsize=16,color="green",shape="box"];2414[label="xuu58",fontsize=16,color="green",shape="box"];2415[label="xuu59",fontsize=16,color="green",shape="box"];2416[label="xuu58",fontsize=16,color="green",shape="box"];2417[label="xuu59",fontsize=16,color="green",shape="box"];2418[label="xuu58",fontsize=16,color="green",shape="box"];2419 -> 2066[label="",style="dashed", color="red", weight=0]; 2419[label="xuu580 < xuu590 || xuu580 == xuu590 && (xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592)",fontsize=16,color="magenta"];2419 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2420[label="xuu59",fontsize=16,color="green",shape="box"];2421[label="xuu58",fontsize=16,color="green",shape="box"];2422[label="xuu59",fontsize=16,color="green",shape="box"];2423[label="xuu58",fontsize=16,color="green",shape="box"];2424[label="xuu59",fontsize=16,color="green",shape="box"];2425[label="xuu58",fontsize=16,color="green",shape="box"];2426[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4456[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2610[label="",style="solid", color="blue", weight=3]; 4457[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2611[label="",style="solid", color="blue", weight=3]; 4458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 2612[label="",style="solid", color="blue", weight=3]; 4459[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 2613[label="",style="solid", color="blue", weight=3]; 4460[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 2614[label="",style="solid", color="blue", weight=3]; 4461[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 2615[label="",style="solid", color="blue", weight=3]; 4462[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 2616[label="",style="solid", color="blue", weight=3]; 4463[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 2617[label="",style="solid", color="blue", weight=3]; 4464[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 2618[label="",style="solid", color="blue", weight=3]; 4465[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 2619[label="",style="solid", color="blue", weight=3]; 4466[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 2620[label="",style="solid", color="blue", weight=3]; 4467[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 2621[label="",style="solid", color="blue", weight=3]; 4468[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 2622[label="",style="solid", color="blue", weight=3]; 4469[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2426 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 2623[label="",style="solid", color="blue", weight=3]; 2427[label="True",fontsize=16,color="green",shape="box"];2428[label="False",fontsize=16,color="green",shape="box"];2429[label="xuu580 <= xuu590",fontsize=16,color="blue",shape="box"];4470[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 2624[label="",style="solid", color="blue", weight=3]; 4471[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4471[label="",style="solid", color="blue", weight=9]; 4471 -> 2625[label="",style="solid", color="blue", weight=3]; 4472[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4472[label="",style="solid", color="blue", weight=9]; 4472 -> 2626[label="",style="solid", color="blue", weight=3]; 4473[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4473[label="",style="solid", color="blue", weight=9]; 4473 -> 2627[label="",style="solid", color="blue", weight=3]; 4474[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4474[label="",style="solid", color="blue", weight=9]; 4474 -> 2628[label="",style="solid", color="blue", weight=3]; 4475[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4475[label="",style="solid", color="blue", weight=9]; 4475 -> 2629[label="",style="solid", color="blue", weight=3]; 4476[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 2630[label="",style="solid", color="blue", weight=3]; 4477[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 2631[label="",style="solid", color="blue", weight=3]; 4478[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 2632[label="",style="solid", color="blue", weight=3]; 4479[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 2633[label="",style="solid", color="blue", weight=3]; 4480[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 2634[label="",style="solid", color="blue", weight=3]; 4481[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 2635[label="",style="solid", color="blue", weight=3]; 4482[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 2636[label="",style="solid", color="blue", weight=3]; 4483[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2429 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 2637[label="",style="solid", color="blue", weight=3]; 2430[label="xuu59",fontsize=16,color="green",shape="box"];2431[label="xuu58",fontsize=16,color="green",shape="box"];2432 -> 1367[label="",style="dashed", color="red", weight=0]; 2432[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2432 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1368[label="",style="dashed", color="red", weight=0]; 2433[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2433 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1369[label="",style="dashed", color="red", weight=0]; 2434[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2434 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1370[label="",style="dashed", color="red", weight=0]; 2435[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2435 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1371[label="",style="dashed", color="red", weight=0]; 2436[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2436 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1372[label="",style="dashed", color="red", weight=0]; 2437[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2437 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1373[label="",style="dashed", color="red", weight=0]; 2438[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2438 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1374[label="",style="dashed", color="red", weight=0]; 2439[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2439 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1375[label="",style="dashed", color="red", weight=0]; 2440[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2440 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1376[label="",style="dashed", color="red", weight=0]; 2441[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2441 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1377[label="",style="dashed", color="red", weight=0]; 2442[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2442 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1378[label="",style="dashed", color="red", weight=0]; 2443[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2443 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1379[label="",style="dashed", color="red", weight=0]; 2444[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2444 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2445 -> 1380[label="",style="dashed", color="red", weight=0]; 2445[label="xuu71 <= xuu74",fontsize=16,color="magenta"];2445 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2446 -> 550[label="",style="dashed", color="red", weight=0]; 2446[label="xuu70 == xuu73",fontsize=16,color="magenta"];2446 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2447 -> 553[label="",style="dashed", color="red", weight=0]; 2447[label="xuu70 == xuu73",fontsize=16,color="magenta"];2447 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2448 -> 546[label="",style="dashed", color="red", weight=0]; 2448[label="xuu70 == xuu73",fontsize=16,color="magenta"];2448 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2449 -> 555[label="",style="dashed", color="red", weight=0]; 2449[label="xuu70 == xuu73",fontsize=16,color="magenta"];2449 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2450 -> 559[label="",style="dashed", color="red", weight=0]; 2450[label="xuu70 == xuu73",fontsize=16,color="magenta"];2450 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2451 -> 554[label="",style="dashed", color="red", weight=0]; 2451[label="xuu70 == xuu73",fontsize=16,color="magenta"];2451 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2452 -> 551[label="",style="dashed", color="red", weight=0]; 2452[label="xuu70 == xuu73",fontsize=16,color="magenta"];2452 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2453 -> 547[label="",style="dashed", color="red", weight=0]; 2453[label="xuu70 == xuu73",fontsize=16,color="magenta"];2453 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2454 -> 557[label="",style="dashed", color="red", weight=0]; 2454[label="xuu70 == xuu73",fontsize=16,color="magenta"];2454 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2455 -> 548[label="",style="dashed", color="red", weight=0]; 2455[label="xuu70 == xuu73",fontsize=16,color="magenta"];2455 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2456 -> 549[label="",style="dashed", color="red", weight=0]; 2456[label="xuu70 == xuu73",fontsize=16,color="magenta"];2456 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2457 -> 556[label="",style="dashed", color="red", weight=0]; 2457[label="xuu70 == xuu73",fontsize=16,color="magenta"];2457 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2458 -> 552[label="",style="dashed", color="red", weight=0]; 2458[label="xuu70 == xuu73",fontsize=16,color="magenta"];2458 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2459 -> 558[label="",style="dashed", color="red", weight=0]; 2459[label="xuu70 == xuu73",fontsize=16,color="magenta"];2459 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2460[label="xuu70",fontsize=16,color="green",shape="box"];2461[label="xuu73",fontsize=16,color="green",shape="box"];2462[label="xuu70",fontsize=16,color="green",shape="box"];2463[label="xuu73",fontsize=16,color="green",shape="box"];2464[label="xuu70",fontsize=16,color="green",shape="box"];2465[label="xuu73",fontsize=16,color="green",shape="box"];2466[label="xuu70",fontsize=16,color="green",shape="box"];2467[label="xuu73",fontsize=16,color="green",shape="box"];2468[label="xuu70",fontsize=16,color="green",shape="box"];2469[label="xuu73",fontsize=16,color="green",shape="box"];2470[label="xuu70",fontsize=16,color="green",shape="box"];2471[label="xuu73",fontsize=16,color="green",shape="box"];2472[label="xuu70",fontsize=16,color="green",shape="box"];2473[label="xuu73",fontsize=16,color="green",shape="box"];2474[label="xuu70",fontsize=16,color="green",shape="box"];2475[label="xuu73",fontsize=16,color="green",shape="box"];2476[label="xuu70",fontsize=16,color="green",shape="box"];2477[label="xuu73",fontsize=16,color="green",shape="box"];2478[label="xuu70",fontsize=16,color="green",shape="box"];2479[label="xuu73",fontsize=16,color="green",shape="box"];2480[label="xuu70",fontsize=16,color="green",shape="box"];2481[label="xuu73",fontsize=16,color="green",shape="box"];2482[label="xuu70",fontsize=16,color="green",shape="box"];2483[label="xuu73",fontsize=16,color="green",shape="box"];2484[label="xuu70",fontsize=16,color="green",shape="box"];2485[label="xuu73",fontsize=16,color="green",shape="box"];2486[label="xuu70",fontsize=16,color="green",shape="box"];2487[label="xuu73",fontsize=16,color="green",shape="box"];2488[label="xuu195",fontsize=16,color="green",shape="box"];2489[label="True",fontsize=16,color="green",shape="box"];2490[label="compare0 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) otherwise",fontsize=16,color="black",shape="box"];2490 -> 2694[label="",style="solid", color="black", weight=3]; 2491[label="LT",fontsize=16,color="green",shape="box"];2493 -> 1274[label="",style="dashed", color="red", weight=0]; 2493[label="primMulNat xuu600000 (Succ xuu311000100)",fontsize=16,color="magenta"];2493 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2494[label="",style="dashed", color="red", weight=0]; 2492[label="primPlusNat xuu207 (Succ xuu311000100)",fontsize=16,color="magenta"];2492 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2500[label="xuu63",fontsize=16,color="green",shape="box"];2501 -> 2146[label="",style="dashed", color="red", weight=0]; 2501[label="FiniteMap.mkBalBranch6Size_l [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2502 -> 454[label="",style="dashed", color="red", weight=0]; 2502[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2502 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2503[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 False",fontsize=16,color="black",shape="box"];2503 -> 2701[label="",style="solid", color="black", weight=3]; 2504[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];2504 -> 2702[label="",style="solid", color="black", weight=3]; 2505[label="error []",fontsize=16,color="red",shape="box"];2506[label="FiniteMap.mkBalBranch6MkBalBranch02 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2506 -> 2703[label="",style="solid", color="black", weight=3]; 2862 -> 2494[label="",style="dashed", color="red", weight=0]; 2862[label="primPlusNat xuu19700 xuu19600",fontsize=16,color="magenta"];2862 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2983[label="",style="dashed", color="magenta", weight=3]; 3685 -> 2131[label="",style="dashed", color="red", weight=0]; 3685[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295)",fontsize=16,color="magenta"];3685 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3685 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3686[label="FiniteMap.sizeFM xuu296",fontsize=16,color="burlywood",shape="triangle"];4484[label="xuu296/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3686 -> 4484[label="",style="solid", color="burlywood", weight=9]; 4484 -> 3689[label="",style="solid", color="burlywood", weight=3]; 4485[label="xuu296/FiniteMap.Branch xuu2960 xuu2961 xuu2962 xuu2963 xuu2964",fontsize=10,color="white",style="solid",shape="box"];3686 -> 4485[label="",style="solid", color="burlywood", weight=9]; 4485 -> 3690[label="",style="solid", color="burlywood", weight=3]; 2510 -> 3440[label="",style="dashed", color="red", weight=0]; 2510[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu600 : xuu601) xuu61 xuu29 xuu64",fontsize=16,color="magenta"];2510 -> 3451[label="",style="dashed", color="magenta", weight=3]; 2510 -> 3452[label="",style="dashed", color="magenta", weight=3]; 2510 -> 3453[label="",style="dashed", color="magenta", weight=3]; 2510 -> 3454[label="",style="dashed", color="magenta", weight=3]; 2510 -> 3455[label="",style="dashed", color="magenta", weight=3]; 2511[label="error []",fontsize=16,color="red",shape="box"];2512[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2512 -> 2708[label="",style="solid", color="black", weight=3]; 2513 -> 1754[label="",style="dashed", color="red", weight=0]; 2513[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];2513 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2514 -> 454[label="",style="dashed", color="red", weight=0]; 2514[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2514 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2515[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];2515 -> 2712[label="",style="solid", color="black", weight=3]; 2516[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2516 -> 2713[label="",style="solid", color="black", weight=3]; 2517[label="compare0 (xuu156,xuu157) (xuu158,xuu159) True",fontsize=16,color="black",shape="box"];2517 -> 2714[label="",style="solid", color="black", weight=3]; 2518[label="xuu600000",fontsize=16,color="green",shape="box"];2519[label="xuu311000000",fontsize=16,color="green",shape="box"];2520[label="xuu600000",fontsize=16,color="green",shape="box"];2521[label="xuu311000000",fontsize=16,color="green",shape="box"];2522 -> 1581[label="",style="dashed", color="red", weight=0]; 2522[label="primEqNat xuu311000000 xuu600000",fontsize=16,color="magenta"];2522 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2523[label="False",fontsize=16,color="green",shape="box"];2524[label="False",fontsize=16,color="green",shape="box"];2525[label="True",fontsize=16,color="green",shape="box"];2526[label="xuu60002",fontsize=16,color="green",shape="box"];2527[label="xuu31100002",fontsize=16,color="green",shape="box"];2528[label="xuu60002",fontsize=16,color="green",shape="box"];2529[label="xuu31100002",fontsize=16,color="green",shape="box"];2530[label="xuu60002",fontsize=16,color="green",shape="box"];2531[label="xuu31100002",fontsize=16,color="green",shape="box"];2532[label="xuu60002",fontsize=16,color="green",shape="box"];2533[label="xuu31100002",fontsize=16,color="green",shape="box"];2534[label="xuu60002",fontsize=16,color="green",shape="box"];2535[label="xuu31100002",fontsize=16,color="green",shape="box"];2536[label="xuu60002",fontsize=16,color="green",shape="box"];2537[label="xuu31100002",fontsize=16,color="green",shape="box"];2538[label="xuu60002",fontsize=16,color="green",shape="box"];2539[label="xuu31100002",fontsize=16,color="green",shape="box"];2540[label="xuu60002",fontsize=16,color="green",shape="box"];2541[label="xuu31100002",fontsize=16,color="green",shape="box"];2542[label="xuu60002",fontsize=16,color="green",shape="box"];2543[label="xuu31100002",fontsize=16,color="green",shape="box"];2544[label="xuu60002",fontsize=16,color="green",shape="box"];2545[label="xuu31100002",fontsize=16,color="green",shape="box"];2546[label="xuu60002",fontsize=16,color="green",shape="box"];2547[label="xuu31100002",fontsize=16,color="green",shape="box"];2548[label="xuu60002",fontsize=16,color="green",shape="box"];2549[label="xuu31100002",fontsize=16,color="green",shape="box"];2550[label="xuu60002",fontsize=16,color="green",shape="box"];2551[label="xuu31100002",fontsize=16,color="green",shape="box"];2552[label="xuu60002",fontsize=16,color="green",shape="box"];2553[label="xuu31100002",fontsize=16,color="green",shape="box"];2554[label="xuu60001",fontsize=16,color="green",shape="box"];2555[label="xuu31100001",fontsize=16,color="green",shape="box"];2556[label="xuu60001",fontsize=16,color="green",shape="box"];2557[label="xuu31100001",fontsize=16,color="green",shape="box"];2558[label="xuu60001",fontsize=16,color="green",shape="box"];2559[label="xuu31100001",fontsize=16,color="green",shape="box"];2560[label="xuu60001",fontsize=16,color="green",shape="box"];2561[label="xuu31100001",fontsize=16,color="green",shape="box"];2562[label="xuu60001",fontsize=16,color="green",shape="box"];2563[label="xuu31100001",fontsize=16,color="green",shape="box"];2564[label="xuu60001",fontsize=16,color="green",shape="box"];2565[label="xuu31100001",fontsize=16,color="green",shape="box"];2566[label="xuu60001",fontsize=16,color="green",shape="box"];2567[label="xuu31100001",fontsize=16,color="green",shape="box"];2568[label="xuu60001",fontsize=16,color="green",shape="box"];2569[label="xuu31100001",fontsize=16,color="green",shape="box"];2570[label="xuu60001",fontsize=16,color="green",shape="box"];2571[label="xuu31100001",fontsize=16,color="green",shape="box"];2572[label="xuu60001",fontsize=16,color="green",shape="box"];2573[label="xuu31100001",fontsize=16,color="green",shape="box"];2574[label="xuu60001",fontsize=16,color="green",shape="box"];2575[label="xuu31100001",fontsize=16,color="green",shape="box"];2576[label="xuu60001",fontsize=16,color="green",shape="box"];2577[label="xuu31100001",fontsize=16,color="green",shape="box"];2578[label="xuu60001",fontsize=16,color="green",shape="box"];2579[label="xuu31100001",fontsize=16,color="green",shape="box"];2580[label="xuu60001",fontsize=16,color="green",shape="box"];2581[label="xuu31100001",fontsize=16,color="green",shape="box"];2582 -> 996[label="",style="dashed", color="red", weight=0]; 2582[label="xuu580 == xuu590 && xuu581 <= xuu591",fontsize=16,color="magenta"];2582 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2583[label="xuu580 < xuu590",fontsize=16,color="blue",shape="box"];4486[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 2719[label="",style="solid", color="blue", weight=3]; 4487[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 2720[label="",style="solid", color="blue", weight=3]; 4488[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 2721[label="",style="solid", color="blue", weight=3]; 4489[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 2722[label="",style="solid", color="blue", weight=3]; 4490[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 2723[label="",style="solid", color="blue", weight=3]; 4491[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 2724[label="",style="solid", color="blue", weight=3]; 4492[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 2725[label="",style="solid", color="blue", weight=3]; 4493[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 2726[label="",style="solid", color="blue", weight=3]; 4494[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2727[label="",style="solid", color="blue", weight=3]; 4495[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2728[label="",style="solid", color="blue", weight=3]; 4496[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2729[label="",style="solid", color="blue", weight=3]; 4497[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 2730[label="",style="solid", color="blue", weight=3]; 4498[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 2731[label="",style="solid", color="blue", weight=3]; 4499[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2583 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 2732[label="",style="solid", color="blue", weight=3]; 2585 -> 559[label="",style="dashed", color="red", weight=0]; 2585[label="xuu190 == GT",fontsize=16,color="magenta"];2585 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2584[label="not xuu208",fontsize=16,color="burlywood",shape="triangle"];4500[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];2584 -> 4500[label="",style="solid", color="burlywood", weight=9]; 4500 -> 2735[label="",style="solid", color="burlywood", weight=3]; 4501[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];2584 -> 4501[label="",style="solid", color="burlywood", weight=9]; 4501 -> 2736[label="",style="solid", color="burlywood", weight=3]; 2594 -> 1367[label="",style="dashed", color="red", weight=0]; 2594[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2594 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2595 -> 1368[label="",style="dashed", color="red", weight=0]; 2595[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2595 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2596 -> 1369[label="",style="dashed", color="red", weight=0]; 2596[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2596 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1370[label="",style="dashed", color="red", weight=0]; 2597[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2597 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1371[label="",style="dashed", color="red", weight=0]; 2598[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2598 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1372[label="",style="dashed", color="red", weight=0]; 2599[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2599 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2600 -> 1373[label="",style="dashed", color="red", weight=0]; 2600[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2600 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2601 -> 1374[label="",style="dashed", color="red", weight=0]; 2601[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2601 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1375[label="",style="dashed", color="red", weight=0]; 2602[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2602 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2603 -> 1376[label="",style="dashed", color="red", weight=0]; 2603[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2603 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1377[label="",style="dashed", color="red", weight=0]; 2604[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2604 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1378[label="",style="dashed", color="red", weight=0]; 2605[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2605 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2606 -> 1379[label="",style="dashed", color="red", weight=0]; 2606[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2606 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2607 -> 1380[label="",style="dashed", color="red", weight=0]; 2607[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2607 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2608 -> 996[label="",style="dashed", color="red", weight=0]; 2608[label="xuu580 == xuu590 && (xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592)",fontsize=16,color="magenta"];2608 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2609[label="xuu580 < xuu590",fontsize=16,color="blue",shape="box"];4502[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 2775[label="",style="solid", color="blue", weight=3]; 4503[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 2776[label="",style="solid", color="blue", weight=3]; 4504[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 2777[label="",style="solid", color="blue", weight=3]; 4505[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 2778[label="",style="solid", color="blue", weight=3]; 4506[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 2779[label="",style="solid", color="blue", weight=3]; 4507[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 2780[label="",style="solid", color="blue", weight=3]; 4508[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 2781[label="",style="solid", color="blue", weight=3]; 4509[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 2782[label="",style="solid", color="blue", weight=3]; 4510[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 2783[label="",style="solid", color="blue", weight=3]; 4511[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 2784[label="",style="solid", color="blue", weight=3]; 4512[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 2785[label="",style="solid", color="blue", weight=3]; 4513[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 2786[label="",style="solid", color="blue", weight=3]; 4514[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 2787[label="",style="solid", color="blue", weight=3]; 4515[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2609 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 2788[label="",style="solid", color="blue", weight=3]; 2610 -> 1367[label="",style="dashed", color="red", weight=0]; 2610[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2610 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2611 -> 1368[label="",style="dashed", color="red", weight=0]; 2611[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2611 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2612 -> 1369[label="",style="dashed", color="red", weight=0]; 2612[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2612 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2613 -> 1370[label="",style="dashed", color="red", weight=0]; 2613[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2613 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2614 -> 1371[label="",style="dashed", color="red", weight=0]; 2614[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2614 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2615 -> 1372[label="",style="dashed", color="red", weight=0]; 2615[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2615 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2616 -> 1373[label="",style="dashed", color="red", weight=0]; 2616[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2616 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2617 -> 1374[label="",style="dashed", color="red", weight=0]; 2617[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2617 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2618 -> 1375[label="",style="dashed", color="red", weight=0]; 2618[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2618 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2619 -> 1376[label="",style="dashed", color="red", weight=0]; 2619[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2619 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1377[label="",style="dashed", color="red", weight=0]; 2620[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2620 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1378[label="",style="dashed", color="red", weight=0]; 2621[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2621 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1379[label="",style="dashed", color="red", weight=0]; 2622[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2622 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1380[label="",style="dashed", color="red", weight=0]; 2623[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2623 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2624 -> 1367[label="",style="dashed", color="red", weight=0]; 2624[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2624 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2625 -> 1368[label="",style="dashed", color="red", weight=0]; 2625[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2625 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2626 -> 1369[label="",style="dashed", color="red", weight=0]; 2626[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2626 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2627 -> 1370[label="",style="dashed", color="red", weight=0]; 2627[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2627 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2628 -> 1371[label="",style="dashed", color="red", weight=0]; 2628[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2628 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2629 -> 1372[label="",style="dashed", color="red", weight=0]; 2629[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2629 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1373[label="",style="dashed", color="red", weight=0]; 2630[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2630 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1374[label="",style="dashed", color="red", weight=0]; 2631[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2631 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2632 -> 1375[label="",style="dashed", color="red", weight=0]; 2632[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2632 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2633 -> 1376[label="",style="dashed", color="red", weight=0]; 2633[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2633 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2634 -> 1377[label="",style="dashed", color="red", weight=0]; 2634[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2634 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1378[label="",style="dashed", color="red", weight=0]; 2635[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2635 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1379[label="",style="dashed", color="red", weight=0]; 2636[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2636 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1380[label="",style="dashed", color="red", weight=0]; 2637[label="xuu580 <= xuu590",fontsize=16,color="magenta"];2637 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2638[label="xuu74",fontsize=16,color="green",shape="box"];2639[label="xuu71",fontsize=16,color="green",shape="box"];2640[label="xuu74",fontsize=16,color="green",shape="box"];2641[label="xuu71",fontsize=16,color="green",shape="box"];2642[label="xuu74",fontsize=16,color="green",shape="box"];2643[label="xuu71",fontsize=16,color="green",shape="box"];2644[label="xuu74",fontsize=16,color="green",shape="box"];2645[label="xuu71",fontsize=16,color="green",shape="box"];2646[label="xuu74",fontsize=16,color="green",shape="box"];2647[label="xuu71",fontsize=16,color="green",shape="box"];2648[label="xuu74",fontsize=16,color="green",shape="box"];2649[label="xuu71",fontsize=16,color="green",shape="box"];2650[label="xuu74",fontsize=16,color="green",shape="box"];2651[label="xuu71",fontsize=16,color="green",shape="box"];2652[label="xuu74",fontsize=16,color="green",shape="box"];2653[label="xuu71",fontsize=16,color="green",shape="box"];2654[label="xuu74",fontsize=16,color="green",shape="box"];2655[label="xuu71",fontsize=16,color="green",shape="box"];2656[label="xuu74",fontsize=16,color="green",shape="box"];2657[label="xuu71",fontsize=16,color="green",shape="box"];2658[label="xuu74",fontsize=16,color="green",shape="box"];2659[label="xuu71",fontsize=16,color="green",shape="box"];2660[label="xuu74",fontsize=16,color="green",shape="box"];2661[label="xuu71",fontsize=16,color="green",shape="box"];2662[label="xuu74",fontsize=16,color="green",shape="box"];2663[label="xuu71",fontsize=16,color="green",shape="box"];2664[label="xuu74",fontsize=16,color="green",shape="box"];2665[label="xuu71",fontsize=16,color="green",shape="box"];2666[label="xuu73",fontsize=16,color="green",shape="box"];2667[label="xuu70",fontsize=16,color="green",shape="box"];2668[label="xuu73",fontsize=16,color="green",shape="box"];2669[label="xuu70",fontsize=16,color="green",shape="box"];2670[label="xuu73",fontsize=16,color="green",shape="box"];2671[label="xuu70",fontsize=16,color="green",shape="box"];2672[label="xuu73",fontsize=16,color="green",shape="box"];2673[label="xuu70",fontsize=16,color="green",shape="box"];2674[label="xuu73",fontsize=16,color="green",shape="box"];2675[label="xuu70",fontsize=16,color="green",shape="box"];2676[label="xuu73",fontsize=16,color="green",shape="box"];2677[label="xuu70",fontsize=16,color="green",shape="box"];2678[label="xuu73",fontsize=16,color="green",shape="box"];2679[label="xuu70",fontsize=16,color="green",shape="box"];2680[label="xuu73",fontsize=16,color="green",shape="box"];2681[label="xuu70",fontsize=16,color="green",shape="box"];2682[label="xuu73",fontsize=16,color="green",shape="box"];2683[label="xuu70",fontsize=16,color="green",shape="box"];2684[label="xuu73",fontsize=16,color="green",shape="box"];2685[label="xuu70",fontsize=16,color="green",shape="box"];2686[label="xuu73",fontsize=16,color="green",shape="box"];2687[label="xuu70",fontsize=16,color="green",shape="box"];2688[label="xuu73",fontsize=16,color="green",shape="box"];2689[label="xuu70",fontsize=16,color="green",shape="box"];2690[label="xuu73",fontsize=16,color="green",shape="box"];2691[label="xuu70",fontsize=16,color="green",shape="box"];2692[label="xuu73",fontsize=16,color="green",shape="box"];2693[label="xuu70",fontsize=16,color="green",shape="box"];2694[label="compare0 (xuu171,xuu172,xuu173) (xuu174,xuu175,xuu176) True",fontsize=16,color="black",shape="box"];2694 -> 2845[label="",style="solid", color="black", weight=3]; 2695[label="Succ xuu311000100",fontsize=16,color="green",shape="box"];2696[label="xuu600000",fontsize=16,color="green",shape="box"];2697[label="xuu207",fontsize=16,color="green",shape="box"];2698[label="Succ xuu311000100",fontsize=16,color="green",shape="box"];2699 -> 1755[label="",style="dashed", color="red", weight=0]; 2699[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2700 -> 1748[label="",style="dashed", color="red", weight=0]; 2700[label="FiniteMap.mkBalBranch6Size_r [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2701[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 otherwise",fontsize=16,color="black",shape="box"];2701 -> 2846[label="",style="solid", color="black", weight=3]; 2702[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 xuu63 xuu41 xuu63 xuu41 xuu63",fontsize=16,color="burlywood",shape="box"];4516[label="xuu63/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2702 -> 4516[label="",style="solid", color="burlywood", weight=9]; 4516 -> 2847[label="",style="solid", color="burlywood", weight=3]; 4517[label="xuu63/FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634",fontsize=10,color="white",style="solid",shape="box"];2702 -> 4517[label="",style="solid", color="burlywood", weight=9]; 4517 -> 2848[label="",style="solid", color="burlywood", weight=3]; 2703 -> 2849[label="",style="dashed", color="red", weight=0]; 2703[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 (FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414)",fontsize=16,color="magenta"];2703 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2982[label="xuu19700",fontsize=16,color="green",shape="box"];2983[label="xuu19600",fontsize=16,color="green",shape="box"];3687[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3688[label="FiniteMap.mkBranchLeft_size xuu296 xuu293 xuu295",fontsize=16,color="black",shape="box"];3688 -> 3691[label="",style="solid", color="black", weight=3]; 3689[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3689 -> 3692[label="",style="solid", color="black", weight=3]; 3690[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2960 xuu2961 xuu2962 xuu2963 xuu2964)",fontsize=16,color="black",shape="box"];3690 -> 3693[label="",style="solid", color="black", weight=3]; 3451[label="xuu64",fontsize=16,color="green",shape="box"];3452[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3453[label="xuu61",fontsize=16,color="green",shape="box"];3454[label="xuu29",fontsize=16,color="green",shape="box"];3455[label="Succ Zero",fontsize=16,color="green",shape="box"];2708 -> 2860[label="",style="dashed", color="red", weight=0]; 2708[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 (FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293)",fontsize=16,color="magenta"];2708 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2709[label="xuu643",fontsize=16,color="green",shape="box"];2710[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2711 -> 1754[label="",style="dashed", color="red", weight=0]; 2711[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];2711 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2712[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2712 -> 2864[label="",style="solid", color="black", weight=3]; 2713[label="FiniteMap.mkBalBranch6Single_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2713 -> 2865[label="",style="solid", color="black", weight=3]; 2714[label="GT",fontsize=16,color="green",shape="box"];2715[label="xuu600000",fontsize=16,color="green",shape="box"];2716[label="xuu311000000",fontsize=16,color="green",shape="box"];2717[label="xuu581 <= xuu591",fontsize=16,color="blue",shape="box"];4518[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2866[label="",style="solid", color="blue", weight=3]; 4519[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2867[label="",style="solid", color="blue", weight=3]; 4520[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2868[label="",style="solid", color="blue", weight=3]; 4521[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2869[label="",style="solid", color="blue", weight=3]; 4522[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2870[label="",style="solid", color="blue", weight=3]; 4523[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2871[label="",style="solid", color="blue", weight=3]; 4524[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2872[label="",style="solid", color="blue", weight=3]; 4525[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2873[label="",style="solid", color="blue", weight=3]; 4526[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2874[label="",style="solid", color="blue", weight=3]; 4527[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2875[label="",style="solid", color="blue", weight=3]; 4528[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2876[label="",style="solid", color="blue", weight=3]; 4529[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2877[label="",style="solid", color="blue", weight=3]; 4530[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2878[label="",style="solid", color="blue", weight=3]; 4531[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2879[label="",style="solid", color="blue", weight=3]; 2718[label="xuu580 == xuu590",fontsize=16,color="blue",shape="box"];4532[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 2880[label="",style="solid", color="blue", weight=3]; 4533[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2881[label="",style="solid", color="blue", weight=3]; 4534[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2882[label="",style="solid", color="blue", weight=3]; 4535[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2883[label="",style="solid", color="blue", weight=3]; 4536[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2884[label="",style="solid", color="blue", weight=3]; 4537[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2885[label="",style="solid", color="blue", weight=3]; 4538[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2886[label="",style="solid", color="blue", weight=3]; 4539[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2887[label="",style="solid", color="blue", weight=3]; 4540[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2888[label="",style="solid", color="blue", weight=3]; 4541[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2889[label="",style="solid", color="blue", weight=3]; 4542[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2890[label="",style="solid", color="blue", weight=3]; 4543[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2891[label="",style="solid", color="blue", weight=3]; 4544[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 2892[label="",style="solid", color="blue", weight=3]; 4545[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 2893[label="",style="solid", color="blue", weight=3]; 2719 -> 1312[label="",style="dashed", color="red", weight=0]; 2719[label="xuu580 < xuu590",fontsize=16,color="magenta"];2719 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2720 -> 1313[label="",style="dashed", color="red", weight=0]; 2720[label="xuu580 < xuu590",fontsize=16,color="magenta"];2720 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2721 -> 1314[label="",style="dashed", color="red", weight=0]; 2721[label="xuu580 < xuu590",fontsize=16,color="magenta"];2721 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2722 -> 1315[label="",style="dashed", color="red", weight=0]; 2722[label="xuu580 < xuu590",fontsize=16,color="magenta"];2722 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2723 -> 1316[label="",style="dashed", color="red", weight=0]; 2723[label="xuu580 < xuu590",fontsize=16,color="magenta"];2723 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2724 -> 1317[label="",style="dashed", color="red", weight=0]; 2724[label="xuu580 < xuu590",fontsize=16,color="magenta"];2724 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1318[label="",style="dashed", color="red", weight=0]; 2725[label="xuu580 < xuu590",fontsize=16,color="magenta"];2725 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2726 -> 1319[label="",style="dashed", color="red", weight=0]; 2726[label="xuu580 < xuu590",fontsize=16,color="magenta"];2726 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2727 -> 1320[label="",style="dashed", color="red", weight=0]; 2727[label="xuu580 < xuu590",fontsize=16,color="magenta"];2727 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1321[label="",style="dashed", color="red", weight=0]; 2728[label="xuu580 < xuu590",fontsize=16,color="magenta"];2728 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2729 -> 1322[label="",style="dashed", color="red", weight=0]; 2729[label="xuu580 < xuu590",fontsize=16,color="magenta"];2729 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2730 -> 1323[label="",style="dashed", color="red", weight=0]; 2730[label="xuu580 < xuu590",fontsize=16,color="magenta"];2730 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2731 -> 1324[label="",style="dashed", color="red", weight=0]; 2731[label="xuu580 < xuu590",fontsize=16,color="magenta"];2731 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2732 -> 1325[label="",style="dashed", color="red", weight=0]; 2732[label="xuu580 < xuu590",fontsize=16,color="magenta"];2732 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2733[label="GT",fontsize=16,color="green",shape="box"];2734[label="xuu190",fontsize=16,color="green",shape="box"];2735[label="not False",fontsize=16,color="black",shape="box"];2735 -> 2922[label="",style="solid", color="black", weight=3]; 2736[label="not True",fontsize=16,color="black",shape="box"];2736 -> 2923[label="",style="solid", color="black", weight=3]; 2745[label="xuu590",fontsize=16,color="green",shape="box"];2746[label="xuu580",fontsize=16,color="green",shape="box"];2747[label="xuu590",fontsize=16,color="green",shape="box"];2748[label="xuu580",fontsize=16,color="green",shape="box"];2749[label="xuu590",fontsize=16,color="green",shape="box"];2750[label="xuu580",fontsize=16,color="green",shape="box"];2751[label="xuu590",fontsize=16,color="green",shape="box"];2752[label="xuu580",fontsize=16,color="green",shape="box"];2753[label="xuu590",fontsize=16,color="green",shape="box"];2754[label="xuu580",fontsize=16,color="green",shape="box"];2755[label="xuu590",fontsize=16,color="green",shape="box"];2756[label="xuu580",fontsize=16,color="green",shape="box"];2757[label="xuu590",fontsize=16,color="green",shape="box"];2758[label="xuu580",fontsize=16,color="green",shape="box"];2759[label="xuu590",fontsize=16,color="green",shape="box"];2760[label="xuu580",fontsize=16,color="green",shape="box"];2761[label="xuu590",fontsize=16,color="green",shape="box"];2762[label="xuu580",fontsize=16,color="green",shape="box"];2763[label="xuu590",fontsize=16,color="green",shape="box"];2764[label="xuu580",fontsize=16,color="green",shape="box"];2765[label="xuu590",fontsize=16,color="green",shape="box"];2766[label="xuu580",fontsize=16,color="green",shape="box"];2767[label="xuu590",fontsize=16,color="green",shape="box"];2768[label="xuu580",fontsize=16,color="green",shape="box"];2769[label="xuu590",fontsize=16,color="green",shape="box"];2770[label="xuu580",fontsize=16,color="green",shape="box"];2771[label="xuu590",fontsize=16,color="green",shape="box"];2772[label="xuu580",fontsize=16,color="green",shape="box"];2773 -> 2066[label="",style="dashed", color="red", weight=0]; 2773[label="xuu581 < xuu591 || xuu581 == xuu591 && xuu582 <= xuu592",fontsize=16,color="magenta"];2773 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2774[label="xuu580 == xuu590",fontsize=16,color="blue",shape="box"];4546[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2926[label="",style="solid", color="blue", weight=3]; 4547[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 2927[label="",style="solid", color="blue", weight=3]; 4548[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2928[label="",style="solid", color="blue", weight=3]; 4549[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2929[label="",style="solid", color="blue", weight=3]; 4550[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2930[label="",style="solid", color="blue", weight=3]; 4551[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 2931[label="",style="solid", color="blue", weight=3]; 4552[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 2932[label="",style="solid", color="blue", weight=3]; 4553[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 2933[label="",style="solid", color="blue", weight=3]; 4554[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 2934[label="",style="solid", color="blue", weight=3]; 4555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 2935[label="",style="solid", color="blue", weight=3]; 4556[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 2936[label="",style="solid", color="blue", weight=3]; 4557[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 2937[label="",style="solid", color="blue", weight=3]; 4558[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2938[label="",style="solid", color="blue", weight=3]; 4559[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2774 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2939[label="",style="solid", color="blue", weight=3]; 2775 -> 1312[label="",style="dashed", color="red", weight=0]; 2775[label="xuu580 < xuu590",fontsize=16,color="magenta"];2775 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2776 -> 1313[label="",style="dashed", color="red", weight=0]; 2776[label="xuu580 < xuu590",fontsize=16,color="magenta"];2776 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2777 -> 1314[label="",style="dashed", color="red", weight=0]; 2777[label="xuu580 < xuu590",fontsize=16,color="magenta"];2777 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2778 -> 1315[label="",style="dashed", color="red", weight=0]; 2778[label="xuu580 < xuu590",fontsize=16,color="magenta"];2778 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2779 -> 1316[label="",style="dashed", color="red", weight=0]; 2779[label="xuu580 < xuu590",fontsize=16,color="magenta"];2779 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2780 -> 1317[label="",style="dashed", color="red", weight=0]; 2780[label="xuu580 < xuu590",fontsize=16,color="magenta"];2780 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2781 -> 1318[label="",style="dashed", color="red", weight=0]; 2781[label="xuu580 < xuu590",fontsize=16,color="magenta"];2781 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2782 -> 1319[label="",style="dashed", color="red", weight=0]; 2782[label="xuu580 < xuu590",fontsize=16,color="magenta"];2782 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2783 -> 1320[label="",style="dashed", color="red", weight=0]; 2783[label="xuu580 < xuu590",fontsize=16,color="magenta"];2783 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2784 -> 1321[label="",style="dashed", color="red", weight=0]; 2784[label="xuu580 < xuu590",fontsize=16,color="magenta"];2784 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2785 -> 1322[label="",style="dashed", color="red", weight=0]; 2785[label="xuu580 < xuu590",fontsize=16,color="magenta"];2785 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2786 -> 1323[label="",style="dashed", color="red", weight=0]; 2786[label="xuu580 < xuu590",fontsize=16,color="magenta"];2786 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2787 -> 1324[label="",style="dashed", color="red", weight=0]; 2787[label="xuu580 < xuu590",fontsize=16,color="magenta"];2787 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2788 -> 1325[label="",style="dashed", color="red", weight=0]; 2788[label="xuu580 < xuu590",fontsize=16,color="magenta"];2788 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2789[label="xuu590",fontsize=16,color="green",shape="box"];2790[label="xuu580",fontsize=16,color="green",shape="box"];2791[label="xuu590",fontsize=16,color="green",shape="box"];2792[label="xuu580",fontsize=16,color="green",shape="box"];2793[label="xuu590",fontsize=16,color="green",shape="box"];2794[label="xuu580",fontsize=16,color="green",shape="box"];2795[label="xuu590",fontsize=16,color="green",shape="box"];2796[label="xuu580",fontsize=16,color="green",shape="box"];2797[label="xuu590",fontsize=16,color="green",shape="box"];2798[label="xuu580",fontsize=16,color="green",shape="box"];2799[label="xuu590",fontsize=16,color="green",shape="box"];2800[label="xuu580",fontsize=16,color="green",shape="box"];2801[label="xuu590",fontsize=16,color="green",shape="box"];2802[label="xuu580",fontsize=16,color="green",shape="box"];2803[label="xuu590",fontsize=16,color="green",shape="box"];2804[label="xuu580",fontsize=16,color="green",shape="box"];2805[label="xuu590",fontsize=16,color="green",shape="box"];2806[label="xuu580",fontsize=16,color="green",shape="box"];2807[label="xuu590",fontsize=16,color="green",shape="box"];2808[label="xuu580",fontsize=16,color="green",shape="box"];2809[label="xuu590",fontsize=16,color="green",shape="box"];2810[label="xuu580",fontsize=16,color="green",shape="box"];2811[label="xuu590",fontsize=16,color="green",shape="box"];2812[label="xuu580",fontsize=16,color="green",shape="box"];2813[label="xuu590",fontsize=16,color="green",shape="box"];2814[label="xuu580",fontsize=16,color="green",shape="box"];2815[label="xuu590",fontsize=16,color="green",shape="box"];2816[label="xuu580",fontsize=16,color="green",shape="box"];2817[label="xuu590",fontsize=16,color="green",shape="box"];2818[label="xuu580",fontsize=16,color="green",shape="box"];2819[label="xuu590",fontsize=16,color="green",shape="box"];2820[label="xuu580",fontsize=16,color="green",shape="box"];2821[label="xuu590",fontsize=16,color="green",shape="box"];2822[label="xuu580",fontsize=16,color="green",shape="box"];2823[label="xuu590",fontsize=16,color="green",shape="box"];2824[label="xuu580",fontsize=16,color="green",shape="box"];2825[label="xuu590",fontsize=16,color="green",shape="box"];2826[label="xuu580",fontsize=16,color="green",shape="box"];2827[label="xuu590",fontsize=16,color="green",shape="box"];2828[label="xuu580",fontsize=16,color="green",shape="box"];2829[label="xuu590",fontsize=16,color="green",shape="box"];2830[label="xuu580",fontsize=16,color="green",shape="box"];2831[label="xuu590",fontsize=16,color="green",shape="box"];2832[label="xuu580",fontsize=16,color="green",shape="box"];2833[label="xuu590",fontsize=16,color="green",shape="box"];2834[label="xuu580",fontsize=16,color="green",shape="box"];2835[label="xuu590",fontsize=16,color="green",shape="box"];2836[label="xuu580",fontsize=16,color="green",shape="box"];2837[label="xuu590",fontsize=16,color="green",shape="box"];2838[label="xuu580",fontsize=16,color="green",shape="box"];2839[label="xuu590",fontsize=16,color="green",shape="box"];2840[label="xuu580",fontsize=16,color="green",shape="box"];2841[label="xuu590",fontsize=16,color="green",shape="box"];2842[label="xuu580",fontsize=16,color="green",shape="box"];2843[label="xuu590",fontsize=16,color="green",shape="box"];2844[label="xuu580",fontsize=16,color="green",shape="box"];2845[label="GT",fontsize=16,color="green",shape="box"];2846[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu61 xuu63 xuu41 [] xuu61 xuu63 xuu41 True",fontsize=16,color="black",shape="box"];2846 -> 2968[label="",style="solid", color="black", weight=3]; 2847[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2847 -> 2969[label="",style="solid", color="black", weight=3]; 2848[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634)",fontsize=16,color="black",shape="box"];2848 -> 2970[label="",style="solid", color="black", weight=3]; 2850 -> 1319[label="",style="dashed", color="red", weight=0]; 2850[label="FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2850 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2849[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 xuu209",fontsize=16,color="burlywood",shape="triangle"];4560[label="xuu209/False",fontsize=10,color="white",style="solid",shape="box"];2849 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 2973[label="",style="solid", color="burlywood", weight=3]; 4561[label="xuu209/True",fontsize=10,color="white",style="solid",shape="box"];2849 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 2974[label="",style="solid", color="burlywood", weight=3]; 3691 -> 3686[label="",style="dashed", color="red", weight=0]; 3691[label="FiniteMap.sizeFM xuu295",fontsize=16,color="magenta"];3691 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3692[label="Pos Zero",fontsize=16,color="green",shape="box"];3693[label="xuu2962",fontsize=16,color="green",shape="box"];2861 -> 1319[label="",style="dashed", color="red", weight=0]; 2861[label="FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2861 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2860[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 xuu213",fontsize=16,color="burlywood",shape="triangle"];4562[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2860 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 2980[label="",style="solid", color="burlywood", weight=3]; 4563[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2860 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 2981[label="",style="solid", color="burlywood", weight=3]; 2863[label="xuu644",fontsize=16,color="green",shape="box"];2864[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2864 -> 2984[label="",style="solid", color="black", weight=3]; 2865 -> 3440[label="",style="dashed", color="red", weight=0]; 2865[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu600 : xuu601) xuu61 xuu29 xuu643) xuu644",fontsize=16,color="magenta"];2865 -> 3456[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3457[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3458[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3459[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3460[label="",style="dashed", color="magenta", weight=3]; 2866 -> 1367[label="",style="dashed", color="red", weight=0]; 2866[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2866 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2867 -> 1368[label="",style="dashed", color="red", weight=0]; 2867[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2867 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2868 -> 1369[label="",style="dashed", color="red", weight=0]; 2868[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2868 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2869 -> 1370[label="",style="dashed", color="red", weight=0]; 2869[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2869 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2870 -> 1371[label="",style="dashed", color="red", weight=0]; 2870[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2870 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2871 -> 1372[label="",style="dashed", color="red", weight=0]; 2871[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2871 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2872 -> 1373[label="",style="dashed", color="red", weight=0]; 2872[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2872 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2873 -> 1374[label="",style="dashed", color="red", weight=0]; 2873[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2873 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2873 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2874 -> 1375[label="",style="dashed", color="red", weight=0]; 2874[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2874 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2874 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2875 -> 1376[label="",style="dashed", color="red", weight=0]; 2875[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2875 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2875 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2876 -> 1377[label="",style="dashed", color="red", weight=0]; 2876[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2876 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2876 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2877 -> 1378[label="",style="dashed", color="red", weight=0]; 2877[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2877 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2877 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2878 -> 1379[label="",style="dashed", color="red", weight=0]; 2878[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2878 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2878 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2879 -> 1380[label="",style="dashed", color="red", weight=0]; 2879[label="xuu581 <= xuu591",fontsize=16,color="magenta"];2879 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2879 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2880 -> 550[label="",style="dashed", color="red", weight=0]; 2880[label="xuu580 == xuu590",fontsize=16,color="magenta"];2880 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2880 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2881 -> 553[label="",style="dashed", color="red", weight=0]; 2881[label="xuu580 == xuu590",fontsize=16,color="magenta"];2881 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2881 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2882 -> 546[label="",style="dashed", color="red", weight=0]; 2882[label="xuu580 == xuu590",fontsize=16,color="magenta"];2882 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2882 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2883 -> 555[label="",style="dashed", color="red", weight=0]; 2883[label="xuu580 == xuu590",fontsize=16,color="magenta"];2883 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2883 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2884 -> 559[label="",style="dashed", color="red", weight=0]; 2884[label="xuu580 == xuu590",fontsize=16,color="magenta"];2884 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2884 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2885 -> 554[label="",style="dashed", color="red", weight=0]; 2885[label="xuu580 == xuu590",fontsize=16,color="magenta"];2885 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2885 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2886 -> 551[label="",style="dashed", color="red", weight=0]; 2886[label="xuu580 == xuu590",fontsize=16,color="magenta"];2886 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2886 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2887 -> 547[label="",style="dashed", color="red", weight=0]; 2887[label="xuu580 == xuu590",fontsize=16,color="magenta"];2887 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2887 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2888 -> 557[label="",style="dashed", color="red", weight=0]; 2888[label="xuu580 == xuu590",fontsize=16,color="magenta"];2888 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2888 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2889 -> 548[label="",style="dashed", color="red", weight=0]; 2889[label="xuu580 == xuu590",fontsize=16,color="magenta"];2889 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2889 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2890 -> 549[label="",style="dashed", color="red", weight=0]; 2890[label="xuu580 == xuu590",fontsize=16,color="magenta"];2890 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2890 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2891 -> 556[label="",style="dashed", color="red", weight=0]; 2891[label="xuu580 == xuu590",fontsize=16,color="magenta"];2891 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2891 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2892 -> 552[label="",style="dashed", color="red", weight=0]; 2892[label="xuu580 == xuu590",fontsize=16,color="magenta"];2892 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2892 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2893 -> 558[label="",style="dashed", color="red", weight=0]; 2893[label="xuu580 == xuu590",fontsize=16,color="magenta"];2893 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2893 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2894[label="xuu580",fontsize=16,color="green",shape="box"];2895[label="xuu590",fontsize=16,color="green",shape="box"];2896[label="xuu580",fontsize=16,color="green",shape="box"];2897[label="xuu590",fontsize=16,color="green",shape="box"];2898[label="xuu580",fontsize=16,color="green",shape="box"];2899[label="xuu590",fontsize=16,color="green",shape="box"];2900[label="xuu580",fontsize=16,color="green",shape="box"];2901[label="xuu590",fontsize=16,color="green",shape="box"];2902[label="xuu580",fontsize=16,color="green",shape="box"];2903[label="xuu590",fontsize=16,color="green",shape="box"];2904[label="xuu580",fontsize=16,color="green",shape="box"];2905[label="xuu590",fontsize=16,color="green",shape="box"];2906[label="xuu580",fontsize=16,color="green",shape="box"];2907[label="xuu590",fontsize=16,color="green",shape="box"];2908[label="xuu580",fontsize=16,color="green",shape="box"];2909[label="xuu590",fontsize=16,color="green",shape="box"];2910[label="xuu580",fontsize=16,color="green",shape="box"];2911[label="xuu590",fontsize=16,color="green",shape="box"];2912[label="xuu580",fontsize=16,color="green",shape="box"];2913[label="xuu590",fontsize=16,color="green",shape="box"];2914[label="xuu580",fontsize=16,color="green",shape="box"];2915[label="xuu590",fontsize=16,color="green",shape="box"];2916[label="xuu580",fontsize=16,color="green",shape="box"];2917[label="xuu590",fontsize=16,color="green",shape="box"];2918[label="xuu580",fontsize=16,color="green",shape="box"];2919[label="xuu590",fontsize=16,color="green",shape="box"];2920[label="xuu580",fontsize=16,color="green",shape="box"];2921[label="xuu590",fontsize=16,color="green",shape="box"];2922[label="True",fontsize=16,color="green",shape="box"];2923[label="False",fontsize=16,color="green",shape="box"];2924 -> 996[label="",style="dashed", color="red", weight=0]; 2924[label="xuu581 == xuu591 && xuu582 <= xuu592",fontsize=16,color="magenta"];2924 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2925[label="xuu581 < xuu591",fontsize=16,color="blue",shape="box"];4564[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 3044[label="",style="solid", color="blue", weight=3]; 4565[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 3045[label="",style="solid", color="blue", weight=3]; 4566[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 3046[label="",style="solid", color="blue", weight=3]; 4567[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 3047[label="",style="solid", color="blue", weight=3]; 4568[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 3048[label="",style="solid", color="blue", weight=3]; 4569[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 3049[label="",style="solid", color="blue", weight=3]; 4570[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 3050[label="",style="solid", color="blue", weight=3]; 4571[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 3051[label="",style="solid", color="blue", weight=3]; 4572[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 3052[label="",style="solid", color="blue", weight=3]; 4573[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 3053[label="",style="solid", color="blue", weight=3]; 4574[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 3054[label="",style="solid", color="blue", weight=3]; 4575[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 3055[label="",style="solid", color="blue", weight=3]; 4576[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 3056[label="",style="solid", color="blue", weight=3]; 4577[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 3057[label="",style="solid", color="blue", weight=3]; 2926 -> 550[label="",style="dashed", color="red", weight=0]; 2926[label="xuu580 == xuu590",fontsize=16,color="magenta"];2926 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2927 -> 553[label="",style="dashed", color="red", weight=0]; 2927[label="xuu580 == xuu590",fontsize=16,color="magenta"];2927 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2928 -> 546[label="",style="dashed", color="red", weight=0]; 2928[label="xuu580 == xuu590",fontsize=16,color="magenta"];2928 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2929 -> 555[label="",style="dashed", color="red", weight=0]; 2929[label="xuu580 == xuu590",fontsize=16,color="magenta"];2929 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2930 -> 559[label="",style="dashed", color="red", weight=0]; 2930[label="xuu580 == xuu590",fontsize=16,color="magenta"];2930 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2931 -> 554[label="",style="dashed", color="red", weight=0]; 2931[label="xuu580 == xuu590",fontsize=16,color="magenta"];2931 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2932 -> 551[label="",style="dashed", color="red", weight=0]; 2932[label="xuu580 == xuu590",fontsize=16,color="magenta"];2932 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2933 -> 547[label="",style="dashed", color="red", weight=0]; 2933[label="xuu580 == xuu590",fontsize=16,color="magenta"];2933 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2934 -> 557[label="",style="dashed", color="red", weight=0]; 2934[label="xuu580 == xuu590",fontsize=16,color="magenta"];2934 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2935 -> 548[label="",style="dashed", color="red", weight=0]; 2935[label="xuu580 == xuu590",fontsize=16,color="magenta"];2935 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2936 -> 549[label="",style="dashed", color="red", weight=0]; 2936[label="xuu580 == xuu590",fontsize=16,color="magenta"];2936 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2937 -> 556[label="",style="dashed", color="red", weight=0]; 2937[label="xuu580 == xuu590",fontsize=16,color="magenta"];2937 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2938 -> 552[label="",style="dashed", color="red", weight=0]; 2938[label="xuu580 == xuu590",fontsize=16,color="magenta"];2938 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2939 -> 558[label="",style="dashed", color="red", weight=0]; 2939[label="xuu580 == xuu590",fontsize=16,color="magenta"];2939 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2940[label="xuu580",fontsize=16,color="green",shape="box"];2941[label="xuu590",fontsize=16,color="green",shape="box"];2942[label="xuu580",fontsize=16,color="green",shape="box"];2943[label="xuu590",fontsize=16,color="green",shape="box"];2944[label="xuu580",fontsize=16,color="green",shape="box"];2945[label="xuu590",fontsize=16,color="green",shape="box"];2946[label="xuu580",fontsize=16,color="green",shape="box"];2947[label="xuu590",fontsize=16,color="green",shape="box"];2948[label="xuu580",fontsize=16,color="green",shape="box"];2949[label="xuu590",fontsize=16,color="green",shape="box"];2950[label="xuu580",fontsize=16,color="green",shape="box"];2951[label="xuu590",fontsize=16,color="green",shape="box"];2952[label="xuu580",fontsize=16,color="green",shape="box"];2953[label="xuu590",fontsize=16,color="green",shape="box"];2954[label="xuu580",fontsize=16,color="green",shape="box"];2955[label="xuu590",fontsize=16,color="green",shape="box"];2956[label="xuu580",fontsize=16,color="green",shape="box"];2957[label="xuu590",fontsize=16,color="green",shape="box"];2958[label="xuu580",fontsize=16,color="green",shape="box"];2959[label="xuu590",fontsize=16,color="green",shape="box"];2960[label="xuu580",fontsize=16,color="green",shape="box"];2961[label="xuu590",fontsize=16,color="green",shape="box"];2962[label="xuu580",fontsize=16,color="green",shape="box"];2963[label="xuu590",fontsize=16,color="green",shape="box"];2964[label="xuu580",fontsize=16,color="green",shape="box"];2965[label="xuu590",fontsize=16,color="green",shape="box"];2966[label="xuu580",fontsize=16,color="green",shape="box"];2967[label="xuu590",fontsize=16,color="green",shape="box"];2968 -> 3440[label="",style="dashed", color="red", weight=0]; 2968[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu61 xuu63 xuu41",fontsize=16,color="magenta"];2968 -> 3461[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3462[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3463[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3464[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3465[label="",style="dashed", color="magenta", weight=3]; 2969[label="error []",fontsize=16,color="red",shape="box"];2970[label="FiniteMap.mkBalBranch6MkBalBranch12 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634)",fontsize=16,color="black",shape="box"];2970 -> 3087[label="",style="solid", color="black", weight=3]; 2971 -> 1754[label="",style="dashed", color="red", weight=0]; 2971[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];2971 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2972 -> 454[label="",style="dashed", color="red", weight=0]; 2972[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2972 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2973[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];2973 -> 3091[label="",style="solid", color="black", weight=3]; 2974[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];2974 -> 3092[label="",style="solid", color="black", weight=3]; 3694[label="xuu295",fontsize=16,color="green",shape="box"];2978 -> 1754[label="",style="dashed", color="red", weight=0]; 2978[label="FiniteMap.sizeFM xuu294",fontsize=16,color="magenta"];2978 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2979 -> 454[label="",style="dashed", color="red", weight=0]; 2979[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2979 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2980[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 False",fontsize=16,color="black",shape="box"];2980 -> 3097[label="",style="solid", color="black", weight=3]; 2981[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];2981 -> 3098[label="",style="solid", color="black", weight=3]; 2984[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4578[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2984 -> 4578[label="",style="solid", color="burlywood", weight=9]; 4578 -> 3099[label="",style="solid", color="burlywood", weight=3]; 4579[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2984 -> 4579[label="",style="solid", color="burlywood", weight=9]; 4579 -> 3100[label="",style="solid", color="burlywood", weight=3]; 3456[label="xuu644",fontsize=16,color="green",shape="box"];3457[label="xuu640",fontsize=16,color="green",shape="box"];3458[label="xuu641",fontsize=16,color="green",shape="box"];3459 -> 3440[label="",style="dashed", color="red", weight=0]; 3459[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu600 : xuu601) xuu61 xuu29 xuu643",fontsize=16,color="magenta"];3459 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3460[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];2986[label="xuu591",fontsize=16,color="green",shape="box"];2987[label="xuu581",fontsize=16,color="green",shape="box"];2988[label="xuu591",fontsize=16,color="green",shape="box"];2989[label="xuu581",fontsize=16,color="green",shape="box"];2990[label="xuu591",fontsize=16,color="green",shape="box"];2991[label="xuu581",fontsize=16,color="green",shape="box"];2992[label="xuu591",fontsize=16,color="green",shape="box"];2993[label="xuu581",fontsize=16,color="green",shape="box"];2994[label="xuu591",fontsize=16,color="green",shape="box"];2995[label="xuu581",fontsize=16,color="green",shape="box"];2996[label="xuu591",fontsize=16,color="green",shape="box"];2997[label="xuu581",fontsize=16,color="green",shape="box"];2998[label="xuu591",fontsize=16,color="green",shape="box"];2999[label="xuu581",fontsize=16,color="green",shape="box"];3000[label="xuu591",fontsize=16,color="green",shape="box"];3001[label="xuu581",fontsize=16,color="green",shape="box"];3002[label="xuu591",fontsize=16,color="green",shape="box"];3003[label="xuu581",fontsize=16,color="green",shape="box"];3004[label="xuu591",fontsize=16,color="green",shape="box"];3005[label="xuu581",fontsize=16,color="green",shape="box"];3006[label="xuu591",fontsize=16,color="green",shape="box"];3007[label="xuu581",fontsize=16,color="green",shape="box"];3008[label="xuu591",fontsize=16,color="green",shape="box"];3009[label="xuu581",fontsize=16,color="green",shape="box"];3010[label="xuu591",fontsize=16,color="green",shape="box"];3011[label="xuu581",fontsize=16,color="green",shape="box"];3012[label="xuu591",fontsize=16,color="green",shape="box"];3013[label="xuu581",fontsize=16,color="green",shape="box"];3014[label="xuu590",fontsize=16,color="green",shape="box"];3015[label="xuu580",fontsize=16,color="green",shape="box"];3016[label="xuu590",fontsize=16,color="green",shape="box"];3017[label="xuu580",fontsize=16,color="green",shape="box"];3018[label="xuu590",fontsize=16,color="green",shape="box"];3019[label="xuu580",fontsize=16,color="green",shape="box"];3020[label="xuu590",fontsize=16,color="green",shape="box"];3021[label="xuu580",fontsize=16,color="green",shape="box"];3022[label="xuu590",fontsize=16,color="green",shape="box"];3023[label="xuu580",fontsize=16,color="green",shape="box"];3024[label="xuu590",fontsize=16,color="green",shape="box"];3025[label="xuu580",fontsize=16,color="green",shape="box"];3026[label="xuu590",fontsize=16,color="green",shape="box"];3027[label="xuu580",fontsize=16,color="green",shape="box"];3028[label="xuu590",fontsize=16,color="green",shape="box"];3029[label="xuu580",fontsize=16,color="green",shape="box"];3030[label="xuu590",fontsize=16,color="green",shape="box"];3031[label="xuu580",fontsize=16,color="green",shape="box"];3032[label="xuu590",fontsize=16,color="green",shape="box"];3033[label="xuu580",fontsize=16,color="green",shape="box"];3034[label="xuu590",fontsize=16,color="green",shape="box"];3035[label="xuu580",fontsize=16,color="green",shape="box"];3036[label="xuu590",fontsize=16,color="green",shape="box"];3037[label="xuu580",fontsize=16,color="green",shape="box"];3038[label="xuu590",fontsize=16,color="green",shape="box"];3039[label="xuu580",fontsize=16,color="green",shape="box"];3040[label="xuu590",fontsize=16,color="green",shape="box"];3041[label="xuu580",fontsize=16,color="green",shape="box"];3042[label="xuu582 <= xuu592",fontsize=16,color="blue",shape="box"];4580[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3102[label="",style="solid", color="blue", weight=3]; 4581[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3103[label="",style="solid", color="blue", weight=3]; 4582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3104[label="",style="solid", color="blue", weight=3]; 4583[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3105[label="",style="solid", color="blue", weight=3]; 4584[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3106[label="",style="solid", color="blue", weight=3]; 4585[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3107[label="",style="solid", color="blue", weight=3]; 4586[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3108[label="",style="solid", color="blue", weight=3]; 4587[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3109[label="",style="solid", color="blue", weight=3]; 4588[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3110[label="",style="solid", color="blue", weight=3]; 4589[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3111[label="",style="solid", color="blue", weight=3]; 4590[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3112[label="",style="solid", color="blue", weight=3]; 4591[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 3113[label="",style="solid", color="blue", weight=3]; 4592[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 3114[label="",style="solid", color="blue", weight=3]; 4593[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 3115[label="",style="solid", color="blue", weight=3]; 3043[label="xuu581 == xuu591",fontsize=16,color="blue",shape="box"];4594[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 3116[label="",style="solid", color="blue", weight=3]; 4595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 3117[label="",style="solid", color="blue", weight=3]; 4596[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 3118[label="",style="solid", color="blue", weight=3]; 4597[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 3119[label="",style="solid", color="blue", weight=3]; 4598[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 3120[label="",style="solid", color="blue", weight=3]; 4599[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 3121[label="",style="solid", color="blue", weight=3]; 4600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 3122[label="",style="solid", color="blue", weight=3]; 4601[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 3123[label="",style="solid", color="blue", weight=3]; 4602[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 3124[label="",style="solid", color="blue", weight=3]; 4603[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 3125[label="",style="solid", color="blue", weight=3]; 4604[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 3126[label="",style="solid", color="blue", weight=3]; 4605[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 3127[label="",style="solid", color="blue", weight=3]; 4606[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 3128[label="",style="solid", color="blue", weight=3]; 4607[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 3129[label="",style="solid", color="blue", weight=3]; 3044 -> 1312[label="",style="dashed", color="red", weight=0]; 3044[label="xuu581 < xuu591",fontsize=16,color="magenta"];3044 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3045 -> 1313[label="",style="dashed", color="red", weight=0]; 3045[label="xuu581 < xuu591",fontsize=16,color="magenta"];3045 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3046 -> 1314[label="",style="dashed", color="red", weight=0]; 3046[label="xuu581 < xuu591",fontsize=16,color="magenta"];3046 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3047 -> 1315[label="",style="dashed", color="red", weight=0]; 3047[label="xuu581 < xuu591",fontsize=16,color="magenta"];3047 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3048 -> 1316[label="",style="dashed", color="red", weight=0]; 3048[label="xuu581 < xuu591",fontsize=16,color="magenta"];3048 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3049 -> 1317[label="",style="dashed", color="red", weight=0]; 3049[label="xuu581 < xuu591",fontsize=16,color="magenta"];3049 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3050 -> 1318[label="",style="dashed", color="red", weight=0]; 3050[label="xuu581 < xuu591",fontsize=16,color="magenta"];3050 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3051 -> 1319[label="",style="dashed", color="red", weight=0]; 3051[label="xuu581 < xuu591",fontsize=16,color="magenta"];3051 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3052 -> 1320[label="",style="dashed", color="red", weight=0]; 3052[label="xuu581 < xuu591",fontsize=16,color="magenta"];3052 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3053 -> 1321[label="",style="dashed", color="red", weight=0]; 3053[label="xuu581 < xuu591",fontsize=16,color="magenta"];3053 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3054 -> 1322[label="",style="dashed", color="red", weight=0]; 3054[label="xuu581 < xuu591",fontsize=16,color="magenta"];3054 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3055 -> 1323[label="",style="dashed", color="red", weight=0]; 3055[label="xuu581 < xuu591",fontsize=16,color="magenta"];3055 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3056 -> 1324[label="",style="dashed", color="red", weight=0]; 3056[label="xuu581 < xuu591",fontsize=16,color="magenta"];3056 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3057 -> 1325[label="",style="dashed", color="red", weight=0]; 3057[label="xuu581 < xuu591",fontsize=16,color="magenta"];3057 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3058[label="xuu590",fontsize=16,color="green",shape="box"];3059[label="xuu580",fontsize=16,color="green",shape="box"];3060[label="xuu590",fontsize=16,color="green",shape="box"];3061[label="xuu580",fontsize=16,color="green",shape="box"];3062[label="xuu590",fontsize=16,color="green",shape="box"];3063[label="xuu580",fontsize=16,color="green",shape="box"];3064[label="xuu590",fontsize=16,color="green",shape="box"];3065[label="xuu580",fontsize=16,color="green",shape="box"];3066[label="xuu590",fontsize=16,color="green",shape="box"];3067[label="xuu580",fontsize=16,color="green",shape="box"];3068[label="xuu590",fontsize=16,color="green",shape="box"];3069[label="xuu580",fontsize=16,color="green",shape="box"];3070[label="xuu590",fontsize=16,color="green",shape="box"];3071[label="xuu580",fontsize=16,color="green",shape="box"];3072[label="xuu590",fontsize=16,color="green",shape="box"];3073[label="xuu580",fontsize=16,color="green",shape="box"];3074[label="xuu590",fontsize=16,color="green",shape="box"];3075[label="xuu580",fontsize=16,color="green",shape="box"];3076[label="xuu590",fontsize=16,color="green",shape="box"];3077[label="xuu580",fontsize=16,color="green",shape="box"];3078[label="xuu590",fontsize=16,color="green",shape="box"];3079[label="xuu580",fontsize=16,color="green",shape="box"];3080[label="xuu590",fontsize=16,color="green",shape="box"];3081[label="xuu580",fontsize=16,color="green",shape="box"];3082[label="xuu590",fontsize=16,color="green",shape="box"];3083[label="xuu580",fontsize=16,color="green",shape="box"];3084[label="xuu590",fontsize=16,color="green",shape="box"];3085[label="xuu580",fontsize=16,color="green",shape="box"];3461[label="xuu41",fontsize=16,color="green",shape="box"];3462[label="[]",fontsize=16,color="green",shape="box"];3463[label="xuu61",fontsize=16,color="green",shape="box"];3464[label="xuu63",fontsize=16,color="green",shape="box"];3465[label="Succ Zero",fontsize=16,color="green",shape="box"];3087 -> 3158[label="",style="dashed", color="red", weight=0]; 3087[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 (FiniteMap.sizeFM xuu634 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633)",fontsize=16,color="magenta"];3087 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3088[label="xuu413",fontsize=16,color="green",shape="box"];3089[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3090 -> 1754[label="",style="dashed", color="red", weight=0]; 3090[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3090 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3091[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];3091 -> 3161[label="",style="solid", color="black", weight=3]; 3092[label="FiniteMap.mkBalBranch6Single_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];3092 -> 3162[label="",style="solid", color="black", weight=3]; 3094[label="xuu294",fontsize=16,color="green",shape="box"];3095[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3096 -> 1754[label="",style="dashed", color="red", weight=0]; 3096[label="FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3096 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3097[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 otherwise",fontsize=16,color="black",shape="box"];3097 -> 3165[label="",style="solid", color="black", weight=3]; 3098[label="FiniteMap.mkBalBranch6Single_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64",fontsize=16,color="black",shape="box"];3098 -> 3166[label="",style="solid", color="black", weight=3]; 3099[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];3099 -> 3167[label="",style="solid", color="black", weight=3]; 3100[label="FiniteMap.mkBalBranch6Double_L (xuu600 : xuu601) xuu61 xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu29 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];3100 -> 3168[label="",style="solid", color="black", weight=3]; 3612[label="xuu643",fontsize=16,color="green",shape="box"];3613[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3614[label="xuu61",fontsize=16,color="green",shape="box"];3615[label="xuu29",fontsize=16,color="green",shape="box"];3616[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3102 -> 1367[label="",style="dashed", color="red", weight=0]; 3102[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3102 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3103 -> 1368[label="",style="dashed", color="red", weight=0]; 3103[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3103 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3104 -> 1369[label="",style="dashed", color="red", weight=0]; 3104[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3104 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3105 -> 1370[label="",style="dashed", color="red", weight=0]; 3105[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3105 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3106 -> 1371[label="",style="dashed", color="red", weight=0]; 3106[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3106 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3107 -> 1372[label="",style="dashed", color="red", weight=0]; 3107[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3107 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3108 -> 1373[label="",style="dashed", color="red", weight=0]; 3108[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3108 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3109 -> 1374[label="",style="dashed", color="red", weight=0]; 3109[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3109 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3110 -> 1375[label="",style="dashed", color="red", weight=0]; 3110[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3110 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3111 -> 1376[label="",style="dashed", color="red", weight=0]; 3111[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3111 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3112 -> 1377[label="",style="dashed", color="red", weight=0]; 3112[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3112 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3113 -> 1378[label="",style="dashed", color="red", weight=0]; 3113[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3113 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3114 -> 1379[label="",style="dashed", color="red", weight=0]; 3114[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3114 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3115 -> 1380[label="",style="dashed", color="red", weight=0]; 3115[label="xuu582 <= xuu592",fontsize=16,color="magenta"];3115 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3116 -> 550[label="",style="dashed", color="red", weight=0]; 3116[label="xuu581 == xuu591",fontsize=16,color="magenta"];3116 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3117 -> 553[label="",style="dashed", color="red", weight=0]; 3117[label="xuu581 == xuu591",fontsize=16,color="magenta"];3117 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3118 -> 546[label="",style="dashed", color="red", weight=0]; 3118[label="xuu581 == xuu591",fontsize=16,color="magenta"];3118 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3119 -> 555[label="",style="dashed", color="red", weight=0]; 3119[label="xuu581 == xuu591",fontsize=16,color="magenta"];3119 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3120 -> 559[label="",style="dashed", color="red", weight=0]; 3120[label="xuu581 == xuu591",fontsize=16,color="magenta"];3120 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3121 -> 554[label="",style="dashed", color="red", weight=0]; 3121[label="xuu581 == xuu591",fontsize=16,color="magenta"];3121 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3122 -> 551[label="",style="dashed", color="red", weight=0]; 3122[label="xuu581 == xuu591",fontsize=16,color="magenta"];3122 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3123 -> 547[label="",style="dashed", color="red", weight=0]; 3123[label="xuu581 == xuu591",fontsize=16,color="magenta"];3123 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3124 -> 557[label="",style="dashed", color="red", weight=0]; 3124[label="xuu581 == xuu591",fontsize=16,color="magenta"];3124 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3125 -> 548[label="",style="dashed", color="red", weight=0]; 3125[label="xuu581 == xuu591",fontsize=16,color="magenta"];3125 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3126 -> 549[label="",style="dashed", color="red", weight=0]; 3126[label="xuu581 == xuu591",fontsize=16,color="magenta"];3126 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3127 -> 556[label="",style="dashed", color="red", weight=0]; 3127[label="xuu581 == xuu591",fontsize=16,color="magenta"];3127 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3128 -> 552[label="",style="dashed", color="red", weight=0]; 3128[label="xuu581 == xuu591",fontsize=16,color="magenta"];3128 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3129 -> 558[label="",style="dashed", color="red", weight=0]; 3129[label="xuu581 == xuu591",fontsize=16,color="magenta"];3129 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3130[label="xuu581",fontsize=16,color="green",shape="box"];3131[label="xuu591",fontsize=16,color="green",shape="box"];3132[label="xuu581",fontsize=16,color="green",shape="box"];3133[label="xuu591",fontsize=16,color="green",shape="box"];3134[label="xuu581",fontsize=16,color="green",shape="box"];3135[label="xuu591",fontsize=16,color="green",shape="box"];3136[label="xuu581",fontsize=16,color="green",shape="box"];3137[label="xuu591",fontsize=16,color="green",shape="box"];3138[label="xuu581",fontsize=16,color="green",shape="box"];3139[label="xuu591",fontsize=16,color="green",shape="box"];3140[label="xuu581",fontsize=16,color="green",shape="box"];3141[label="xuu591",fontsize=16,color="green",shape="box"];3142[label="xuu581",fontsize=16,color="green",shape="box"];3143[label="xuu591",fontsize=16,color="green",shape="box"];3144[label="xuu581",fontsize=16,color="green",shape="box"];3145[label="xuu591",fontsize=16,color="green",shape="box"];3146[label="xuu581",fontsize=16,color="green",shape="box"];3147[label="xuu591",fontsize=16,color="green",shape="box"];3148[label="xuu581",fontsize=16,color="green",shape="box"];3149[label="xuu591",fontsize=16,color="green",shape="box"];3150[label="xuu581",fontsize=16,color="green",shape="box"];3151[label="xuu591",fontsize=16,color="green",shape="box"];3152[label="xuu581",fontsize=16,color="green",shape="box"];3153[label="xuu591",fontsize=16,color="green",shape="box"];3154[label="xuu581",fontsize=16,color="green",shape="box"];3155[label="xuu591",fontsize=16,color="green",shape="box"];3156[label="xuu581",fontsize=16,color="green",shape="box"];3157[label="xuu591",fontsize=16,color="green",shape="box"];3159 -> 1319[label="",style="dashed", color="red", weight=0]; 3159[label="FiniteMap.sizeFM xuu634 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3159 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3158[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 xuu217",fontsize=16,color="burlywood",shape="triangle"];4608[label="xuu217/False",fontsize=10,color="white",style="solid",shape="box"];3158 -> 4608[label="",style="solid", color="burlywood", weight=9]; 4608 -> 3229[label="",style="solid", color="burlywood", weight=3]; 4609[label="xuu217/True",fontsize=10,color="white",style="solid",shape="box"];3158 -> 4609[label="",style="solid", color="burlywood", weight=9]; 4609 -> 3230[label="",style="solid", color="burlywood", weight=3]; 3160[label="xuu414",fontsize=16,color="green",shape="box"];3161[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3161 -> 3231[label="",style="solid", color="black", weight=3]; 3162 -> 3440[label="",style="dashed", color="red", weight=0]; 3162[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu410 xuu411 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu61 xuu63 xuu413) xuu414",fontsize=16,color="magenta"];3162 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3467[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3164[label="xuu293",fontsize=16,color="green",shape="box"];3165[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3165 -> 3233[label="",style="solid", color="black", weight=3]; 3166 -> 3440[label="",style="dashed", color="red", weight=0]; 3166[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu290 xuu291 xuu293 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu600 : xuu601) xuu61 xuu294 xuu64)",fontsize=16,color="magenta"];3166 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3167[label="error []",fontsize=16,color="red",shape="box"];3168 -> 3440[label="",style="dashed", color="red", weight=0]; 3168[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu600 : xuu601) xuu61 xuu29 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];3168 -> 3476[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3171[label="xuu592",fontsize=16,color="green",shape="box"];3172[label="xuu582",fontsize=16,color="green",shape="box"];3173[label="xuu592",fontsize=16,color="green",shape="box"];3174[label="xuu582",fontsize=16,color="green",shape="box"];3175[label="xuu592",fontsize=16,color="green",shape="box"];3176[label="xuu582",fontsize=16,color="green",shape="box"];3177[label="xuu592",fontsize=16,color="green",shape="box"];3178[label="xuu582",fontsize=16,color="green",shape="box"];3179[label="xuu592",fontsize=16,color="green",shape="box"];3180[label="xuu582",fontsize=16,color="green",shape="box"];3181[label="xuu592",fontsize=16,color="green",shape="box"];3182[label="xuu582",fontsize=16,color="green",shape="box"];3183[label="xuu592",fontsize=16,color="green",shape="box"];3184[label="xuu582",fontsize=16,color="green",shape="box"];3185[label="xuu592",fontsize=16,color="green",shape="box"];3186[label="xuu582",fontsize=16,color="green",shape="box"];3187[label="xuu592",fontsize=16,color="green",shape="box"];3188[label="xuu582",fontsize=16,color="green",shape="box"];3189[label="xuu592",fontsize=16,color="green",shape="box"];3190[label="xuu582",fontsize=16,color="green",shape="box"];3191[label="xuu592",fontsize=16,color="green",shape="box"];3192[label="xuu582",fontsize=16,color="green",shape="box"];3193[label="xuu592",fontsize=16,color="green",shape="box"];3194[label="xuu582",fontsize=16,color="green",shape="box"];3195[label="xuu592",fontsize=16,color="green",shape="box"];3196[label="xuu582",fontsize=16,color="green",shape="box"];3197[label="xuu592",fontsize=16,color="green",shape="box"];3198[label="xuu582",fontsize=16,color="green",shape="box"];3199[label="xuu591",fontsize=16,color="green",shape="box"];3200[label="xuu581",fontsize=16,color="green",shape="box"];3201[label="xuu591",fontsize=16,color="green",shape="box"];3202[label="xuu581",fontsize=16,color="green",shape="box"];3203[label="xuu591",fontsize=16,color="green",shape="box"];3204[label="xuu581",fontsize=16,color="green",shape="box"];3205[label="xuu591",fontsize=16,color="green",shape="box"];3206[label="xuu581",fontsize=16,color="green",shape="box"];3207[label="xuu591",fontsize=16,color="green",shape="box"];3208[label="xuu581",fontsize=16,color="green",shape="box"];3209[label="xuu591",fontsize=16,color="green",shape="box"];3210[label="xuu581",fontsize=16,color="green",shape="box"];3211[label="xuu591",fontsize=16,color="green",shape="box"];3212[label="xuu581",fontsize=16,color="green",shape="box"];3213[label="xuu591",fontsize=16,color="green",shape="box"];3214[label="xuu581",fontsize=16,color="green",shape="box"];3215[label="xuu591",fontsize=16,color="green",shape="box"];3216[label="xuu581",fontsize=16,color="green",shape="box"];3217[label="xuu591",fontsize=16,color="green",shape="box"];3218[label="xuu581",fontsize=16,color="green",shape="box"];3219[label="xuu591",fontsize=16,color="green",shape="box"];3220[label="xuu581",fontsize=16,color="green",shape="box"];3221[label="xuu591",fontsize=16,color="green",shape="box"];3222[label="xuu581",fontsize=16,color="green",shape="box"];3223[label="xuu591",fontsize=16,color="green",shape="box"];3224[label="xuu581",fontsize=16,color="green",shape="box"];3225[label="xuu591",fontsize=16,color="green",shape="box"];3226[label="xuu581",fontsize=16,color="green",shape="box"];3227 -> 1754[label="",style="dashed", color="red", weight=0]; 3227[label="FiniteMap.sizeFM xuu634",fontsize=16,color="magenta"];3227 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3228 -> 454[label="",style="dashed", color="red", weight=0]; 3228[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3228 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3229[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 False",fontsize=16,color="black",shape="box"];3229 -> 3262[label="",style="solid", color="black", weight=3]; 3230[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 True",fontsize=16,color="black",shape="box"];3230 -> 3263[label="",style="solid", color="black", weight=3]; 3231[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="burlywood",shape="box"];4610[label="xuu413/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3231 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 3264[label="",style="solid", color="burlywood", weight=3]; 4611[label="xuu413/FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134",fontsize=10,color="white",style="solid",shape="box"];3231 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 3265[label="",style="solid", color="burlywood", weight=3]; 3466[label="xuu414",fontsize=16,color="green",shape="box"];3467[label="xuu410",fontsize=16,color="green",shape="box"];3468[label="xuu411",fontsize=16,color="green",shape="box"];3469 -> 3440[label="",style="dashed", color="red", weight=0]; 3469[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu61 xuu63 xuu413",fontsize=16,color="magenta"];3469 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3470[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3233[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu64",fontsize=16,color="burlywood",shape="box"];4612[label="xuu294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 3267[label="",style="solid", color="burlywood", weight=3]; 4613[label="xuu294/FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 3268[label="",style="solid", color="burlywood", weight=3]; 3471 -> 3440[label="",style="dashed", color="red", weight=0]; 3471[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu600 : xuu601) xuu61 xuu294 xuu64",fontsize=16,color="magenta"];3471 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3472[label="xuu290",fontsize=16,color="green",shape="box"];3473[label="xuu291",fontsize=16,color="green",shape="box"];3474[label="xuu293",fontsize=16,color="green",shape="box"];3475[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3476 -> 3440[label="",style="dashed", color="red", weight=0]; 3476[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3476 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3477[label="xuu6430",fontsize=16,color="green",shape="box"];3478[label="xuu6431",fontsize=16,color="green",shape="box"];3479 -> 3440[label="",style="dashed", color="red", weight=0]; 3479[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu600 : xuu601) xuu61 xuu29 xuu6433",fontsize=16,color="magenta"];3479 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3480[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3259[label="xuu634",fontsize=16,color="green",shape="box"];3260[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3261 -> 1754[label="",style="dashed", color="red", weight=0]; 3261[label="FiniteMap.sizeFM xuu633",fontsize=16,color="magenta"];3261 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3262[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 otherwise",fontsize=16,color="black",shape="box"];3262 -> 3306[label="",style="solid", color="black", weight=3]; 3263[label="FiniteMap.mkBalBranch6Single_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41",fontsize=16,color="black",shape="box"];3263 -> 3307[label="",style="solid", color="black", weight=3]; 3264[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414)",fontsize=16,color="black",shape="box"];3264 -> 3308[label="",style="solid", color="black", weight=3]; 3265[label="FiniteMap.mkBalBranch6Double_L [] xuu61 xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414) xuu63 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414)",fontsize=16,color="black",shape="box"];3265 -> 3309[label="",style="solid", color="black", weight=3]; 3617[label="xuu413",fontsize=16,color="green",shape="box"];3618[label="[]",fontsize=16,color="green",shape="box"];3619[label="xuu61",fontsize=16,color="green",shape="box"];3620[label="xuu63",fontsize=16,color="green",shape="box"];3621[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3267[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3267 -> 3312[label="",style="solid", color="black", weight=3]; 3268[label="FiniteMap.mkBalBranch6Double_R (xuu600 : xuu601) xuu61 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu64 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu64",fontsize=16,color="black",shape="box"];3268 -> 3313[label="",style="solid", color="black", weight=3]; 3622[label="xuu64",fontsize=16,color="green",shape="box"];3623[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3624[label="xuu61",fontsize=16,color="green",shape="box"];3625[label="xuu294",fontsize=16,color="green",shape="box"];3626[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3627[label="xuu644",fontsize=16,color="green",shape="box"];3628[label="xuu640",fontsize=16,color="green",shape="box"];3629[label="xuu641",fontsize=16,color="green",shape="box"];3630[label="xuu6434",fontsize=16,color="green",shape="box"];3631[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3632[label="xuu6433",fontsize=16,color="green",shape="box"];3633[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3634[label="xuu61",fontsize=16,color="green",shape="box"];3635[label="xuu29",fontsize=16,color="green",shape="box"];3636[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3305[label="xuu633",fontsize=16,color="green",shape="box"];3306[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 xuu630 xuu631 xuu632 xuu633 xuu634 True",fontsize=16,color="black",shape="box"];3306 -> 3318[label="",style="solid", color="black", weight=3]; 3307 -> 3440[label="",style="dashed", color="red", weight=0]; 3307[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu630 xuu631 xuu633 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu61 xuu634 xuu41)",fontsize=16,color="magenta"];3307 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3308[label="error []",fontsize=16,color="red",shape="box"];3309 -> 3440[label="",style="dashed", color="red", weight=0]; 3309[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4130 xuu4131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu61 xuu63 xuu4133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414)",fontsize=16,color="magenta"];3309 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3312[label="error []",fontsize=16,color="red",shape="box"];3313 -> 3440[label="",style="dashed", color="red", weight=0]; 3313[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2940 xuu2941 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu600 : xuu601) xuu61 xuu2944 xuu64)",fontsize=16,color="magenta"];3313 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3318[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 xuu634) xuu41",fontsize=16,color="burlywood",shape="box"];4614[label="xuu634/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 3362[label="",style="solid", color="burlywood", weight=3]; 4615[label="xuu634/FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344",fontsize=10,color="white",style="solid",shape="box"];3318 -> 4615[label="",style="solid", color="burlywood", weight=9]; 4615 -> 3363[label="",style="solid", color="burlywood", weight=3]; 3511 -> 3440[label="",style="dashed", color="red", weight=0]; 3511[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu61 xuu634 xuu41",fontsize=16,color="magenta"];3511 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3512[label="xuu630",fontsize=16,color="green",shape="box"];3513[label="xuu631",fontsize=16,color="green",shape="box"];3514[label="xuu633",fontsize=16,color="green",shape="box"];3515[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3516 -> 3440[label="",style="dashed", color="red", weight=0]; 3516[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414",fontsize=16,color="magenta"];3516 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3517[label="xuu4130",fontsize=16,color="green",shape="box"];3518[label="xuu4131",fontsize=16,color="green",shape="box"];3519 -> 3440[label="",style="dashed", color="red", weight=0]; 3519[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu61 xuu63 xuu4133",fontsize=16,color="magenta"];3519 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3520[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3526 -> 3440[label="",style="dashed", color="red", weight=0]; 3526[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu600 : xuu601) xuu61 xuu2944 xuu64",fontsize=16,color="magenta"];3526 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3527[label="xuu2940",fontsize=16,color="green",shape="box"];3528[label="xuu2941",fontsize=16,color="green",shape="box"];3529 -> 3440[label="",style="dashed", color="red", weight=0]; 3529[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943",fontsize=16,color="magenta"];3529 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3530[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3362[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 FiniteMap.EmptyFM) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 FiniteMap.EmptyFM) xuu41",fontsize=16,color="black",shape="box"];3362 -> 3662[label="",style="solid", color="black", weight=3]; 3363[label="FiniteMap.mkBalBranch6Double_R [] xuu61 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 (FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344)) xuu41 (FiniteMap.Branch xuu630 xuu631 xuu632 xuu633 (FiniteMap.Branch xuu6340 xuu6341 xuu6342 xuu6343 xuu6344)) xuu41",fontsize=16,color="black",shape="box"];3363 -> 3663[label="",style="solid", color="black", weight=3]; 3637[label="xuu41",fontsize=16,color="green",shape="box"];3638[label="[]",fontsize=16,color="green",shape="box"];3639[label="xuu61",fontsize=16,color="green",shape="box"];3640[label="xuu634",fontsize=16,color="green",shape="box"];3641[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3642[label="xuu414",fontsize=16,color="green",shape="box"];3643[label="xuu410",fontsize=16,color="green",shape="box"];3644[label="xuu411",fontsize=16,color="green",shape="box"];3645[label="xuu4134",fontsize=16,color="green",shape="box"];3646[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3647[label="xuu4133",fontsize=16,color="green",shape="box"];3648[label="[]",fontsize=16,color="green",shape="box"];3649[label="xuu61",fontsize=16,color="green",shape="box"];3650[label="xuu63",fontsize=16,color="green",shape="box"];3651[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3652[label="xuu64",fontsize=16,color="green",shape="box"];3653[label="xuu600 : xuu601",fontsize=16,color="green",shape="box"];3654[label="xuu61",fontsize=16,color="green",shape="box"];3655[label="xuu2944",fontsize=16,color="green",shape="box"];3656[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3657[label="xuu2943",fontsize=16,color="green",shape="box"];3658[label="xuu290",fontsize=16,color="green",shape="box"];3659[label="xuu291",fontsize=16,color="green",shape="box"];3660[label="xuu293",fontsize=16,color="green",shape="box"];3661[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3662[label="error []",fontsize=16,color="red",shape="box"];3663 -> 3440[label="",style="dashed", color="red", weight=0]; 3663[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu6340 xuu6341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu630 xuu631 xuu633 xuu6343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu61 xuu6344 xuu41)",fontsize=16,color="magenta"];3663 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3440[label="",style="dashed", color="red", weight=0]; 3665[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu61 xuu6344 xuu41",fontsize=16,color="magenta"];3665 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3666[label="xuu6340",fontsize=16,color="green",shape="box"];3667[label="xuu6341",fontsize=16,color="green",shape="box"];3668 -> 3440[label="",style="dashed", color="red", weight=0]; 3668[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu630 xuu631 xuu633 xuu6343",fontsize=16,color="magenta"];3668 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3669[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3671[label="xuu41",fontsize=16,color="green",shape="box"];3672[label="[]",fontsize=16,color="green",shape="box"];3673[label="xuu61",fontsize=16,color="green",shape="box"];3674[label="xuu6344",fontsize=16,color="green",shape="box"];3675[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3676[label="xuu6343",fontsize=16,color="green",shape="box"];3677[label="xuu630",fontsize=16,color="green",shape="box"];3678[label="xuu631",fontsize=16,color="green",shape="box"];3679[label="xuu633",fontsize=16,color="green",shape="box"];3680[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat(xuu31100000, xuu60000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The TRS R consists of the following rules: new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, Branch(xuu290, xuu291, xuu292, xuu293, xuu294), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, xuu294, xuu64, new_lt12(new_sizeFM0(xuu294, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu293, h, ba))), h, ba) new_esEs30(xuu99, xuu101, app(app(ty_@2, he), hf)) -> new_esEs19(xuu99, xuu101, he, hf) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], dhb)) -> new_esEs13(xuu31100002, xuu60002, dhb) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, bc) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, h) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, h), app(ty_[], h)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs23(xuu3110000, xuu6000, ffc, ffd, ffe) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, ccf)) -> new_esEs21(xuu3110000, xuu6000, ccf) new_ltEs4(xuu58, xuu59, ea) -> new_fsEs(new_compare6(xuu58, xuu59, ea)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, bbc) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], fag)) -> new_ltEs4(xuu582, xuu592, fag) new_lt20(xuu70, xuu73, app(app(ty_Either, bfb), bfc)) -> new_lt17(xuu70, xuu73, bfb, bfc) new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(app(ty_@2, caf), cag)) -> new_ltEs7(xuu580, xuu590, caf, cag) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, fah)) -> new_ltEs8(xuu582, xuu592, fah) new_emptyFM(h, ba) -> EmptyFM new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs23(xuu69, xuu72, bga, bgb, bgc) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, ca), cb), cc), bc) -> new_esEs23(xuu31100000, xuu60000, ca, cb, cc) new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) -> Branch(:(xuu25, xuu26), new_addListToFM0(xuu21, xuu27, ec), xuu22, xuu23, xuu24) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, ebg), ebh)) -> new_esEs12(xuu31100000, xuu60000, ebg, ebh) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, efd)) -> new_ltEs18(xuu580, xuu590, efd) new_lt19(xuu99, xuu101, app(ty_Ratio, bhc)) -> new_lt18(xuu99, xuu101, bhc) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, cbh, cca, ccb) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_mkBranch(xuu292, xuu293, xuu294, xuu295, xuu296, ed, ee) -> Branch(xuu293, xuu294, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu295, ed, ee)), new_sizeFM(xuu296, ed, ee)), xuu295, xuu296) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], bhf), bcd) -> new_ltEs4(xuu580, xuu590, bhf) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, cd), bc) -> new_esEs24(xuu31100000, xuu60000, cd) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], fca)) -> new_lt7(xuu581, xuu591, fca) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), efe, eff) -> new_asAs(new_esEs37(xuu31100000, xuu60000, efe), new_esEs36(xuu31100001, xuu60001, eff)) new_lt21(xuu69, xuu72, app(ty_Maybe, bfh)) -> new_lt8(xuu69, xuu72, bfh) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, eb, ec) -> new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), def, deg) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, egd)) -> new_esEs21(xuu31100001, xuu60001, egd) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, ccd, cce) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, ccd, cce) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, bc) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), bcc, bcd) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), bhb) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, bce) -> new_fsEs(new_compare15(xuu58, xuu59, bce)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, ga)) -> new_esEs24(xuu31100000, xuu60000, ga) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, GT, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) new_lt17(xuu99, xuu101, dfc, dfd) -> new_esEs25(new_compare31(xuu99, xuu101, dfc, dfd), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, beg), beh), bfa)) -> new_lt13(xuu70, xuu73, beg, beh, bfa) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bd), be), bc) -> new_esEs12(xuu31100000, xuu60000, bd, be) new_esEs26(xuu580, xuu590, app(ty_Maybe, chb)) -> new_esEs21(xuu580, xuu590, chb) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fhg), fhh), gaa)) -> new_esEs23(xuu3110001, xuu6001, fhg, fhh, gaa) new_primPlusInt(Pos(xuu1970), Pos(xuu1960)) -> Pos(new_primPlusNat0(xuu1970, xuu1960)) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs23(xuu3110000, xuu6000, ddg, ddh, dea) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs13(xuu87, xuu88, bae, baf, bag) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(app(ty_Either, cbe), cbf)) -> new_ltEs17(xuu580, xuu590, cbe, cbf) new_gt(xuu187, xuu186) -> new_esEs25(new_compare14(xuu187, xuu186), GT) new_esEs39(xuu580, xuu590, app(ty_Ratio, feb)) -> new_esEs24(xuu580, xuu590, feb) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, bfd)) -> new_esEs24(xuu70, xuu73, bfd) new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, dah), dba)) -> new_esEs19(xuu3110002, xuu6002, dah, dba) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, ech) -> GT new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, app(ty_[], ffg)) -> new_esEs13(xuu3110000, xuu6000, ffg) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, ce), bc)) -> new_esEs12(xuu3110000, xuu6000, ce, bc) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, bbe), bbf)) -> new_ltEs7(xuu58, xuu59, bbe, bbf) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_sizeFM(EmptyFM, ed, ee) -> Pos(Zero) new_lt19(xuu99, xuu101, app(ty_Maybe, ccc)) -> new_lt8(xuu99, xuu101, ccc) new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, dhg)) -> new_esEs21(xuu31100002, xuu60002, dhg) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), ef) -> new_asAs(new_esEs27(xuu31100000, xuu60000, ef), new_esEs13(xuu31100001, xuu60001, ef)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, cec), ced)) -> new_ltEs7(xuu80, xuu81, cec, ced) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, fab)) -> new_esEs24(xuu31100000, xuu60000, fab) new_ltEs5(xuu80, xuu81, app(app(ty_Either, cfb), cfc)) -> new_ltEs17(xuu80, xuu81, cfb, cfc) new_lt23(xuu580, xuu590, app(app(app(ty_@3, fde), fdf), fdg)) -> new_lt13(xuu580, xuu590, fde, fdf, fdg) new_esEs39(xuu580, xuu590, app(ty_[], fdc)) -> new_esEs13(xuu580, xuu590, fdc) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs23(xuu3110002, xuu6002, dbc, dbd, dbe) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, he, hf) -> new_esEs25(new_compare18(xuu99, xuu101, he, hf), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], cha)) -> new_esEs13(xuu580, xuu590, cha) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, fcb)) -> new_esEs21(xuu581, xuu591, fcb) new_ltEs20(xuu87, xuu88, app(app(ty_Either, bah), bba)) -> new_ltEs17(xuu87, xuu88, bah, bba) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbh, bca, bcb) -> new_pePe(new_lt23(xuu580, xuu590, bbh), new_asAs(new_esEs39(xuu580, xuu590, bbh), new_pePe(new_lt22(xuu581, xuu591, bca), new_asAs(new_esEs38(xuu581, xuu591, bca), new_ltEs24(xuu582, xuu592, bcb))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, bc) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, EmptyFM, True, h, ba) -> error([]) new_esEs13(:(xuu31100000, xuu31100001), [], ef) -> False new_esEs13([], :(xuu60000, xuu60001), ef) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, xuu413, xuu414, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu410, xuu411, new_mkBranch(Succ(Succ(Succ(Zero))), [], xuu61, xuu63, xuu413, app(ty_[], h), ba), xuu414, app(ty_[], h), ba) new_ltEs19(xuu581, xuu591, app(ty_Maybe, cfh)) -> new_ltEs8(xuu581, xuu591, cfh) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, ebb), ebc), ebd)) -> new_esEs23(xuu31100001, xuu60001, ebb, ebc, ebd) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], eee)) -> new_ltEs4(xuu580, xuu590, eee) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, efh), ega)) -> new_esEs12(xuu31100001, xuu60001, efh, ega) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, bcc), bcd)) -> new_ltEs17(xuu58, xuu59, bcc, bcd) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, bfe), bff)) -> new_esEs19(xuu69, xuu72, bfe, bff) new_esEs36(xuu31100001, xuu60001, app(ty_[], efg)) -> new_esEs13(xuu31100001, xuu60001, efg) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, gb)) -> new_compare7(xuu311000, xuu600, gb) new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, eb, ec) -> new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, bc) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, app(ty_Maybe, cef)) -> new_ltEs8(xuu80, xuu81, cef) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, feh), ffa)) -> new_esEs19(xuu3110000, xuu6000, feh, ffa) new_compare25(xuu58, xuu59, False, bbd) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, bbd), bbd) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, dfa, dfb) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, dfa), new_asAs(new_esEs30(xuu99, xuu101, dfa), new_ltEs21(xuu100, xuu102, dfb)), dfa, dfb) new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, EQ, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, eca), ecb)) -> new_esEs19(xuu31100000, xuu60000, eca, ecb) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, ddd), dde)) -> new_esEs19(xuu3110000, xuu6000, ddd, dde) new_compare10(xuu156, xuu157, xuu158, xuu159, False, ccd, cce) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, fcf), fcg)) -> new_esEs12(xuu581, xuu591, fcf, fcg) new_lt21(xuu69, xuu72, app(ty_Ratio, bgf)) -> new_lt18(xuu69, xuu72, bgf) new_ltEs20(xuu87, xuu88, app(app(ty_@2, baa), bab)) -> new_ltEs7(xuu87, xuu88, baa, bab) new_compare210(xuu99, xuu100, xuu101, xuu102, True, dfa, dfb) -> EQ new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, bcd) -> new_ltEs12(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, cbh, cca, ccb) -> LT new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(ty_Maybe, dd)) -> new_esEs21(xuu31100000, xuu60000, dd) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs23(xuu99, xuu101, bgg, bgh, bha) new_compare25(xuu58, xuu59, True, bbd) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bhh), caa), cab), bcd) -> new_ltEs13(xuu580, xuu590, bhh, caa, cab) new_addListToFM0(xuu61, xuu31101, ba) -> xuu31101 new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, chf), chg)) -> new_esEs12(xuu580, xuu590, chf, chg) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, bhg), bcd) -> new_ltEs8(xuu580, xuu590, bhg) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs23(xuu3110000, xuu6000, ha, hb, hc) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch50(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, xuu64, new_gt(new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba))), h, ba) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, ecd), ece), ecf)) -> new_esEs23(xuu31100000, xuu60000, ecd, ece, ecf) new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, LT, h, ba) -> new_mkBranch(Zero, :(xuu600, xuu601), xuu61, xuu29, xuu64, app(ty_[], h), ba) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, cdh)) -> new_esEs24(xuu31100000, xuu60000, cdh) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, cae), bcd) -> new_ltEs18(xuu580, xuu590, cae) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, bgd), bge)) -> new_esEs12(xuu69, xuu72, bgd, bge) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fef), feg)) -> new_esEs12(xuu3110000, xuu6000, fef, feg) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_primPlusInt(Neg(xuu1970), Neg(xuu1960)) -> Neg(new_primPlusNat0(xuu1970, xuu1960)) new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) -> Branch(:(xuu311000, xuu311001), new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, bcd) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, egh)) -> new_esEs24(xuu31100001, xuu60001, egh) new_esEs39(xuu580, xuu590, app(ty_Maybe, fdd)) -> new_esEs21(xuu580, xuu590, fdd) new_lt23(xuu580, xuu590, app(ty_Maybe, fdd)) -> new_lt8(xuu580, xuu590, fdd) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, eda), edb)) -> new_compare18(xuu37, xuu38, eda, edb) new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, eb, ec) -> new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) new_compare0(xuu311000, xuu600, app(app(ty_@2, ded), dee)) -> new_compare18(xuu311000, xuu600, ded, dee) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(ty_[], cf)) -> new_esEs13(xuu31100000, xuu60000, cf) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, eag), eah)) -> new_esEs19(xuu31100001, xuu60001, eag, eah) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], fca)) -> new_esEs13(xuu581, xuu591, fca) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], bb), bc) -> new_esEs13(xuu31100000, xuu60000, bb) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, fcf), fcg)) -> new_lt17(xuu581, xuu591, fcf, fcg) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, deh)) -> new_compare15(xuu311000, xuu600, deh) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], gc)) -> new_esEs13(xuu3110000, xuu6000, gc) new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, GT, h, ba) -> new_mkBalBranch(xuu61, xuu63, new_addToFM_C0(xuu64, [], xuu31101, h, ba), h, ba) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, ccc)) -> new_esEs21(xuu99, xuu101, ccc) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, cea, ceb) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, LT, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, eeb)) -> new_compare15(xuu37, xuu38, eeb) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs30(xuu99, xuu101, app(app(ty_Either, dfc), dfd)) -> new_esEs12(xuu99, xuu101, dfc, dfd) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, bda), bdb)) -> new_ltEs7(xuu71, xuu74, bda, bdb) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fff)) -> new_esEs24(xuu3110000, xuu6000, fff) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, cgg), cgh)) -> new_esEs19(xuu580, xuu590, cgg, cgh) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs23(xuu581, xuu591, fcc, fcd, fce) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, edd)) -> new_compare7(xuu37, xuu38, edd) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, eef)) -> new_ltEs8(xuu580, xuu590, eef) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(app(app(ty_@3, de), df), dg)) -> new_esEs23(xuu31100000, xuu60000, de, df, dg) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, gb) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, chc), chd), che)) -> new_lt13(xuu580, xuu590, chc, chd, che) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, fdh), fea)) -> new_lt17(xuu580, xuu590, fdh, fea) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, bcd) -> new_ltEs15(xuu580, xuu590) new_ltEs22(xuu58, xuu59, app(ty_[], ea)) -> new_ltEs4(xuu58, xuu59, ea) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, fgh)) -> new_esEs24(xuu3110000, xuu6000, fgh) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], bhb) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs17(True, True) -> True new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, ffh), fga)) -> new_esEs12(xuu3110000, xuu6000, ffh, fga) new_lt13(xuu99, xuu101, bgg, bgh, bha) -> new_esEs25(new_compare16(xuu99, xuu101, bgg, bgh, bha), LT) new_lt18(xuu99, xuu101, bhc) -> new_esEs25(new_compare15(xuu99, xuu101, bhc), LT) new_sizeFM0(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba) -> xuu642 new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, bcd) -> new_ltEs10(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_sizeFM(Branch(xuu2960, xuu2961, xuu2962, xuu2963, xuu2964), ed, ee) -> xuu2962 new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, h, ba) -> Branch([], new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), :(xuu600, xuu601), xuu61, xuu29, xuu6433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_[], h), ba), app(ty_[], h), ba) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, beg), beh), bfa)) -> new_esEs23(xuu70, xuu73, beg, beh, bfa) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, bfb), bfc)) -> new_esEs12(xuu70, xuu73, bfb, bfc) new_mkBalBranch6MkBalBranch110(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, EmptyFM, xuu64, False, h, ba) -> error([]) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs23(xuu3110000, xuu6000, fge, fgf, fgg) new_lt21(xuu69, xuu72, app(app(ty_Either, bgd), bge)) -> new_lt17(xuu69, xuu72, bgd, bge) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs5(xuu3110000, xuu6000, app(ty_[], ef)) -> new_esEs13(xuu3110000, xuu6000, ef) new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, EmptyFM, xuu414, False, h, ba) -> error([]) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, bc) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, ffb)) -> new_esEs21(xuu3110000, xuu6000, ffb) new_compare27(xuu87, xuu88, True, hg, hh) -> EQ new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, bhc)) -> new_esEs24(xuu99, xuu101, bhc) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, bhd), bhe), bcd) -> new_ltEs7(xuu580, xuu590, bhd, bhe) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, chf), chg)) -> new_lt17(xuu580, xuu590, chf, chg) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fec, fed) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], dfg)) -> new_ltEs4(xuu100, xuu102, dfg) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ded, dee) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, ded), new_esEs4(xuu3110001, xuu6001, dee)), ded, dee) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, EQ, h, ba) -> new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba) -> new_sizeFM0(xuu63, h, ba) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, ecc)) -> new_esEs21(xuu31100000, xuu60000, ecc) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), gb) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs23(xuu31100000, xuu60000, ehg, ehh, faa) new_ltEs5(xuu80, xuu81, app(ty_[], cee)) -> new_ltEs4(xuu80, xuu81, cee) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, bcf, bcg, bch) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), dec) -> new_asAs(new_esEs29(xuu31100000, xuu60000, dec), new_esEs28(xuu31100001, xuu60001, dec)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_esEs8(xuu3110001, xuu6001, app(ty_[], dbg)) -> new_esEs13(xuu3110001, xuu6001, dbg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, bcd) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, dhc), dhd)) -> new_esEs12(xuu31100002, xuu60002, dhc, dhd) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, fgd)) -> new_esEs21(xuu3110000, xuu6000, fgd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs23(xuu31100000, xuu60000, cde, cdf, cdg) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, ebe)) -> new_esEs24(xuu31100001, xuu60001, ebe) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_primMinusNat0(Zero, Succ(xuu19600)) -> Neg(Succ(xuu19600)) new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt12(new_sizeFM0(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu644, h, ba))), h, ba) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, fb), fc)) -> new_esEs19(xuu31100000, xuu60000, fb, fc) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, fae), faf)) -> new_ltEs7(xuu582, xuu592, fae, faf) new_ltEs17(Right(xuu580), Left(xuu590), bcc, bcd) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_addToFM_C0(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, h, ba) -> new_mkBalBranch0(xuu600, xuu601, xuu61, new_addToFM_C0(xuu63, [], xuu31101, h, ba), xuu64, h, ba) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], bac)) -> new_ltEs4(xuu87, xuu88, bac) new_mkBalBranch0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu600, xuu601, xuu61, xuu29, xuu64, new_compare14(new_primPlusInt(new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_esEs35(xuu69, xuu72, app(ty_Maybe, bfh)) -> new_esEs21(xuu69, xuu72, bfh) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, eac)) -> new_esEs24(xuu31100002, xuu60002, eac) new_compare110(xuu125, xuu126, True, bbc) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], cfg)) -> new_ltEs4(xuu581, xuu591, cfg) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, fcb)) -> new_lt8(xuu581, xuu591, fcb) new_esEs34(xuu70, xuu73, app(ty_Maybe, bef)) -> new_esEs21(xuu70, xuu73, bef) new_mkBalBranch6MkBalBranch40(xuu600, xuu601, xuu61, xuu29, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, xuu29, xuu64, new_gt(new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba))), h, ba) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs23(xuu31100001, xuu60001, ege, egf, egg) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, eae), eaf)) -> new_esEs12(xuu31100001, xuu60001, eae, eaf) new_esEs7(xuu3110002, xuu6002, app(ty_[], dae)) -> new_esEs13(xuu3110002, xuu6002, dae) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, daa) -> new_esEs25(new_compare6(xuu99, xuu101, daa), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_mkBalBranch6MkBalBranch110(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, xuu294, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu290, xuu291, xuu293, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), :(xuu600, xuu601), xuu61, xuu294, xuu64, app(ty_[], h), ba), app(ty_[], h), ba) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, eh), fa)) -> new_esEs12(xuu31100000, xuu60000, eh, fa) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(ty_Ratio, dh)) -> new_esEs24(xuu31100000, xuu60000, dh) new_esEs39(xuu580, xuu590, app(app(ty_@2, fda), fdb)) -> new_esEs19(xuu580, xuu590, fda, fdb) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, app(ty_[], fha)) -> new_esEs13(xuu3110001, xuu6001, fha) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, eba)) -> new_esEs21(xuu31100001, xuu60001, eba) new_mkBalBranch6MkBalBranch3(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBranch(Succ(Zero), [], xuu61, xuu63, xuu41, app(ty_[], h), ba) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, bfd)) -> new_lt18(xuu70, xuu73, bfd) new_mkBalBranch6Size_r0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_sizeFM0(xuu64, h, ba) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, bcd) -> new_ltEs11(xuu580, xuu590) new_lt22(xuu581, xuu591, app(app(ty_@2, fbg), fbh)) -> new_lt6(xuu581, xuu591, fbg, fbh) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, dga), dgb), dgc)) -> new_ltEs13(xuu100, xuu102, dga, dgb, dgc) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, dfc), dfd)) -> new_lt17(xuu99, xuu101, dfc, dfd) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, eec), eed)) -> new_ltEs7(xuu580, xuu590, eec, eed) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs23(xuu3110001, xuu6001, dce, dcf, dcg) new_esEs10(xuu3110000, xuu6000, app(ty_[], fee)) -> new_esEs13(xuu3110000, xuu6000, fee) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, gd), ge)) -> new_esEs12(xuu3110000, xuu6000, gd, ge) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, dfe), dff)) -> new_ltEs7(xuu100, xuu102, dfe, dff) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, efb), efc)) -> new_ltEs17(xuu580, xuu590, efb, efc) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], edc)) -> new_compare6(xuu37, xuu38, edc) new_compare0(xuu311000, xuu600, app(ty_[], bhb)) -> new_compare6(xuu311000, xuu600, bhb) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, bcd) -> new_ltEs14(xuu580, xuu590) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_compare19(xuu142, xuu143, True, fac, fad) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], bhb) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, app(ty_Ratio, fch)) -> new_esEs24(xuu581, xuu591, fch) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], dda)) -> new_esEs13(xuu3110000, xuu6000, dda) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, ecg)) -> new_esEs24(xuu31100000, xuu60000, ecg) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, dcb), dcc)) -> new_esEs19(xuu3110001, xuu6001, dcb, dcc) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, ede), edf), edg)) -> new_compare16(xuu37, xuu38, ede, edf, edg) new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(ty_[], cah)) -> new_ltEs4(xuu580, xuu590, cah) new_esEs35(xuu69, xuu72, app(ty_[], bfg)) -> new_esEs13(xuu69, xuu72, bfg) new_mkBalBranch6MkBalBranch4(xuu61, xuu63, Branch(xuu410, xuu411, xuu412, xuu413, xuu414), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, xuu413, xuu414, new_lt12(new_sizeFM0(xuu413, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu414, h, ba))), h, ba) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, bc) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], fdc)) -> new_lt7(xuu580, xuu590, fdc) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs13(xuu581, xuu591, cga, cgb, cgc) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs23(xuu580, xuu590, fde, fdf, fdg) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], ef) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, bad)) -> new_ltEs8(xuu87, xuu88, bad) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, cdd)) -> new_esEs21(xuu31100000, xuu60000, cdd) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_primMinusNat0(Succ(xuu19700), Zero) -> Pos(Succ(xuu19700)) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, eeg), eeh), efa)) -> new_ltEs13(xuu580, xuu590, eeg, eeh, efa) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, chb)) -> new_lt8(xuu580, xuu590, chb) new_lt20(xuu70, xuu73, app(ty_Maybe, bef)) -> new_lt8(xuu70, xuu73, bef) new_lt19(xuu99, xuu101, app(app(app(ty_@3, bgg), bgh), bha)) -> new_lt13(xuu99, xuu101, bgg, bgh, bha) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, bcd) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, dhe), dhf)) -> new_esEs19(xuu31100002, xuu60002, dhe, dhf) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, ccc) -> new_esEs25(new_compare7(xuu99, xuu101, ccc), LT) new_mkBalBranch6MkBalBranch5(xuu61, xuu63, xuu41, True, h, ba) -> new_mkBranch(Zero, [], xuu61, xuu63, xuu41, app(ty_[], h), ba) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, cfd)) -> new_ltEs18(xuu80, xuu81, cfd) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, ehf)) -> new_esEs21(xuu31100000, xuu60000, ehf) new_ltEs23(xuu71, xuu74, app(ty_[], bdc)) -> new_ltEs4(xuu71, xuu74, bdc) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fhf)) -> new_esEs21(xuu3110001, xuu6001, fhf) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_addToFM_C0(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, h, ba) -> new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, h, ba) new_primMinusNat0(Succ(xuu19700), Succ(xuu19600)) -> new_primMinusNat0(xuu19700, xuu19600) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, hg, hh) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, hh), hg, hh) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhb) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, bhb) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fec, fed) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, cgd), cge)) -> new_ltEs17(xuu581, xuu591, cgd, cge) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), dgg, dgh, dha) -> new_asAs(new_esEs33(xuu31100000, xuu60000, dgg), new_asAs(new_esEs32(xuu31100001, xuu60001, dgh), new_esEs31(xuu31100002, xuu60002, dha))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_mkBalBranch6Size_l0(xuu600, xuu601, xuu61, xuu29, xuu64, h, ba) -> new_sizeFM0(xuu29, h, ba) new_compare31(Left(xuu3110000), Right(xuu6000), def, deg) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, bgf)) -> new_esEs24(xuu69, xuu72, bgf) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, cgg), cgh)) -> new_lt6(xuu580, xuu590, cgg, cgh) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_mkBalBranch6MkBalBranch30(xuu600, xuu601, xuu61, xuu29, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), :(xuu600, xuu601), xuu61, xuu29, xuu64, app(ty_[], h), ba) new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, bga), bgb), bgc)) -> new_lt13(xuu69, xuu72, bga, bgb, bgc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, cch), cda)) -> new_esEs12(xuu31100000, xuu60000, cch, cda) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs23(xuu3110000, xuu6000, dgg, dgh, dha) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, cac), cad), bcd) -> new_ltEs17(xuu580, xuu590, cac, cad) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, gh)) -> new_esEs21(xuu3110000, xuu6000, gh) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, fd)) -> new_esEs21(xuu31100000, xuu60000, fd) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, chh)) -> new_lt18(xuu580, xuu590, chh) new_ltEs23(xuu71, xuu74, app(app(ty_Either, bdh), bea)) -> new_ltEs17(xuu71, xuu74, bdh, bea) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, fgb), fgc)) -> new_esEs19(xuu3110000, xuu6000, fgb, fgc) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, chh)) -> new_esEs24(xuu580, xuu590, chh) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], ccg)) -> new_esEs13(xuu31100000, xuu60000, ccg) new_ltEs21(xuu100, xuu102, app(app(ty_Either, dgd), dge)) -> new_ltEs17(xuu100, xuu102, dgd, dge) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Just(xuu6000), gb) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, gb), gb) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, edh), eea)) -> new_compare31(xuu37, xuu38, edh, eea) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, bc) -> new_esEs17(xuu31100000, xuu60000) new_mkBalBranch6MkBalBranch01(xuu61, xuu63, xuu410, xuu411, xuu412, Branch(xuu4130, xuu4131, xuu4132, xuu4133, xuu4134), xuu414, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu4130, xuu4131, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), [], xuu61, xuu63, xuu4133, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu410, xuu411, xuu4134, xuu414, app(ty_[], h), ba), app(ty_[], h), ba) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, ehb), ehc)) -> new_esEs12(xuu31100000, xuu60000, ehb, ehc) new_mkBalBranch6MkBalBranch110(xuu600, xuu601, xuu61, xuu290, xuu291, xuu292, xuu293, Branch(xuu2940, xuu2941, xuu2942, xuu2943, xuu2944), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2940, xuu2941, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu290, xuu291, xuu293, xuu2943, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), :(xuu600, xuu601), xuu61, xuu2944, xuu64, app(ty_[], h), ba), app(ty_[], h), ba) new_compare19(xuu142, xuu143, False, fac, fad) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs23(xuu31100002, xuu60002, dhh, eaa, eab) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_mkBalBranch6MkBalBranch4(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu61, xuu63, xuu41, new_gt(new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba))), h, ba) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], eha)) -> new_esEs13(xuu31100000, xuu60000, eha) new_ltEs19(xuu581, xuu591, app(app(ty_@2, cfe), cff)) -> new_ltEs7(xuu581, xuu591, cfe, cff) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, bec), bed)) -> new_esEs19(xuu70, xuu73, bec, bed) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, dab), dac), dad)) -> new_compare16(xuu311000, xuu600, dab, dac, dad) new_lt22(xuu581, xuu591, app(app(app(ty_@3, fcc), fcd), fce)) -> new_lt13(xuu581, xuu591, fcc, fcd, fce) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, dbh), dca)) -> new_esEs12(xuu3110001, xuu6001, dbh, dca) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs13(xuu71, xuu74, bde, bdf, bdg) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, deb)) -> new_esEs24(xuu3110000, xuu6000, deb) new_lt20(xuu70, xuu73, app(ty_[], bee)) -> new_lt7(xuu70, xuu73, bee) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, bc) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, bf), bg), bc) -> new_esEs19(xuu31100000, xuu60000, bf, bg) new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, eb, ec) -> new_addToFM_C17(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) new_esEs27(xuu31100000, xuu60000, app(ty_[], eg)) -> new_esEs13(xuu31100000, xuu60000, eg) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, efe), eff)) -> new_esEs19(xuu3110000, xuu6000, efe, eff) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], ebf)) -> new_esEs13(xuu31100000, xuu60000, ebf) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dab, dac, dad) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, dab), new_asAs(new_esEs8(xuu3110001, xuu6001, dac), new_esEs7(xuu3110002, xuu6002, dad))), dab, dac, dad) new_lt19(xuu99, xuu101, app(ty_[], daa)) -> new_lt7(xuu99, xuu101, daa) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, bbg)) -> new_ltEs8(xuu58, xuu59, bbg) new_primPlusInt(Pos(xuu1970), Neg(xuu1960)) -> new_primMinusNat0(xuu1970, xuu1960) new_primPlusInt(Neg(xuu1970), Pos(xuu1960)) -> new_primMinusNat0(xuu1960, xuu1970) new_mkBalBranch6MkBalBranch3(xuu61, EmptyFM, xuu41, True, h, ba) -> error([]) new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(ty_Ratio, cbg)) -> new_ltEs18(xuu580, xuu590, cbg) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(app(ty_Either, cg), da)) -> new_esEs12(xuu31100000, xuu60000, cg, da) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, fch)) -> new_lt18(xuu581, xuu591, fch) new_mkBalBranch6MkBalBranch3(xuu61, Branch(xuu630, xuu631, xuu632, xuu633, xuu634), xuu41, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu61, xuu630, xuu631, xuu632, xuu633, xuu634, xuu41, new_lt12(new_sizeFM0(xuu634, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu633, h, ba))), h, ba) new_compare10(xuu156, xuu157, xuu158, xuu159, True, ccd, cce) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs13(xuu80, xuu81, ceg, ceh, cfa) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_mkBalBranch6MkBalBranch11(xuu61, xuu630, xuu631, xuu632, xuu633, xuu634, xuu41, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu630, xuu631, xuu633, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), [], xuu61, xuu634, xuu41, app(ty_[], h), ba), app(ty_[], h), ba) new_primMulNat0(Zero, Zero) -> Zero new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_mkBalBranch6MkBalBranch4(xuu61, xuu63, EmptyFM, True, h, ba) -> error([]) new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), bbe, bbf) -> new_pePe(new_lt4(xuu580, xuu590, bbe), new_asAs(new_esEs26(xuu580, xuu590, bbe), new_ltEs19(xuu581, xuu591, bbf))) new_lt23(xuu580, xuu590, app(ty_Ratio, feb)) -> new_lt18(xuu580, xuu590, feb) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, fdh), fea)) -> new_esEs12(xuu580, xuu590, fdh, fea) new_esEs21(Nothing, Just(xuu60000), ccf) -> False new_esEs21(Just(xuu31100000), Nothing, ccf) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), ce, bc) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), ce, bc) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, egb), egc)) -> new_esEs19(xuu31100001, xuu60001, egb, egc) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, ccf) -> True new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba) -> new_sizeFM0(xuu41, h, ba) new_lt19(xuu99, xuu101, app(app(ty_@2, he), hf)) -> new_lt6(xuu99, xuu101, he, hf) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fhb), fhc)) -> new_esEs12(xuu3110001, xuu6001, fhb, fhc) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, dec)) -> new_esEs24(xuu3110000, xuu6000, dec) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), :(xuu600, xuu601), xuu61, xuu29, xuu643, app(ty_[], h), ba), xuu644, app(ty_[], h), ba) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, gf), gg)) -> new_esEs19(xuu3110000, xuu6000, gf, gg) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, dcd)) -> new_esEs21(xuu3110001, xuu6001, dcd) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, ehd), ehe)) -> new_esEs19(xuu31100000, xuu60000, ehd, ehe) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, gab)) -> new_esEs24(xuu3110001, xuu6001, gab) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, cdb), cdc)) -> new_esEs19(xuu31100000, xuu60000, cdb, cdc) new_ltEs21(xuu100, xuu102, app(ty_Maybe, dfh)) -> new_ltEs8(xuu100, xuu102, dfh) new_ltEs24(xuu582, xuu592, app(ty_Ratio, fbf)) -> new_ltEs18(xuu582, xuu592, fbf) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, dbb)) -> new_esEs21(xuu3110002, xuu6002, dbb) new_ltEs8(Nothing, Just(xuu590), bbg) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, fbd), fbe)) -> new_ltEs17(xuu582, xuu592, fbd, fbe) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), bcc, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs23(xuu31100000, xuu60000, ff, fg, fh) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_mkBalBranch(xuu61, xuu63, xuu41, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu61, xuu63, xuu41, new_esEs25(new_compare14(new_primPlusInt(new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba), new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba)), Pos(Succ(Succ(Zero)))), LT), h, ba) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_addToFM_C22(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, eb, ec) -> new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), eb), eb, ec) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, bec), bed)) -> new_lt6(xuu70, xuu73, bec, bed) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], bee)) -> new_esEs13(xuu70, xuu73, bee) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, cbh, cca, ccb) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, cbh, cca, ccb) new_ltEs23(xuu71, xuu74, app(ty_Maybe, bdd)) -> new_ltEs8(xuu71, xuu74, bdd) new_lt23(xuu580, xuu590, app(app(ty_@2, fda), fdb)) -> new_lt6(xuu580, xuu590, fda, fdb) new_compare0(xuu311000, xuu600, app(app(ty_Either, def), deg)) -> new_compare31(xuu311000, xuu600, def, deg) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, ech) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, cgf)) -> new_ltEs18(xuu581, xuu591, cgf) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, chc), chd), che)) -> new_esEs23(xuu580, xuu590, chc, chd, che) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, gb) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, fba), fbb), fbc)) -> new_ltEs13(xuu582, xuu592, fba, fbb, fbc) new_mkBalBranch6MkBalBranch11(xuu61, xuu630, xuu631, xuu632, xuu633, Branch(xuu6340, xuu6341, xuu6342, xuu6343, xuu6344), xuu41, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu6340, xuu6341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu630, xuu631, xuu633, xuu6343, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), [], xuu61, xuu6344, xuu41, app(ty_[], h), ba), app(ty_[], h), ba) new_esEs12(Right(xuu31100000), Right(xuu60000), ce, app(app(ty_@2, db), dc)) -> new_esEs19(xuu31100000, xuu60000, db, dc) new_mkBalBranch6MkBalBranch11(xuu61, xuu630, xuu631, xuu632, xuu633, EmptyFM, xuu41, False, h, ba) -> error([]) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, daf), dag)) -> new_esEs12(xuu3110002, xuu6002, daf, dag) new_esEs32(xuu31100001, xuu60001, app(ty_[], ead)) -> new_esEs13(xuu31100001, xuu60001, ead) new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, h, ba) -> new_mkBalBranch(xuu61, xuu63, new_addToFM_C0(xuu64, :(xuu311000, xuu311001), xuu31101, h, ba), h, ba) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_lt21(xuu69, xuu72, app(app(ty_@2, bfe), bff)) -> new_lt6(xuu69, xuu72, bfe, bff) new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, dch)) -> new_esEs24(xuu3110001, xuu6001, dch) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), def, deg) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, def), def, deg) new_ltEs20(xuu87, xuu88, app(ty_Ratio, bbb)) -> new_ltEs18(xuu87, xuu88, bbb) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_addToFM_C16(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, eb, ec) -> new_mkBalBranch0(xuu19, xuu20, xuu21, xuu23, new_addToFM_C0(xuu24, :(xuu25, xuu26), xuu27, eb, ec), eb, ec) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, bh), bc) -> new_esEs21(xuu31100000, xuu60000, bh) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, ddb), ddc)) -> new_esEs12(xuu3110000, xuu6000, ddb, ddc) new_ltEs23(xuu71, xuu74, app(ty_Ratio, beb)) -> new_ltEs18(xuu71, xuu74, beb) new_esEs30(xuu99, xuu101, app(ty_[], daa)) -> new_esEs13(xuu99, xuu101, daa) new_esEs38(xuu581, xuu591, app(app(ty_@2, fbg), fbh)) -> new_esEs19(xuu581, xuu591, fbg, fbh) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu58, xuu59, bbh, bca, bcb) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs13(xuu580, xuu590, cbb, cbc, cbd) new_mkBalBranch6MkBalBranch5(xuu61, xuu63, xuu41, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu61, xuu63, xuu41, new_gt(new_mkBalBranch6Size_r(xuu61, xuu63, xuu41, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu61, xuu63, xuu41, h, ba))), h, ba) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, bcf, bcg, bch) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, bcf), new_asAs(new_esEs35(xuu69, xuu72, bcf), new_pePe(new_lt20(xuu70, xuu73, bcg), new_asAs(new_esEs34(xuu70, xuu73, bcg), new_ltEs23(xuu71, xuu74, bch)))), bcf, bcg, bch) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], cha)) -> new_lt7(xuu580, xuu590, cha) new_addToFM_C21(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, eb, ec) -> new_mkBalBranch0(xuu19, xuu20, xuu21, new_addToFM_C0(xuu23, :(xuu25, xuu26), xuu27, eb, ec), xuu24, eb, ec) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, ddf)) -> new_esEs21(xuu3110000, xuu6000, ddf) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, bce)) -> new_ltEs18(xuu58, xuu59, bce) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, hd)) -> new_esEs24(xuu3110000, xuu6000, hd) new_mkBalBranch6MkBalBranch010(xuu600, xuu601, xuu61, xuu29, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, bbg) -> True new_ltEs8(Just(xuu580), Nothing, bbg) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs17(Right(xuu580), Right(xuu590), bcc, app(ty_Maybe, cba)) -> new_ltEs8(xuu580, xuu590, cba) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs21(xuu100, xuu102, app(ty_Ratio, dgf)) -> new_ltEs18(xuu100, xuu102, dgf) new_compare24(xuu80, xuu81, False, cea, ceb) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, cea), cea, ceb) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_addToFM_C0(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, h), h, ba) new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, ccd, cce) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, ccd, cce) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], bfg)) -> new_lt7(xuu69, xuu72, bfg) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_addToFM_C15(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, LT, h, ba) -> new_addToFM_C12(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, h, ba) new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fhd), fhe)) -> new_esEs19(xuu3110001, xuu6001, fhd, fhe) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, cbh, cca, ccb) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, cbh, cca, ccb) new_esEs25(EQ, EQ) -> True new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, dbf)) -> new_esEs24(xuu3110002, xuu6002, dbf) new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), def, deg) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, deg), def, deg) new_addToFM_C0(Branch([], xuu61, xuu62, xuu63, xuu64), [], xuu31101, h, ba) -> new_addToFM_C13(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, h, ba) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs38(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, x2) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_compare7(Just(x0), Just(x1), x2) new_esEs5(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Float) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5, x6) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1) new_compare25(x0, x1, False, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_esEs30(x0, x1, app(ty_[], x2)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_primCompAux00(x0, x1, GT, x2) new_compare27(x0, x1, False, x2, x3) new_ltEs8(Nothing, Just(x0), x1) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs24(x0, x1, ty_Double) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs13(:(x0, x1), [], x2) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs8(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Just(x0), Just(x1), ty_Float) new_esEs33(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs9(x0, x1, ty_Integer) new_primMinusNat0(Succ(x0), Zero) new_primCompAux00(x0, x1, LT, x2) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6) new_lt23(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, False, x4, x5) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_sizeFM(EmptyFM, x0, x1) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch3(x0, EmptyFM, x1, True, x2, x3) new_esEs7(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Int) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare8(False, False) new_lt23(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_compare30(LT, GT) new_compare30(GT, LT) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs7(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_@0) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs9(LT, LT) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_ltEs6(False, False) new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) new_mkBalBranch6MkBalBranch5(x0, x1, x2, True, x3, x4) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_compare24(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, EQ, x5, x6) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt5(x0, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs16(@0, @0) new_esEs34(x0, x1, ty_Bool) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_primPlusNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_sizeFM0(EmptyFM, x0, x1) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Nothing, Nothing, x0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch30(x0, x1, x2, EmptyFM, x3, True, x4, x5) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4) new_compare7(Nothing, Nothing, x0) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) new_compare110(x0, x1, False, x2) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs17(True, True) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs31(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Float) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Ordering) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, x3, x4, x5, x6) new_primPlusNat0(Zero, Zero) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_esEs25(EQ, EQ) new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_not(True) new_esEs8(x0, x1, ty_Float) new_ltEs4(x0, x1, x2) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_primPlusNat1(x0, x1) new_compare7(Just(x0), Nothing, x1) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs37(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_lt22(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_lt4(x0, x1, ty_@0) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs6(True, True) new_pePe(True, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs21(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_sr(x0, x1) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, ty_@0) new_compare8(True, True) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Char) new_lt4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Bool) new_addToFM_C13(x0, x1, x2, x3, x4, GT, x5, x6) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_compare27(x0, x1, True, x2, x3) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch5(x0, x1, x2, False, x3, x4) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch30(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, True, x9, x10) new_compare24(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_primMinusNat0(Succ(x0), Succ(x1)) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs13([], :(x0, x1), x2) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_@0) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(x0, x1, True, x2, x3) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Ordering) new_primMinusNat0(Zero, Succ(x0)) new_esEs11(x0, x1, ty_Int) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Char) new_compare7(Nothing, Just(x0), x1) new_ltEs20(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, True, x4, x5) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primMinusNat0(Zero, Zero) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_esEs11(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs9(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_emptyFM(x0, x1) new_esEs37(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_compare19(x0, x1, False, x2, x3) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_sIZE_RATIO new_compare6(:(x0, x1), [], x2) new_esEs38(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_ltEs24(x0, x1, ty_Bool) new_lt6(x0, x1, x2, x3) new_esEs21(Nothing, Nothing, x0) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(Integer(x0), Integer(x1)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True, x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_@0) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5, x6) new_ltEs24(x0, x1, ty_Int) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_esEs13([], [], x0) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_compare11(x0, x1, False, x2, x3) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, GT) new_lt23(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Char) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_@0) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, ty_Int) new_esEs14(x0, x1) new_mkBalBranch6MkBalBranch3(x0, Branch(x1, x2, x3, x4, x5), x6, True, x7, x8) new_compare210(x0, x1, x2, x3, False, x4, x5) new_addToFM_C13(x0, x1, x2, x3, x4, LT, x5, x6) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_asAs(True, x0) new_esEs34(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) new_esEs4(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Char) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_addToFM_C12(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_addToFM_C13(x0, x1, x2, x3, x4, EQ, x5, x6) new_lt18(x0, x1, x2) new_lt19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_[], x2)) new_compare31(Left(x0), Left(x1), x2, x3) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs27(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_compare0(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, LT, x5, x6) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_lt13(x0, x1, x2, x3, x4) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_@0) new_addListToFM0(x0, x1, x2) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_esEs21(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare210(x0, x1, x2, x3, True, x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Char) new_compare31(Right(x0), Right(x1), x2, x3) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, x4, False, x5, x6) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_compare29(Char(x0), Char(x1)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_mkBalBranch0(x0, x1, x2, x3, x4, x5, x6) new_ltEs20(x0, x1, ty_Double) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, x4, False, x5, x6) new_lt10(x0, x1) new_esEs4(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs16(x0, x1) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_compare6([], :(x0, x1), x2) new_esEs35(x0, x1, ty_Integer) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) new_compare6(:(x0, x1), :(x2, x3), x4) new_ltEs22(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_lt21(x0, x1, ty_Char) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_mkBalBranch(x0, x1, x2, x3, x4) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_compare6([], [], x0) new_lt15(x0, x1) new_esEs8(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_lt17(x0, x1, x2, x3) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, EmptyFM, True, x4, x5) new_ltEs22(x0, x1, ty_Char) new_ltEs18(x0, x1, x2) new_esEs10(x0, x1, ty_Bool) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_lt7(x0, x1, x2) new_ltEs22(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, GT, x5, x6) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_compare25(x0, x1, True, x2) new_compare19(x0, x1, True, x2, x3) 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_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu31100000, xuu60000, hg, hh) new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu31100000, xuu60000, cf, cg) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(xuu31100001, xuu60001, fg, fh, ga) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(xuu31100000, xuu60000, bdc, bdd) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(xuu31100001, xuu60001, fa, fb) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xuu31100001, xuu60001, bcb, bcc) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(xuu31100000, xuu60000, gd, ge) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xuu31100002, xuu60002, bah, bba) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_@2, bd), be)) -> new_esEs1(xuu31100000, xuu60000, bd, be) new_esEs2(Just(xuu31100000), Just(xuu60000), app(ty_[], hd)) -> new_esEs(xuu31100000, xuu60000, hd) new_esEs0(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, da), cc) -> new_esEs2(xuu31100000, xuu60000, da) new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu31100000, xuu60000, bab, bac, bad) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(xuu31100000, xuu60000, bdh, bea, beb) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(xuu31100000, xuu60000, bg, bh, ca) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_[], gb), gc) -> new_esEs(xuu31100000, xuu60000, gb) new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu31100000, xuu60000, dg, dh) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), h) -> new_esEs(xuu31100001, xuu60001, h) new_esEs2(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, baa)) -> new_esEs2(xuu31100000, xuu60000, baa) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_[], ba)) -> new_esEs(xuu31100000, xuu60000, ba) new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(ty_[], df)) -> new_esEs(xuu31100000, xuu60000, df) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu31100002, xuu60002, bbe, bbf, bbg) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(ty_Maybe, ff)) -> new_esEs2(xuu31100001, xuu60001, ff) new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu31100000, xuu60000, ec) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_Maybe, gh), gc) -> new_esEs2(xuu31100000, xuu60000, gh) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_Maybe, bf)) -> new_esEs2(xuu31100000, xuu60000, bf) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(xuu31100000, xuu60000, bde, bdf) new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu31100000, xuu60000, cd, ce) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(xuu31100000, xuu60000, ha, hb, hc) new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu31100000, xuu60000, db, dc, dd) new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu31100000, xuu60000, he, hf) new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu31100000, xuu60000, ed, ee, ef) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(xuu31100001, xuu60001, bcg, bch, bda) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(ty_[], bbh), bca) -> new_esEs(xuu31100001, xuu60001, bbh) new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu31100000, xuu60000, ea, eb) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(xuu31100001, xuu60001, bcd, bce) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(ty_[], bag)) -> new_esEs(xuu31100002, xuu60002, bag) new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu31100000, xuu60000, bb, bc) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(xuu31100000, xuu60000, gf, gg) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(ty_[], eh)) -> new_esEs(xuu31100001, xuu60001, eh) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(xuu31100002, xuu60002, bbd) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_[], bdb), baf, bca) -> new_esEs(xuu31100000, xuu60000, bdb) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(xuu31100002, xuu60002, bbb, bbc) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(xuu31100000, xuu60000, bdg) new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(xuu31100001, xuu60001, fc, fd) new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(xuu31100001, xuu60001, bcf) new_esEs0(Left(xuu31100000), Left(xuu60000), app(ty_[], cb), cc) -> new_esEs(xuu31100000, xuu60000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_Maybe, bf)) -> new_esEs2(xuu31100000, xuu60000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, baa)) -> new_esEs2(xuu31100000, xuu60000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu31100000, xuu60000, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu31100000, xuu60000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(ty_@2, bd), be)) -> new_esEs1(xuu31100000, xuu60000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu31100000, xuu60000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(xuu31100000, xuu60000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu31100000, xuu60000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu31100000), Just(xuu60000), app(ty_[], hd)) -> new_esEs(xuu31100000, xuu60000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(ty_Maybe, ff)) -> new_esEs2(xuu31100001, xuu60001, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_Maybe, gh), gc) -> new_esEs2(xuu31100000, xuu60000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(xuu31100001, xuu60001, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(xuu31100000, xuu60000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(xuu31100000, xuu60000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(xuu31100001, xuu60001, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(xuu31100001, xuu60001, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(xuu31100000, xuu60000, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), app(ty_[], gb), gc) -> new_esEs(xuu31100000, xuu60000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), eg, app(ty_[], eh)) -> new_esEs(xuu31100001, xuu60001, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(xuu31100002, xuu60002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(xuu31100000, xuu60000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(xuu31100001, xuu60001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, da), cc) -> new_esEs2(xuu31100000, xuu60000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu31100000, xuu60000, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(xuu31100000, xuu60000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xuu31100001, xuu60001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xuu31100002, xuu60002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu31100000, xuu60000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu31100000, xuu60000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(xuu31100000, xuu60000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(xuu31100001, xuu60001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(xuu31100002, xuu60002, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(xuu31100000, xuu60000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu31100002, xuu60002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(xuu31100001, xuu60001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, app(ty_[], bbh), bca) -> new_esEs(xuu31100001, xuu60001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), bae, baf, app(ty_[], bag)) -> new_esEs(xuu31100002, xuu60002, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), app(ty_[], bdb), baf, bca) -> new_esEs(xuu31100000, xuu60000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu31100000, xuu60000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu31100000, xuu60000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu31100000, xuu60000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu31100000, xuu60000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu31100000), Right(xuu60000), de, app(ty_[], df)) -> new_esEs(xuu31100000, xuu60000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu31100000), Left(xuu60000), app(ty_[], cb), cc) -> new_esEs(xuu31100000, xuu60000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), h) -> new_esEs(xuu31100001, xuu60001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), app(ty_[], ba)) -> new_esEs(xuu31100000, xuu60000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu600000), Succ(xuu311000100)) -> new_primMulNat(xuu600000, Succ(xuu311000100)) 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(xuu600000), Succ(xuu311000100)) -> new_primMulNat(xuu600000, Succ(xuu311000100)) 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_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], ce)), cd)) -> new_lt0(xuu580, xuu590, ce) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_[], bcc)) -> new_ltEs0(xuu582, xuu592, bcc) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, hb), hc), gd) -> new_compare5(xuu99, xuu101, hb, hc) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_Maybe, bd))) -> new_ltEs1(xuu581, xuu591, bd) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_Maybe, bhc))) -> new_ltEs1(xuu580, xuu590, bhc) new_compare22(xuu80, xuu81, False, app(ty_Maybe, cec), cea) -> new_ltEs1(xuu80, xuu81, cec) new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xuu87, xuu88, cff, cfg, cfh) new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfe)) -> new_ltEs1(xuu87, xuu88, cfe) new_lt1(xuu99, xuu101, gf) -> new_compare3(xuu99, xuu101, gf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xuu580, xuu590, bfc, bfd) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_[], bc)) -> new_ltEs0(xuu581, xuu591, bc) new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xuu80, xuu81, ced, cee, cef) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, beg)), bbh), bdd)) -> new_lt1(xuu580, xuu590, beg) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_[], bhb))) -> new_ltEs0(xuu580, xuu590, bhb) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcd))) -> new_ltEs1(xuu582, xuu592, bcd) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xuu580, xuu590, bge, bgf) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_[], bde), bdd) -> new_lt0(xuu581, xuu591, bde) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcc))) -> new_ltEs0(xuu582, xuu592, bcc) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, beg), bbh, bdd) -> new_lt1(xuu580, xuu590, beg) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xuu581, xuu591, bh, ca) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], bef)), bbh), bdd)) -> new_lt0(xuu580, xuu590, bef) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xuu580, xuu590, bed, bee) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_Maybe, bhc)) -> new_ltEs1(xuu580, xuu590, bhc) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, cdb), cdc), cdd), cab, cbf) -> new_lt2(xuu69, xuu72, cdb, cdc, cdd) new_compare1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dh, ea) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bfh)), bfg)) -> new_ltEs0(xuu580, xuu590, bfh) new_compare5(Left(xuu3110000), Left(xuu6000), ef, eg) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_Either, fh), ga)) -> new_compare5(xuu37, xuu38, fh, ga) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xuu581, xuu591, be, bf, bg) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, gb), gc), gd) -> new_compare1(xuu99, xuu101, gb, gc) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xuu580, xuu590, bgh, bha) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xuu580, xuu590, cg, da, db) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) new_lt3(xuu99, xuu101, hb, hc) -> new_compare5(xuu99, xuu101, hb, hc) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xuu580, xuu590, cb, cc) new_compare20(xuu58, xuu59, False, app(ty_[], de)) -> new_compare(xuu58, xuu59, de) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xuu581, xuu591, be, bf, bg) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(xuu580, xuu590, bbe, bbf) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_Maybe, hh)) -> new_ltEs1(xuu100, xuu102, hh) new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], fb)) -> new_compare(xuu37, xuu38, fb) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xuu580, xuu590, bgh, bha) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_@2, cbd), cbe), cbf) -> new_lt(xuu70, xuu73, cbd, cbe) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(xuu71, xuu74, cac, cad) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bdf)), bdd)) -> new_lt1(xuu581, xuu591, bdf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xuu582, xuu592, bch, bda) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xuu581, xuu591, ba, bb) new_compare4(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ec, ed, ee) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_ltEs0(xuu58, xuu59, de) -> new_compare(xuu58, xuu59, de) new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bfh), bfg) -> new_ltEs0(xuu580, xuu590, bfh) new_lt0(xuu99, xuu101, ge) -> new_compare(xuu99, xuu101, ge) new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, ccf), ccg), cab, cbf) -> new_lt(xuu69, xuu72, ccf, ccg) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xuu582, xuu592, bch, bda) new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_[], cbg), cbf) -> new_lt0(xuu70, xuu73, cbg) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], ce), cd) -> new_lt0(xuu580, xuu590, ce) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, cf)), cd)) -> new_lt1(xuu580, xuu590, cf) new_ltEs1(Just(xuu580), Just(xuu590), app(ty_Maybe, bba)) -> new_ltEs1(xuu580, xuu590, bba) new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, dg) -> new_primCompAux0(xuu311001, xuu601, new_compare0(xuu311000, xuu600, dg), app(ty_[], dg)) new_primCompAux0(xuu37, xuu38, EQ, app(ty_Maybe, fc)) -> new_compare3(xuu37, xuu38, fc) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_[], cae)) -> new_ltEs0(xuu71, xuu74, cae) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], bah))) -> new_ltEs0(xuu580, xuu590, bah) new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xuu580, xuu590, bfe, bff) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xuu580, xuu590, bfe, bff) new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xuu580, xuu590, bge, bgf) new_compare22(xuu80, xuu81, False, app(ty_[], ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_@2, eh), fa)) -> new_compare1(xuu37, xuu38, eh, fa) new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xuu87, xuu88, cfd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xuu582, xuu592, bca, bcb) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, gg), gh), ha), gd) -> new_compare4(xuu99, xuu101, gg, gh, ha) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, cde), cdf), cab, cbf) -> new_lt3(xuu69, xuu72, cde, cdf) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_Maybe, bcd)) -> new_ltEs1(xuu582, xuu592, bcd) new_compare3(Just(xuu3110000), Just(xuu6000), eb) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xuu580, xuu590, bfc, bfd) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, cb), cc), cd) -> new_lt(xuu580, xuu590, cb, cc) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_Maybe, caf)) -> new_ltEs1(xuu71, xuu74, caf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_[], bhb)) -> new_ltEs0(xuu580, xuu590, bhb) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xuu581, xuu591, beb, bec) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu580, xuu590, bba) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_@2, he), hf)) -> new_ltEs(xuu100, xuu102, he, hf) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_Either, cbb), cbc)) -> new_ltEs3(xuu71, xuu74, cbb, cbc) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xuu580, xuu590, bhg, bhh) new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_[], hg)) -> new_ltEs0(xuu100, xuu102, hg) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xuu580, xuu590, bhg, bhh) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], cch), cab, cbf) -> new_lt0(xuu69, xuu72, cch) new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) new_ltEs1(Just(xuu580), Just(xuu590), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xuu580, xuu590, bbe, bbf) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_Maybe, cbh), cbf) -> new_lt1(xuu70, xuu73, cbh) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(app(ty_@3, cca), ccb), ccc), cbf) -> new_lt2(xuu70, xuu73, cca, ccb, ccc) new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, dc), dd), cd) -> new_lt3(xuu580, xuu590, dc, dd) new_primCompAux0(xuu37, xuu38, EQ, app(app(app(ty_@3, fd), ff), fg)) -> new_compare4(xuu37, xuu38, fd, ff, fg) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, baf), bag))) -> new_ltEs(xuu580, xuu590, baf, bag) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs2(xuu71, xuu74, cag, cah, cba) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs2(xuu100, xuu102, baa, bab, bac) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) new_lt2(xuu99, xuu101, gg, gh, ha) -> new_compare4(xuu99, xuu101, gg, gh, ha) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, cf), cd) -> new_lt1(xuu580, xuu590, cf) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xuu581, xuu591, ba, bb) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ge), gd) -> new_compare(xuu99, xuu101, ge) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_Either, ccd), cce), cbf) -> new_lt3(xuu70, xuu73, ccd, cce) new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], df)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, ec), ed), ee)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_[], bde)), bdd)) -> new_lt0(xuu581, xuu591, bde) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xuu580, xuu590, bed, bee) new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bga), bfg) -> new_ltEs1(xuu580, xuu590, bga) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_[], bc))) -> new_ltEs0(xuu581, xuu591, bc) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xuu582, xuu592, bca, bcb) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xuu581, xuu591, bdb, bdc) new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, dh), ea)) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bga)), bfg)) -> new_ltEs1(xuu580, xuu590, bga) new_lt(xuu99, xuu101, gb, gc) -> new_compare1(xuu99, xuu101, gb, gc) new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, eb)) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xuu581, xuu591, bh, ca) new_compare5(Right(xuu3110000), Right(xuu6000), ef, eg) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) new_ltEs1(Just(xuu580), Just(xuu590), app(ty_[], bah)) -> new_ltEs0(xuu580, xuu590, bah) new_compare(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), df) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], bef), bbh, bdd) -> new_lt0(xuu580, xuu590, bef) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xuu580, xuu590, dc, dd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, cda), cab, cbf) -> new_lt1(xuu69, xuu72, cda) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xuu581, xuu591, bdb, bdc) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xuu581, xuu591, beb, bec) new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_@2, baf), bag)) -> new_ltEs(xuu580, xuu590, baf, bag) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_Maybe, bdf), bdd) -> new_lt1(xuu581, xuu591, bdf) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_Maybe, bd)) -> new_ltEs1(xuu581, xuu591, bd) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_Either, bad), bae)) -> new_ltEs3(xuu100, xuu102, bad, bae) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, gf), gd) -> new_compare3(xuu99, xuu101, gf) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xuu580, xuu590, cg, da, db) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) The TRS R consists of the following rules: new_esEs30(xuu99, xuu101, app(app(ty_@2, gb), gc)) -> new_esEs19(xuu99, xuu101, gb, gc) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], efe)) -> new_esEs13(xuu31100002, xuu60002, efe) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, cgd) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, dg) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, dg), app(ty_[], dg)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xuu3110000, xuu6000, eef, eeg, eeh) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, dce)) -> new_esEs21(xuu3110000, xuu6000, dce) new_ltEs4(xuu58, xuu59, de) -> new_fsEs(new_compare6(xuu58, xuu59, de)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, fbc) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], bcc)) -> new_ltEs4(xuu582, xuu592, bcc) new_lt20(xuu70, xuu73, app(app(ty_Either, ccd), cce)) -> new_lt17(xuu70, xuu73, ccd, cce) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs7(xuu580, xuu590, bgh, bha) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, bcd)) -> new_ltEs8(xuu582, xuu592, bcd) new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs23(xuu69, xuu72, cdb, cdc, cdd) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, chb), chc), chd), cgd) -> new_esEs23(xuu31100000, xuu60000, chb, chc, chd) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, fab), fac)) -> new_esEs12(xuu31100000, xuu60000, fab, fac) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, fga)) -> new_ltEs18(xuu580, xuu590, fga) new_lt19(xuu99, xuu101, app(ty_Ratio, efc)) -> new_lt18(xuu99, xuu101, efc) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, fhc, fhd, fhe) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], bfh), bfg) -> new_ltEs4(xuu580, xuu590, bfh) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, che), cgd) -> new_esEs24(xuu31100000, xuu60000, che) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], bde)) -> new_lt7(xuu581, xuu591, bde) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), ebe, ebf) -> new_asAs(new_esEs37(xuu31100000, xuu60000, ebe), new_esEs36(xuu31100001, xuu60001, ebf)) new_lt21(xuu69, xuu72, app(ty_Maybe, cda)) -> new_lt8(xuu69, xuu72, cda) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), ef, eg) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, feb)) -> new_esEs21(xuu31100001, xuu60001, feb) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, dba, dbb) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, dba, dbb) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, cgd) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), bgg, bfg) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), df) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, ecc) -> new_fsEs(new_compare15(xuu58, xuu59, ecc)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, dgh)) -> new_esEs24(xuu31100000, xuu60000, dgh) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_lt17(xuu99, xuu101, hb, hc) -> new_esEs25(new_compare31(xuu99, xuu101, hb, hc), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt13(xuu70, xuu73, cca, ccb, ccc) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, cge), cgf), cgd) -> new_esEs12(xuu31100000, xuu60000, cge, cgf) new_esEs26(xuu580, xuu590, app(ty_Maybe, cf)) -> new_esEs21(xuu580, xuu590, cf) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs23(xuu3110001, xuu6001, fcg, fch, fda) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs23(xuu3110000, xuu6000, eba, ebb, ebc) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs13(xuu87, xuu88, cff, cfg, cfh) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs17(xuu580, xuu590, bhg, bhh) new_esEs39(xuu580, xuu590, app(ty_Ratio, fgf)) -> new_esEs24(xuu580, xuu590, fgf) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, fbg)) -> new_esEs24(xuu70, xuu73, fbg) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, ecg), ech)) -> new_esEs19(xuu3110002, xuu6002, ecg, ech) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, fdc) -> GT new_esEs11(xuu3110000, xuu6000, app(ty_[], dbc)) -> new_esEs13(xuu3110000, xuu6000, dbc) new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, chf), cgd)) -> new_esEs12(xuu3110000, xuu6000, chf, cgd) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, h), cd)) -> new_ltEs7(xuu58, xuu59, h, cd) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt19(xuu99, xuu101, app(ty_Maybe, gf)) -> new_lt8(xuu99, xuu101, gf) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, egb)) -> new_esEs21(xuu31100002, xuu60002, egb) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), dff) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dff), new_esEs13(xuu31100001, xuu60001, dff)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, cdg), cdh)) -> new_ltEs7(xuu80, xuu81, cdg, cdh) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, ffh)) -> new_esEs24(xuu31100000, xuu60000, ffh) new_ltEs5(xuu80, xuu81, app(app(ty_Either, ceg), ceh)) -> new_ltEs17(xuu80, xuu81, ceg, ceh) new_lt23(xuu580, xuu590, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt13(xuu580, xuu590, beh, bfa, bfb) new_esEs39(xuu580, xuu590, app(ty_[], bef)) -> new_esEs13(xuu580, xuu590, bef) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs23(xuu3110002, xuu6002, edb, edc, edd) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, gb, gc) -> new_esEs25(new_compare18(xuu99, xuu101, gb, gc), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], ce)) -> new_esEs13(xuu580, xuu590, ce) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, bdf)) -> new_esEs21(xuu581, xuu591, bdf) new_ltEs20(xuu87, xuu88, app(app(ty_Either, cga), cgb)) -> new_ltEs17(xuu87, xuu88, cga, cgb) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, bdd) -> new_pePe(new_lt23(xuu580, xuu590, bbg), new_asAs(new_esEs39(xuu580, xuu590, bbg), new_pePe(new_lt22(xuu581, xuu591, bbh), new_asAs(new_esEs38(xuu581, xuu591, bbh), new_ltEs24(xuu582, xuu592, bdd))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, cgd) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs13(:(xuu31100000, xuu31100001), [], dff) -> False new_esEs13([], :(xuu60000, xuu60001), dff) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_ltEs19(xuu581, xuu591, app(ty_Maybe, bd)) -> new_ltEs8(xuu581, xuu591, bd) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs23(xuu31100001, xuu60001, ehe, ehf, ehg) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], bah)) -> new_ltEs4(xuu580, xuu590, bah) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, fdf), fdg)) -> new_esEs12(xuu31100001, xuu60001, fdf, fdg) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, bgg), bfg)) -> new_ltEs17(xuu58, xuu59, bgg, bfg) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, ccf), ccg)) -> new_esEs19(xuu69, xuu72, ccf, ccg) new_esEs36(xuu31100001, xuu60001, app(ty_[], fde)) -> new_esEs13(xuu31100001, xuu60001, fde) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, eb)) -> new_compare7(xuu311000, xuu600, eb) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, cgd) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_ltEs5(xuu80, xuu81, app(ty_Maybe, cec)) -> new_ltEs8(xuu80, xuu81, cec) new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, eec), eed)) -> new_esEs19(xuu3110000, xuu6000, eec, eed) new_compare25(xuu58, xuu59, False, fbd) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, fbd), fbd) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, hd, gd) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, hd), new_asAs(new_esEs30(xuu99, xuu101, hd), new_ltEs21(xuu100, xuu102, gd)), hd, gd) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, fad), fae)) -> new_esEs19(xuu31100000, xuu60000, fad, fae) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, eaf), eag)) -> new_esEs19(xuu3110000, xuu6000, eaf, eag) new_compare10(xuu156, xuu157, xuu158, xuu159, False, dba, dbb) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, beb), bec)) -> new_esEs12(xuu581, xuu591, beb, bec) new_lt21(xuu69, xuu72, app(ty_Ratio, fbh)) -> new_lt18(xuu69, xuu72, fbh) new_ltEs20(xuu87, xuu88, app(app(ty_@2, cfb), cfc)) -> new_ltEs7(xuu87, xuu88, cfb, cfc) new_compare210(xuu99, xuu100, xuu101, xuu102, True, hd, gd) -> EQ new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, bfg) -> new_ltEs12(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhc, fhd, fhe) -> LT new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_Maybe, dad)) -> new_esEs21(xuu31100000, xuu60000, dad) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs23(xuu99, xuu101, gg, gh, ha) new_compare25(xuu58, xuu59, True, fbd) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs13(xuu580, xuu590, bgb, bgc, bgd) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, dc), dd)) -> new_esEs12(xuu580, xuu590, dc, dd) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, bga), bfg) -> new_ltEs8(xuu580, xuu590, bga) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs23(xuu3110000, xuu6000, dhg, dhh, eaa) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs23(xuu31100000, xuu60000, fag, fah, fba) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, ddg)) -> new_esEs24(xuu31100000, xuu60000, ddg) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, fha), bfg) -> new_ltEs18(xuu580, xuu590, fha) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, cde), cdf)) -> new_esEs12(xuu69, xuu72, cde, cdf) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, eea), eeb)) -> new_esEs12(xuu3110000, xuu6000, eea, eeb) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, bfg) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, fef)) -> new_esEs24(xuu31100001, xuu60001, fef) new_esEs39(xuu580, xuu590, app(ty_Maybe, beg)) -> new_esEs21(xuu580, xuu590, beg) new_lt23(xuu580, xuu590, app(ty_Maybe, beg)) -> new_lt8(xuu580, xuu590, beg) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, eh), fa)) -> new_compare18(xuu37, xuu38, eh, fa) new_compare0(xuu311000, xuu600, app(app(ty_@2, dh), ea)) -> new_compare18(xuu311000, xuu600, dh, ea) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_[], chg)) -> new_esEs13(xuu31100000, xuu60000, chg) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, ehb), ehc)) -> new_esEs19(xuu31100001, xuu60001, ehb, ehc) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], bde)) -> new_esEs13(xuu581, xuu591, bde) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], cgc), cgd) -> new_esEs13(xuu31100000, xuu60000, cgc) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, beb), bec)) -> new_lt17(xuu581, xuu591, beb, bec) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, efb)) -> new_compare15(xuu311000, xuu600, efb) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], dha)) -> new_esEs13(xuu3110000, xuu6000, dha) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, gf)) -> new_esEs21(xuu99, xuu101, gf) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, ddh, cea) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, fdd)) -> new_compare15(xuu37, xuu38, fdd) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, app(app(ty_Either, hb), hc)) -> new_esEs12(xuu99, xuu101, hb, hc) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, cac), cad)) -> new_ltEs7(xuu71, xuu74, cac, cad) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, efa)) -> new_esEs24(xuu3110000, xuu6000, efa) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, cb), cc)) -> new_esEs19(xuu580, xuu590, cb, cc) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs23(xuu581, xuu591, bdg, bdh, bea) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, fc)) -> new_compare7(xuu37, xuu38, fc) new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, bba)) -> new_ltEs8(xuu580, xuu590, bba) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xuu31100000, xuu60000, dae, daf, dag) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, eb) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, cg), da), db)) -> new_lt13(xuu580, xuu590, cg, da, db) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, bfc), bfd)) -> new_lt17(xuu580, xuu590, bfc, bfd) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, bfg) -> new_ltEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs22(xuu58, xuu59, app(ty_[], de)) -> new_ltEs4(xuu58, xuu59, de) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, dcd)) -> new_esEs24(xuu3110000, xuu6000, dcd) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], df) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, dbd), dbe)) -> new_esEs12(xuu3110000, xuu6000, dbd, dbe) new_esEs17(True, True) -> True new_lt13(xuu99, xuu101, gg, gh, ha) -> new_esEs25(new_compare16(xuu99, xuu101, gg, gh, ha), LT) new_lt18(xuu99, xuu101, efc) -> new_esEs25(new_compare15(xuu99, xuu101, efc), LT) new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, bfg) -> new_ltEs10(xuu580, xuu590) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs23(xuu70, xuu73, cca, ccb, ccc) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, ccd), cce)) -> new_esEs12(xuu70, xuu73, ccd, cce) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs23(xuu3110000, xuu6000, dca, dcb, dcc) new_lt21(xuu69, xuu72, app(app(ty_Either, cde), cdf)) -> new_lt17(xuu69, xuu72, cde, cdf) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_esEs5(xuu3110000, xuu6000, app(ty_[], dff)) -> new_esEs13(xuu3110000, xuu6000, dff) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, cgd) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, eee)) -> new_esEs21(xuu3110000, xuu6000, eee) new_compare27(xuu87, xuu88, True, cfa, edf) -> EQ new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, efc)) -> new_esEs24(xuu99, xuu101, efc) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs7(xuu580, xuu590, bfe, bff) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, dc), dd)) -> new_lt17(xuu580, xuu590, dc, dd) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fgg, fgh) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], hg)) -> new_ltEs4(xuu100, xuu102, hg) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dh, ea) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, faf)) -> new_esEs21(xuu31100000, xuu60000, faf) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), eb) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs23(xuu31100000, xuu60000, ffe, fff, ffg) new_ltEs5(xuu80, xuu81, app(ty_[], ceb)) -> new_ltEs4(xuu80, xuu81, ceb) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, caa, cab, cbf) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), ecb) -> new_asAs(new_esEs29(xuu31100000, xuu60000, ecb), new_esEs28(xuu31100001, xuu60001, ecb)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_esEs8(xuu3110001, xuu6001, app(ty_[], ded)) -> new_esEs13(xuu3110001, xuu6001, ded) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, bfg) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, eff), efg)) -> new_esEs12(xuu31100002, xuu60002, eff, efg) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, dbh)) -> new_esEs21(xuu3110000, xuu6000, dbh) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs23(xuu31100000, xuu60000, ddd, dde, ddf) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, ehh)) -> new_esEs24(xuu31100001, xuu60001, ehh) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, dgb), dgc)) -> new_esEs19(xuu31100000, xuu60000, dgb, dgc) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, bca), bcb)) -> new_ltEs7(xuu582, xuu592, bca, bcb) new_ltEs17(Right(xuu580), Left(xuu590), bgg, bfg) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], cfd)) -> new_ltEs4(xuu87, xuu88, cfd) new_esEs35(xuu69, xuu72, app(ty_Maybe, cda)) -> new_esEs21(xuu69, xuu72, cda) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, egf)) -> new_esEs24(xuu31100002, xuu60002, egf) new_compare110(xuu125, xuu126, True, fbc) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], bc)) -> new_ltEs4(xuu581, xuu591, bc) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, bdf)) -> new_lt8(xuu581, xuu591, bdf) new_esEs34(xuu70, xuu73, app(ty_Maybe, cbh)) -> new_esEs21(xuu70, xuu73, cbh) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs23(xuu31100001, xuu60001, fec, fed, fee) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, egh), eha)) -> new_esEs12(xuu31100001, xuu60001, egh, eha) new_esEs7(xuu3110002, xuu6002, app(ty_[], ecd)) -> new_esEs13(xuu3110002, xuu6002, ecd) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, ge) -> new_esEs25(new_compare6(xuu99, xuu101, ge), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, dfh), dga)) -> new_esEs12(xuu31100000, xuu60000, dfh, dga) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_Ratio, dah)) -> new_esEs24(xuu31100000, xuu60000, dah) new_esEs4(xuu3110001, xuu6001, app(ty_[], fca)) -> new_esEs13(xuu3110001, xuu6001, fca) new_esEs39(xuu580, xuu590, app(app(ty_@2, bed), bee)) -> new_esEs19(xuu580, xuu590, bed, bee) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, ehd)) -> new_esEs21(xuu31100001, xuu60001, ehd) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, fbg)) -> new_lt18(xuu70, xuu73, fbg) new_lt22(xuu581, xuu591, app(app(ty_@2, bdb), bdc)) -> new_lt6(xuu581, xuu591, bdb, bdc) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, bfg) -> new_ltEs11(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(xuu100, xuu102, baa, bab, bac) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, hb), hc)) -> new_lt17(xuu99, xuu101, hb, hc) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, baf), bag)) -> new_ltEs7(xuu580, xuu590, baf, bag) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs23(xuu3110001, xuu6001, dfb, dfc, dfd) new_esEs10(xuu3110000, xuu6000, app(ty_[], edh)) -> new_esEs13(xuu3110000, xuu6000, edh) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, dhb), dhc)) -> new_esEs12(xuu3110000, xuu6000, dhb, dhc) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, he), hf)) -> new_ltEs7(xuu100, xuu102, he, hf) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, bbe), bbf)) -> new_ltEs17(xuu580, xuu590, bbe, bbf) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], fb)) -> new_compare6(xuu37, xuu38, fb) new_compare0(xuu311000, xuu600, app(ty_[], df)) -> new_compare6(xuu311000, xuu600, df) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, bfg) -> new_ltEs14(xuu580, xuu590) new_compare19(xuu142, xuu143, True, fgb, fgc) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], df) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Ratio, fge)) -> new_esEs24(xuu581, xuu591, fge) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], eac)) -> new_esEs13(xuu3110000, xuu6000, eac) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, fbb)) -> new_esEs24(xuu31100000, xuu60000, fbb) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, deg), deh)) -> new_esEs19(xuu3110001, xuu6001, deg, deh) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, fd), ff), fg)) -> new_compare16(xuu37, xuu38, fd, ff, fg) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_[], bhb)) -> new_ltEs4(xuu580, xuu590, bhb) new_esEs35(xuu69, xuu72, app(ty_[], cch)) -> new_esEs13(xuu69, xuu72, cch) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, cgd) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], bef)) -> new_lt7(xuu580, xuu590, bef) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs13(xuu581, xuu591, be, bf, bg) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs23(xuu580, xuu590, beh, bfa, bfb) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], dff) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, cfe)) -> new_ltEs8(xuu87, xuu88, cfe) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, ddc)) -> new_esEs21(xuu31100000, xuu60000, ddc) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs13(xuu580, xuu590, bbb, bbc, bbd) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, cf)) -> new_lt8(xuu580, xuu590, cf) new_lt20(xuu70, xuu73, app(ty_Maybe, cbh)) -> new_lt8(xuu70, xuu73, cbh) new_lt19(xuu99, xuu101, app(app(app(ty_@3, gg), gh), ha)) -> new_lt13(xuu99, xuu101, gg, gh, ha) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, bfg) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, efh), ega)) -> new_esEs19(xuu31100002, xuu60002, efh, ega) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, gf) -> new_esEs25(new_compare7(xuu99, xuu101, gf), LT) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, dea)) -> new_ltEs18(xuu80, xuu81, dea) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, ffd)) -> new_esEs21(xuu31100000, xuu60000, ffd) new_ltEs23(xuu71, xuu74, app(ty_[], cae)) -> new_ltEs4(xuu71, xuu74, cae) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fcf)) -> new_esEs21(xuu3110001, xuu6001, fcf) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, cfa, edf) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, edf), cfa, edf) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), df) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fgg, fgh) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, bh), ca)) -> new_ltEs17(xuu581, xuu591, bh, ca) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), ebg, ebh, eca) -> new_asAs(new_esEs33(xuu31100000, xuu60000, ebg), new_asAs(new_esEs32(xuu31100001, xuu60001, ebh), new_esEs31(xuu31100002, xuu60002, eca))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_compare31(Left(xuu3110000), Right(xuu6000), ef, eg) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, fbh)) -> new_esEs24(xuu69, xuu72, fbh) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, cb), cc)) -> new_lt6(xuu580, xuu590, cb, cc) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt13(xuu69, xuu72, cdb, cdc, cdd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, dcg), dch)) -> new_esEs12(xuu31100000, xuu60000, dcg, dch) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs23(xuu3110000, xuu6000, ebg, ebh, eca) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs17(xuu580, xuu590, bge, bgf) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, dhf)) -> new_esEs21(xuu3110000, xuu6000, dhf) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, dgd)) -> new_esEs21(xuu31100000, xuu60000, dgd) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, dec)) -> new_lt18(xuu580, xuu590, dec) new_ltEs23(xuu71, xuu74, app(app(ty_Either, cbb), cbc)) -> new_ltEs17(xuu71, xuu74, cbb, cbc) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, dbf), dbg)) -> new_esEs19(xuu3110000, xuu6000, dbf, dbg) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, dec)) -> new_esEs24(xuu580, xuu590, dec) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], dcf)) -> new_esEs13(xuu31100000, xuu60000, dcf) new_ltEs21(xuu100, xuu102, app(app(ty_Either, bad), bae)) -> new_ltEs17(xuu100, xuu102, bad, bae) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_compare7(Just(xuu3110000), Just(xuu6000), eb) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, fh), ga)) -> new_compare31(xuu37, xuu38, fh, ga) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, cgd) -> new_esEs17(xuu31100000, xuu60000) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, feh), ffa)) -> new_esEs12(xuu31100000, xuu60000, feh, ffa) new_compare19(xuu142, xuu143, False, fgb, fgc) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs23(xuu31100002, xuu60002, egc, egd, ege) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], feg)) -> new_esEs13(xuu31100000, xuu60000, feg) new_ltEs19(xuu581, xuu591, app(app(ty_@2, ba), bb)) -> new_ltEs7(xuu581, xuu591, ba, bb) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, cbd), cbe)) -> new_esEs19(xuu70, xuu73, cbd, cbe) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, ec), ed), ee)) -> new_compare16(xuu311000, xuu600, ec, ed, ee) new_lt22(xuu581, xuu591, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt13(xuu581, xuu591, bdg, bdh, bea) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, dee), def)) -> new_esEs12(xuu3110001, xuu6001, dee, def) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs13(xuu71, xuu74, cag, cah, cba) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, ebd)) -> new_esEs24(xuu3110000, xuu6000, ebd) new_lt20(xuu70, xuu73, app(ty_[], cbg)) -> new_lt7(xuu70, xuu73, cbg) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, cgd) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, cgg), cgh), cgd) -> new_esEs19(xuu31100000, xuu60000, cgg, cgh) new_esEs27(xuu31100000, xuu60000, app(ty_[], dfg)) -> new_esEs13(xuu31100000, xuu60000, dfg) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(xuu3110000, xuu6000, ebe, ebf) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], faa)) -> new_esEs13(xuu31100000, xuu60000, faa) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ec, ed, ee) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_lt19(xuu99, xuu101, app(ty_[], ge)) -> new_lt7(xuu99, xuu101, ge) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, fbe)) -> new_ltEs8(xuu58, xuu59, fbe) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_Ratio, fhb)) -> new_ltEs18(xuu580, xuu590, fhb) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(ty_Either, chh), daa)) -> new_esEs12(xuu31100000, xuu60000, chh, daa) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, fge)) -> new_lt18(xuu581, xuu591, fge) new_compare10(xuu156, xuu157, xuu158, xuu159, True, dba, dbb) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs13(xuu80, xuu81, ced, cee, cef) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), h, cd) -> new_pePe(new_lt4(xuu580, xuu590, h), new_asAs(new_esEs26(xuu580, xuu590, h), new_ltEs19(xuu581, xuu591, cd))) new_lt23(xuu580, xuu590, app(ty_Ratio, fgf)) -> new_lt18(xuu580, xuu590, fgf) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, bfc), bfd)) -> new_esEs12(xuu580, xuu590, bfc, bfd) new_esEs21(Nothing, Just(xuu60000), dce) -> False new_esEs21(Just(xuu31100000), Nothing, dce) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), chf, cgd) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), chf, cgd) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, fdh), fea)) -> new_esEs19(xuu31100001, xuu60001, fdh, fea) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, dce) -> True new_lt19(xuu99, xuu101, app(app(ty_@2, gb), gc)) -> new_lt6(xuu99, xuu101, gb, gc) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fcb), fcc)) -> new_esEs12(xuu3110001, xuu6001, fcb, fcc) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, ecb)) -> new_esEs24(xuu3110000, xuu6000, ecb) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, dhd), dhe)) -> new_esEs19(xuu3110000, xuu6000, dhd, dhe) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, dfa)) -> new_esEs21(xuu3110001, xuu6001, dfa) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, ffb), ffc)) -> new_esEs19(xuu31100000, xuu60000, ffb, ffc) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, fdb)) -> new_esEs24(xuu3110001, xuu6001, fdb) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, dda), ddb)) -> new_esEs19(xuu31100000, xuu60000, dda, ddb) new_ltEs21(xuu100, xuu102, app(ty_Maybe, hh)) -> new_ltEs8(xuu100, xuu102, hh) new_ltEs24(xuu582, xuu592, app(ty_Ratio, fgd)) -> new_ltEs18(xuu582, xuu592, fgd) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, eda)) -> new_esEs21(xuu3110002, xuu6002, eda) new_ltEs8(Nothing, Just(xuu590), fbe) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, bch), bda)) -> new_ltEs17(xuu582, xuu592, bch, bda) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs23(xuu31100000, xuu60000, dge, dgf, dgg) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, cbd), cbe)) -> new_lt6(xuu70, xuu73, cbd, cbe) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], cbg)) -> new_esEs13(xuu70, xuu73, cbg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, fhc, fhd, fhe) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhc, fhd, fhe) new_ltEs23(xuu71, xuu74, app(ty_Maybe, caf)) -> new_ltEs8(xuu71, xuu74, caf) new_lt23(xuu580, xuu590, app(app(ty_@2, bed), bee)) -> new_lt6(xuu580, xuu590, bed, bee) new_compare0(xuu311000, xuu600, app(app(ty_Either, ef), eg)) -> new_compare31(xuu311000, xuu600, ef, eg) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, fdc) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, deb)) -> new_ltEs18(xuu581, xuu591, deb) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, cg), da), db)) -> new_esEs23(xuu580, xuu590, cg, da, db) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, eb) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs13(xuu582, xuu592, bce, bcf, bcg) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(ty_@2, dab), dac)) -> new_esEs19(xuu31100000, xuu60000, dab, dac) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, ece), ecf)) -> new_esEs12(xuu3110002, xuu6002, ece, ecf) new_esEs32(xuu31100001, xuu60001, app(ty_[], egg)) -> new_esEs13(xuu31100001, xuu60001, egg) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, dfe)) -> new_esEs24(xuu3110001, xuu6001, dfe) new_lt21(xuu69, xuu72, app(app(ty_@2, ccf), ccg)) -> new_lt6(xuu69, xuu72, ccf, ccg) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), ef, eg) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_ltEs20(xuu87, xuu88, app(ty_Ratio, edg)) -> new_ltEs18(xuu87, xuu88, edg) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, cha), cgd) -> new_esEs21(xuu31100000, xuu60000, cha) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, ead), eae)) -> new_esEs12(xuu3110000, xuu6000, ead, eae) new_esEs30(xuu99, xuu101, app(ty_[], ge)) -> new_esEs13(xuu99, xuu101, ge) new_ltEs23(xuu71, xuu74, app(ty_Ratio, fbf)) -> new_ltEs18(xuu71, xuu74, fbf) new_esEs38(xuu581, xuu591, app(app(ty_@2, bdb), bdc)) -> new_esEs19(xuu581, xuu591, bdb, bdc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, bbg), bbh), bdd)) -> new_ltEs13(xuu58, xuu59, bbg, bbh, bdd) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs13(xuu580, xuu590, bhd, bhe, bhf) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, cbf) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, caa), new_asAs(new_esEs35(xuu69, xuu72, caa), new_pePe(new_lt20(xuu70, xuu73, cab), new_asAs(new_esEs34(xuu70, xuu73, cab), new_ltEs23(xuu71, xuu74, cbf)))), caa, cab, cbf) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], ce)) -> new_lt7(xuu580, xuu590, ce) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, eah)) -> new_esEs21(xuu3110000, xuu6000, eah) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, ecc)) -> new_ltEs18(xuu58, xuu59, ecc) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, eab)) -> new_esEs24(xuu3110000, xuu6000, eab) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, fbe) -> True new_ltEs8(Just(xuu580), Nothing, fbe) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu580, xuu590, bhc) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(ty_Ratio, efd)) -> new_ltEs18(xuu100, xuu102, efd) new_compare24(xuu80, xuu81, False, ddh, cea) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, ddh), ddh, cea) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, dba, dbb) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, dba, dbb) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], cch)) -> new_lt7(xuu69, xuu72, cch) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fcd), fce)) -> new_esEs19(xuu3110001, xuu6001, fcd, fce) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, fhc, fhd, fhe) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, fhc, fhd, fhe) new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, ede)) -> new_esEs24(xuu3110002, xuu6002, ede) new_esEs25(EQ, EQ) -> True new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), ef, eg) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_compare0(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, False, x4, x5) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs38(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Int) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs39(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt19(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_esEs4(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs21(Nothing, Nothing, x0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_lt19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare25(x0, x1, False, x2) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt9(x0, x1) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs13([], [], x0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs8(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Nothing, x1) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Integer) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_ltEs24(x0, x1, ty_Char) new_lt7(x0, x1, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_primEqNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Int) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_compare0(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Int) new_ltEs8(Nothing, Nothing, x0) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare8(False, False) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare0(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs7(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs9(LT, LT) new_ltEs6(False, False) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_lt5(x0, x1) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, ty_Double) new_esEs16(@0, @0) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_@0) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(Right(x0), Right(x1), x2, x3) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, True, x2, x3) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs17(True, True) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Double) new_ltEs4(x0, x1, x2) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs30(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs25(EQ, EQ) new_not(True) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt22(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_@0) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, True) new_pePe(True, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, ty_Float) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs22(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare7(Nothing, Nothing, x0) new_ltEs5(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, ty_@0) new_compare19(x0, x1, False, x2, x3) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare8(True, True) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_fsEs(x0) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_lt8(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Int) new_primCompAux00(x0, x1, LT, x2) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_[], x2)) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_compare25(x0, x1, True, x2) new_compare7(Just(x0), Just(x1), x2) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, True) new_ltEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare0(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs37(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_compare24(x0, x1, True, x2, x3) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare6(:(x0, x1), [], x2) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs37(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Char) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_compare0(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare31(Left(x0), Left(x1), x2, x3) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_compare12(Integer(x0), Integer(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Nothing, x1) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs13(:(x0, x1), [], x2) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(GT, GT) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt23(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(True, x0) new_esEs34(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs21(Nothing, Just(x0), x1) new_esEs30(x0, x1, ty_@0) new_compare110(x0, x1, True, x2) new_compare0(x0, x1, ty_Char) new_compare11(x0, x1, True, x2, x3) new_esEs22(Char(x0), Char(x1)) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_compare6(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_compare0(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt18(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_compare7(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Float) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_compare27(x0, x1, False, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_compare6([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt17(x0, x1, x2, x3) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare6([], [], x0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_compare29(Char(x0), Char(x1)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt4(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_lt20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare7(Just(x0), Nothing, x1) new_lt10(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(x0, x1) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_compare30(EQ, LT) new_compare30(LT, EQ) new_ltEs22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Integer) new_lt4(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, x2) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_@0) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_lt15(x0, x1) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs34(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_esEs13([], :(x0, x1), x2) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_lt0(xuu99, xuu101, ge) -> new_compare(xuu99, xuu101, ge) new_compare(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), df) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xuu87, xuu88, cff, cfg, cfh) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_[], bcc)) -> new_ltEs0(xuu582, xuu592, bcc) new_ltEs0(xuu58, xuu59, de) -> new_compare(xuu58, xuu59, de) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_[], bde), bdd) -> new_lt0(xuu581, xuu591, bde) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, beg), bbh, bdd) -> new_lt1(xuu580, xuu590, beg) new_lt1(xuu99, xuu101, gf) -> new_compare3(xuu99, xuu101, gf) new_compare3(Just(xuu3110000), Just(xuu6000), eb) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], ce)), cd)) -> new_lt0(xuu580, xuu590, ce) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_Maybe, bd))) -> new_ltEs1(xuu581, xuu591, bd) new_ltEs1(Just(xuu580), Just(xuu590), app(ty_Maybe, bba)) -> new_ltEs1(xuu580, xuu590, bba) new_ltEs1(Just(xuu580), Just(xuu590), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xuu580, xuu590, bed, bee) new_lt(xuu99, xuu101, gb, gc) -> new_compare1(xuu99, xuu101, gb, gc) new_compare1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dh, ea) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, hb), hc), gd) -> new_compare5(xuu99, xuu101, hb, hc) new_compare5(Left(xuu3110000), Left(xuu6000), ef, eg) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_compare22(xuu80, xuu81, False, app(ty_Maybe, cec), cea) -> new_ltEs1(xuu80, xuu81, cec) new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xuu580, xuu590, bbe, bbf) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_Maybe, bhc)) -> new_ltEs1(xuu580, xuu590, bhc) new_ltEs1(Just(xuu580), Just(xuu590), app(ty_[], bah)) -> new_ltEs0(xuu580, xuu590, bah) new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_@2, baf), bag)) -> new_ltEs(xuu580, xuu590, baf, bag) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_[], bc)) -> new_ltEs0(xuu581, xuu591, bc) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xuu581, xuu591, bh, ca) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xuu580, xuu590, bgh, bha) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xuu581, xuu591, be, bf, bg) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xuu582, xuu592, bch, bda) new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bfh), bfg) -> new_ltEs0(xuu580, xuu590, bfh) new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) new_lt2(xuu99, xuu101, gg, gh, ha) -> new_compare4(xuu99, xuu101, gg, gh, ha) new_compare4(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ec, ed, ee) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, cdb), cdc), cdd), cab, cbf) -> new_lt2(xuu69, xuu72, cdb, cdc, cdd) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_@2, cbd), cbe), cbf) -> new_lt(xuu70, xuu73, cbd, cbe) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(xuu71, xuu74, cac, cad) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xuu580, xuu590, cg, da, db) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xuu581, xuu591, ba, bb) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], ce), cd) -> new_lt0(xuu580, xuu590, ce) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, cb), cc), cd) -> new_lt(xuu580, xuu590, cb, cc) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, dc), dd), cd) -> new_lt3(xuu580, xuu590, dc, dd) new_lt3(xuu99, xuu101, hb, hc) -> new_compare5(xuu99, xuu101, hb, hc) new_compare5(Right(xuu3110000), Right(xuu6000), ef, eg) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfe)) -> new_ltEs1(xuu87, xuu88, cfe) new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, cf), cd) -> new_lt1(xuu580, xuu590, cf) new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_Maybe, bd)) -> new_ltEs1(xuu581, xuu591, bd) new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xuu87, xuu88, cfd) new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xuu580, xuu590, bfe, bff) new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xuu580, xuu590, bge, bgf) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_[], bhb)) -> new_ltEs0(xuu580, xuu590, bhb) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xuu580, xuu590, bhg, bhh) new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bga), bfg) -> new_ltEs1(xuu580, xuu590, bga) new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_Maybe, bcd)) -> new_ltEs1(xuu582, xuu592, bcd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xuu580, xuu590, bfc, bfd) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xuu582, xuu592, bca, bcb) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xuu581, xuu591, bdb, bdc) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], bef), bbh, bdd) -> new_lt0(xuu580, xuu590, bef) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xuu581, xuu591, beb, bec) new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_Maybe, bdf), bdd) -> new_lt1(xuu581, xuu591, bdf) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, ccf), ccg), cab, cbf) -> new_lt(xuu69, xuu72, ccf, ccg) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_[], cbg), cbf) -> new_lt0(xuu70, xuu73, cbg) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_[], cae)) -> new_ltEs0(xuu71, xuu74, cae) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, cde), cdf), cab, cbf) -> new_lt3(xuu69, xuu72, cde, cdf) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_Maybe, caf)) -> new_ltEs1(xuu71, xuu74, caf) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_Either, cbb), cbc)) -> new_ltEs3(xuu71, xuu74, cbb, cbc) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], cch), cab, cbf) -> new_lt0(xuu69, xuu72, cch) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_Maybe, cbh), cbf) -> new_lt1(xuu70, xuu73, cbh) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(app(ty_@3, cca), ccb), ccc), cbf) -> new_lt2(xuu70, xuu73, cca, ccb, ccc) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs2(xuu71, xuu74, cag, cah, cba) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_Either, ccd), cce), cbf) -> new_lt3(xuu70, xuu73, ccd, cce) new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, cda), cab, cbf) -> new_lt1(xuu69, xuu72, cda) new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xuu80, xuu81, ced, cee, cef) new_compare22(xuu80, xuu81, False, app(ty_[], ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, gb), gc), gd) -> new_compare1(xuu99, xuu101, gb, gc) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_Maybe, hh)) -> new_ltEs1(xuu100, xuu102, hh) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, gg), gh), ha), gd) -> new_compare4(xuu99, xuu101, gg, gh, ha) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_@2, he), hf)) -> new_ltEs(xuu100, xuu102, he, hf) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_[], hg)) -> new_ltEs0(xuu100, xuu102, hg) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs2(xuu100, xuu102, baa, bab, bac) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ge), gd) -> new_compare(xuu99, xuu101, ge) new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_Either, bad), bae)) -> new_ltEs3(xuu100, xuu102, bad, bae) new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, gf), gd) -> new_compare3(xuu99, xuu101, gf) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_Maybe, bhc))) -> new_ltEs1(xuu580, xuu590, bhc) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xuu580, xuu590, bfc, bfd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, beg)), bbh), bdd)) -> new_lt1(xuu580, xuu590, beg) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_[], bhb))) -> new_ltEs0(xuu580, xuu590, bhb) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcd))) -> new_ltEs1(xuu582, xuu592, bcd) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xuu580, xuu590, bge, bgf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcc))) -> new_ltEs0(xuu582, xuu592, bcc) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], bef)), bbh), bdd)) -> new_lt0(xuu580, xuu590, bef) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bfh)), bfg)) -> new_ltEs0(xuu580, xuu590, bfh) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xuu580, xuu590, bgh, bha) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xuu580, xuu590, cb, cc) new_compare20(xuu58, xuu59, False, app(ty_[], de)) -> new_compare(xuu58, xuu59, de) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xuu581, xuu591, be, bf, bg) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(xuu580, xuu590, bbe, bbf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bdf)), bdd)) -> new_lt1(xuu581, xuu591, bdf) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xuu582, xuu592, bch, bda) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, cf)), cd)) -> new_lt1(xuu580, xuu590, cf) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], bah))) -> new_ltEs0(xuu580, xuu590, bah) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xuu580, xuu590, bfe, bff) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xuu582, xuu592, bca, bcb) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xuu581, xuu591, beb, bec) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu580, xuu590, bba) new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xuu580, xuu590, bhg, bhh) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, baf), bag))) -> new_ltEs(xuu580, xuu590, baf, bag) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xuu581, xuu591, ba, bb) new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_[], bde)), bdd)) -> new_lt0(xuu581, xuu591, bde) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xuu580, xuu590, bed, bee) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_[], bc))) -> new_ltEs0(xuu581, xuu591, bc) new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bga)), bfg)) -> new_ltEs1(xuu580, xuu590, bga) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xuu581, xuu591, bh, ca) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xuu580, xuu590, dc, dd) new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xuu581, xuu591, bdb, bdc) new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xuu580, xuu590, cg, da, db) new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, dg) -> new_primCompAux0(xuu311001, xuu601, new_compare0(xuu311000, xuu600, dg), app(ty_[], dg)) new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], fb)) -> new_compare(xuu37, xuu38, fb) new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], df)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, ec), ed), ee)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, dh), ea)) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, eb)) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) The TRS R consists of the following rules: new_esEs30(xuu99, xuu101, app(app(ty_@2, gb), gc)) -> new_esEs19(xuu99, xuu101, gb, gc) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], efe)) -> new_esEs13(xuu31100002, xuu60002, efe) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, cgd) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, dg) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, dg), app(ty_[], dg)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xuu3110000, xuu6000, eef, eeg, eeh) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, dce)) -> new_esEs21(xuu3110000, xuu6000, dce) new_ltEs4(xuu58, xuu59, de) -> new_fsEs(new_compare6(xuu58, xuu59, de)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, fbc) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], bcc)) -> new_ltEs4(xuu582, xuu592, bcc) new_lt20(xuu70, xuu73, app(app(ty_Either, ccd), cce)) -> new_lt17(xuu70, xuu73, ccd, cce) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs7(xuu580, xuu590, bgh, bha) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, bcd)) -> new_ltEs8(xuu582, xuu592, bcd) new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs23(xuu69, xuu72, cdb, cdc, cdd) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, chb), chc), chd), cgd) -> new_esEs23(xuu31100000, xuu60000, chb, chc, chd) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, fab), fac)) -> new_esEs12(xuu31100000, xuu60000, fab, fac) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, fga)) -> new_ltEs18(xuu580, xuu590, fga) new_lt19(xuu99, xuu101, app(ty_Ratio, efc)) -> new_lt18(xuu99, xuu101, efc) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, fhc, fhd, fhe) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], bfh), bfg) -> new_ltEs4(xuu580, xuu590, bfh) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, che), cgd) -> new_esEs24(xuu31100000, xuu60000, che) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], bde)) -> new_lt7(xuu581, xuu591, bde) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), ebe, ebf) -> new_asAs(new_esEs37(xuu31100000, xuu60000, ebe), new_esEs36(xuu31100001, xuu60001, ebf)) new_lt21(xuu69, xuu72, app(ty_Maybe, cda)) -> new_lt8(xuu69, xuu72, cda) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), ef, eg) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, feb)) -> new_esEs21(xuu31100001, xuu60001, feb) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, dba, dbb) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, dba, dbb) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, cgd) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), bgg, bfg) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), df) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, ecc) -> new_fsEs(new_compare15(xuu58, xuu59, ecc)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, dgh)) -> new_esEs24(xuu31100000, xuu60000, dgh) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_lt17(xuu99, xuu101, hb, hc) -> new_esEs25(new_compare31(xuu99, xuu101, hb, hc), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt13(xuu70, xuu73, cca, ccb, ccc) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, cge), cgf), cgd) -> new_esEs12(xuu31100000, xuu60000, cge, cgf) new_esEs26(xuu580, xuu590, app(ty_Maybe, cf)) -> new_esEs21(xuu580, xuu590, cf) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs23(xuu3110001, xuu6001, fcg, fch, fda) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs23(xuu3110000, xuu6000, eba, ebb, ebc) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs13(xuu87, xuu88, cff, cfg, cfh) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs17(xuu580, xuu590, bhg, bhh) new_esEs39(xuu580, xuu590, app(ty_Ratio, fgf)) -> new_esEs24(xuu580, xuu590, fgf) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, fbg)) -> new_esEs24(xuu70, xuu73, fbg) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, ecg), ech)) -> new_esEs19(xuu3110002, xuu6002, ecg, ech) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, fdc) -> GT new_esEs11(xuu3110000, xuu6000, app(ty_[], dbc)) -> new_esEs13(xuu3110000, xuu6000, dbc) new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, chf), cgd)) -> new_esEs12(xuu3110000, xuu6000, chf, cgd) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, h), cd)) -> new_ltEs7(xuu58, xuu59, h, cd) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt19(xuu99, xuu101, app(ty_Maybe, gf)) -> new_lt8(xuu99, xuu101, gf) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, egb)) -> new_esEs21(xuu31100002, xuu60002, egb) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), dff) -> new_asAs(new_esEs27(xuu31100000, xuu60000, dff), new_esEs13(xuu31100001, xuu60001, dff)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, cdg), cdh)) -> new_ltEs7(xuu80, xuu81, cdg, cdh) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, ffh)) -> new_esEs24(xuu31100000, xuu60000, ffh) new_ltEs5(xuu80, xuu81, app(app(ty_Either, ceg), ceh)) -> new_ltEs17(xuu80, xuu81, ceg, ceh) new_lt23(xuu580, xuu590, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt13(xuu580, xuu590, beh, bfa, bfb) new_esEs39(xuu580, xuu590, app(ty_[], bef)) -> new_esEs13(xuu580, xuu590, bef) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs23(xuu3110002, xuu6002, edb, edc, edd) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, gb, gc) -> new_esEs25(new_compare18(xuu99, xuu101, gb, gc), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], ce)) -> new_esEs13(xuu580, xuu590, ce) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, bdf)) -> new_esEs21(xuu581, xuu591, bdf) new_ltEs20(xuu87, xuu88, app(app(ty_Either, cga), cgb)) -> new_ltEs17(xuu87, xuu88, cga, cgb) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, bdd) -> new_pePe(new_lt23(xuu580, xuu590, bbg), new_asAs(new_esEs39(xuu580, xuu590, bbg), new_pePe(new_lt22(xuu581, xuu591, bbh), new_asAs(new_esEs38(xuu581, xuu591, bbh), new_ltEs24(xuu582, xuu592, bdd))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, cgd) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs13(:(xuu31100000, xuu31100001), [], dff) -> False new_esEs13([], :(xuu60000, xuu60001), dff) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_ltEs19(xuu581, xuu591, app(ty_Maybe, bd)) -> new_ltEs8(xuu581, xuu591, bd) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs23(xuu31100001, xuu60001, ehe, ehf, ehg) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], bah)) -> new_ltEs4(xuu580, xuu590, bah) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, fdf), fdg)) -> new_esEs12(xuu31100001, xuu60001, fdf, fdg) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, bgg), bfg)) -> new_ltEs17(xuu58, xuu59, bgg, bfg) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, ccf), ccg)) -> new_esEs19(xuu69, xuu72, ccf, ccg) new_esEs36(xuu31100001, xuu60001, app(ty_[], fde)) -> new_esEs13(xuu31100001, xuu60001, fde) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, eb)) -> new_compare7(xuu311000, xuu600, eb) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, cgd) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_ltEs5(xuu80, xuu81, app(ty_Maybe, cec)) -> new_ltEs8(xuu80, xuu81, cec) new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, eec), eed)) -> new_esEs19(xuu3110000, xuu6000, eec, eed) new_compare25(xuu58, xuu59, False, fbd) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, fbd), fbd) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, hd, gd) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, hd), new_asAs(new_esEs30(xuu99, xuu101, hd), new_ltEs21(xuu100, xuu102, gd)), hd, gd) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, fad), fae)) -> new_esEs19(xuu31100000, xuu60000, fad, fae) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, eaf), eag)) -> new_esEs19(xuu3110000, xuu6000, eaf, eag) new_compare10(xuu156, xuu157, xuu158, xuu159, False, dba, dbb) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, beb), bec)) -> new_esEs12(xuu581, xuu591, beb, bec) new_lt21(xuu69, xuu72, app(ty_Ratio, fbh)) -> new_lt18(xuu69, xuu72, fbh) new_ltEs20(xuu87, xuu88, app(app(ty_@2, cfb), cfc)) -> new_ltEs7(xuu87, xuu88, cfb, cfc) new_compare210(xuu99, xuu100, xuu101, xuu102, True, hd, gd) -> EQ new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, bfg) -> new_ltEs12(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhc, fhd, fhe) -> LT new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_Maybe, dad)) -> new_esEs21(xuu31100000, xuu60000, dad) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs23(xuu99, xuu101, gg, gh, ha) new_compare25(xuu58, xuu59, True, fbd) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs13(xuu580, xuu590, bgb, bgc, bgd) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, dc), dd)) -> new_esEs12(xuu580, xuu590, dc, dd) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, bga), bfg) -> new_ltEs8(xuu580, xuu590, bga) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs23(xuu3110000, xuu6000, dhg, dhh, eaa) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs23(xuu31100000, xuu60000, fag, fah, fba) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, ddg)) -> new_esEs24(xuu31100000, xuu60000, ddg) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, fha), bfg) -> new_ltEs18(xuu580, xuu590, fha) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, cde), cdf)) -> new_esEs12(xuu69, xuu72, cde, cdf) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, eea), eeb)) -> new_esEs12(xuu3110000, xuu6000, eea, eeb) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, bfg) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, fef)) -> new_esEs24(xuu31100001, xuu60001, fef) new_esEs39(xuu580, xuu590, app(ty_Maybe, beg)) -> new_esEs21(xuu580, xuu590, beg) new_lt23(xuu580, xuu590, app(ty_Maybe, beg)) -> new_lt8(xuu580, xuu590, beg) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, eh), fa)) -> new_compare18(xuu37, xuu38, eh, fa) new_compare0(xuu311000, xuu600, app(app(ty_@2, dh), ea)) -> new_compare18(xuu311000, xuu600, dh, ea) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_[], chg)) -> new_esEs13(xuu31100000, xuu60000, chg) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, ehb), ehc)) -> new_esEs19(xuu31100001, xuu60001, ehb, ehc) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], bde)) -> new_esEs13(xuu581, xuu591, bde) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], cgc), cgd) -> new_esEs13(xuu31100000, xuu60000, cgc) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, beb), bec)) -> new_lt17(xuu581, xuu591, beb, bec) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, efb)) -> new_compare15(xuu311000, xuu600, efb) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], dha)) -> new_esEs13(xuu3110000, xuu6000, dha) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, gf)) -> new_esEs21(xuu99, xuu101, gf) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, ddh, cea) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, fdd)) -> new_compare15(xuu37, xuu38, fdd) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, app(app(ty_Either, hb), hc)) -> new_esEs12(xuu99, xuu101, hb, hc) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, cac), cad)) -> new_ltEs7(xuu71, xuu74, cac, cad) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, efa)) -> new_esEs24(xuu3110000, xuu6000, efa) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, cb), cc)) -> new_esEs19(xuu580, xuu590, cb, cc) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs23(xuu581, xuu591, bdg, bdh, bea) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, fc)) -> new_compare7(xuu37, xuu38, fc) new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, bba)) -> new_ltEs8(xuu580, xuu590, bba) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs23(xuu31100000, xuu60000, dae, daf, dag) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, eb) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, cg), da), db)) -> new_lt13(xuu580, xuu590, cg, da, db) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, bfc), bfd)) -> new_lt17(xuu580, xuu590, bfc, bfd) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, bfg) -> new_ltEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs22(xuu58, xuu59, app(ty_[], de)) -> new_ltEs4(xuu58, xuu59, de) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, dcd)) -> new_esEs24(xuu3110000, xuu6000, dcd) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], df) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, dbd), dbe)) -> new_esEs12(xuu3110000, xuu6000, dbd, dbe) new_esEs17(True, True) -> True new_lt13(xuu99, xuu101, gg, gh, ha) -> new_esEs25(new_compare16(xuu99, xuu101, gg, gh, ha), LT) new_lt18(xuu99, xuu101, efc) -> new_esEs25(new_compare15(xuu99, xuu101, efc), LT) new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, bfg) -> new_ltEs10(xuu580, xuu590) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs23(xuu70, xuu73, cca, ccb, ccc) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, ccd), cce)) -> new_esEs12(xuu70, xuu73, ccd, cce) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs23(xuu3110000, xuu6000, dca, dcb, dcc) new_lt21(xuu69, xuu72, app(app(ty_Either, cde), cdf)) -> new_lt17(xuu69, xuu72, cde, cdf) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_esEs5(xuu3110000, xuu6000, app(ty_[], dff)) -> new_esEs13(xuu3110000, xuu6000, dff) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, cgd) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, eee)) -> new_esEs21(xuu3110000, xuu6000, eee) new_compare27(xuu87, xuu88, True, cfa, edf) -> EQ new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, efc)) -> new_esEs24(xuu99, xuu101, efc) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs7(xuu580, xuu590, bfe, bff) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, dc), dd)) -> new_lt17(xuu580, xuu590, dc, dd) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fgg, fgh) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], hg)) -> new_ltEs4(xuu100, xuu102, hg) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dh, ea) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, faf)) -> new_esEs21(xuu31100000, xuu60000, faf) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), eb) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs23(xuu31100000, xuu60000, ffe, fff, ffg) new_ltEs5(xuu80, xuu81, app(ty_[], ceb)) -> new_ltEs4(xuu80, xuu81, ceb) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, caa, cab, cbf) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), ecb) -> new_asAs(new_esEs29(xuu31100000, xuu60000, ecb), new_esEs28(xuu31100001, xuu60001, ecb)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_esEs8(xuu3110001, xuu6001, app(ty_[], ded)) -> new_esEs13(xuu3110001, xuu6001, ded) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, bfg) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, eff), efg)) -> new_esEs12(xuu31100002, xuu60002, eff, efg) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, dbh)) -> new_esEs21(xuu3110000, xuu6000, dbh) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs23(xuu31100000, xuu60000, ddd, dde, ddf) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, ehh)) -> new_esEs24(xuu31100001, xuu60001, ehh) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, dgb), dgc)) -> new_esEs19(xuu31100000, xuu60000, dgb, dgc) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, bca), bcb)) -> new_ltEs7(xuu582, xuu592, bca, bcb) new_ltEs17(Right(xuu580), Left(xuu590), bgg, bfg) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], cfd)) -> new_ltEs4(xuu87, xuu88, cfd) new_esEs35(xuu69, xuu72, app(ty_Maybe, cda)) -> new_esEs21(xuu69, xuu72, cda) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, egf)) -> new_esEs24(xuu31100002, xuu60002, egf) new_compare110(xuu125, xuu126, True, fbc) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], bc)) -> new_ltEs4(xuu581, xuu591, bc) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, bdf)) -> new_lt8(xuu581, xuu591, bdf) new_esEs34(xuu70, xuu73, app(ty_Maybe, cbh)) -> new_esEs21(xuu70, xuu73, cbh) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs23(xuu31100001, xuu60001, fec, fed, fee) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, egh), eha)) -> new_esEs12(xuu31100001, xuu60001, egh, eha) new_esEs7(xuu3110002, xuu6002, app(ty_[], ecd)) -> new_esEs13(xuu3110002, xuu6002, ecd) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, ge) -> new_esEs25(new_compare6(xuu99, xuu101, ge), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, dfh), dga)) -> new_esEs12(xuu31100000, xuu60000, dfh, dga) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(ty_Ratio, dah)) -> new_esEs24(xuu31100000, xuu60000, dah) new_esEs4(xuu3110001, xuu6001, app(ty_[], fca)) -> new_esEs13(xuu3110001, xuu6001, fca) new_esEs39(xuu580, xuu590, app(app(ty_@2, bed), bee)) -> new_esEs19(xuu580, xuu590, bed, bee) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, ehd)) -> new_esEs21(xuu31100001, xuu60001, ehd) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, fbg)) -> new_lt18(xuu70, xuu73, fbg) new_lt22(xuu581, xuu591, app(app(ty_@2, bdb), bdc)) -> new_lt6(xuu581, xuu591, bdb, bdc) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, bfg) -> new_ltEs11(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs13(xuu100, xuu102, baa, bab, bac) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, hb), hc)) -> new_lt17(xuu99, xuu101, hb, hc) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, baf), bag)) -> new_ltEs7(xuu580, xuu590, baf, bag) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs23(xuu3110001, xuu6001, dfb, dfc, dfd) new_esEs10(xuu3110000, xuu6000, app(ty_[], edh)) -> new_esEs13(xuu3110000, xuu6000, edh) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, dhb), dhc)) -> new_esEs12(xuu3110000, xuu6000, dhb, dhc) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, he), hf)) -> new_ltEs7(xuu100, xuu102, he, hf) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, bbe), bbf)) -> new_ltEs17(xuu580, xuu590, bbe, bbf) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], fb)) -> new_compare6(xuu37, xuu38, fb) new_compare0(xuu311000, xuu600, app(ty_[], df)) -> new_compare6(xuu311000, xuu600, df) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, bfg) -> new_ltEs14(xuu580, xuu590) new_compare19(xuu142, xuu143, True, fgb, fgc) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], df) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Ratio, fge)) -> new_esEs24(xuu581, xuu591, fge) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], eac)) -> new_esEs13(xuu3110000, xuu6000, eac) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, fbb)) -> new_esEs24(xuu31100000, xuu60000, fbb) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, deg), deh)) -> new_esEs19(xuu3110001, xuu6001, deg, deh) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, fd), ff), fg)) -> new_compare16(xuu37, xuu38, fd, ff, fg) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_[], bhb)) -> new_ltEs4(xuu580, xuu590, bhb) new_esEs35(xuu69, xuu72, app(ty_[], cch)) -> new_esEs13(xuu69, xuu72, cch) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, cgd) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], bef)) -> new_lt7(xuu580, xuu590, bef) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs13(xuu581, xuu591, be, bf, bg) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs23(xuu580, xuu590, beh, bfa, bfb) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], dff) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, cfe)) -> new_ltEs8(xuu87, xuu88, cfe) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, ddc)) -> new_esEs21(xuu31100000, xuu60000, ddc) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs13(xuu580, xuu590, bbb, bbc, bbd) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, cf)) -> new_lt8(xuu580, xuu590, cf) new_lt20(xuu70, xuu73, app(ty_Maybe, cbh)) -> new_lt8(xuu70, xuu73, cbh) new_lt19(xuu99, xuu101, app(app(app(ty_@3, gg), gh), ha)) -> new_lt13(xuu99, xuu101, gg, gh, ha) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, bfg) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, efh), ega)) -> new_esEs19(xuu31100002, xuu60002, efh, ega) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, gf) -> new_esEs25(new_compare7(xuu99, xuu101, gf), LT) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, dea)) -> new_ltEs18(xuu80, xuu81, dea) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, ffd)) -> new_esEs21(xuu31100000, xuu60000, ffd) new_ltEs23(xuu71, xuu74, app(ty_[], cae)) -> new_ltEs4(xuu71, xuu74, cae) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fcf)) -> new_esEs21(xuu3110001, xuu6001, fcf) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, cfa, edf) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, edf), cfa, edf) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), df) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, df) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fgg, fgh) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, bh), ca)) -> new_ltEs17(xuu581, xuu591, bh, ca) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), ebg, ebh, eca) -> new_asAs(new_esEs33(xuu31100000, xuu60000, ebg), new_asAs(new_esEs32(xuu31100001, xuu60001, ebh), new_esEs31(xuu31100002, xuu60002, eca))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_compare31(Left(xuu3110000), Right(xuu6000), ef, eg) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, fbh)) -> new_esEs24(xuu69, xuu72, fbh) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, cb), cc)) -> new_lt6(xuu580, xuu590, cb, cc) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt13(xuu69, xuu72, cdb, cdc, cdd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, dcg), dch)) -> new_esEs12(xuu31100000, xuu60000, dcg, dch) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs23(xuu3110000, xuu6000, ebg, ebh, eca) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs17(xuu580, xuu590, bge, bgf) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, dhf)) -> new_esEs21(xuu3110000, xuu6000, dhf) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, dgd)) -> new_esEs21(xuu31100000, xuu60000, dgd) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, dec)) -> new_lt18(xuu580, xuu590, dec) new_ltEs23(xuu71, xuu74, app(app(ty_Either, cbb), cbc)) -> new_ltEs17(xuu71, xuu74, cbb, cbc) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, dbf), dbg)) -> new_esEs19(xuu3110000, xuu6000, dbf, dbg) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, dec)) -> new_esEs24(xuu580, xuu590, dec) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], dcf)) -> new_esEs13(xuu31100000, xuu60000, dcf) new_ltEs21(xuu100, xuu102, app(app(ty_Either, bad), bae)) -> new_ltEs17(xuu100, xuu102, bad, bae) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_compare7(Just(xuu3110000), Just(xuu6000), eb) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, fh), ga)) -> new_compare31(xuu37, xuu38, fh, ga) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, cgd) -> new_esEs17(xuu31100000, xuu60000) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, feh), ffa)) -> new_esEs12(xuu31100000, xuu60000, feh, ffa) new_compare19(xuu142, xuu143, False, fgb, fgc) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs23(xuu31100002, xuu60002, egc, egd, ege) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], feg)) -> new_esEs13(xuu31100000, xuu60000, feg) new_ltEs19(xuu581, xuu591, app(app(ty_@2, ba), bb)) -> new_ltEs7(xuu581, xuu591, ba, bb) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, cbd), cbe)) -> new_esEs19(xuu70, xuu73, cbd, cbe) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, ec), ed), ee)) -> new_compare16(xuu311000, xuu600, ec, ed, ee) new_lt22(xuu581, xuu591, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt13(xuu581, xuu591, bdg, bdh, bea) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, dee), def)) -> new_esEs12(xuu3110001, xuu6001, dee, def) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs13(xuu71, xuu74, cag, cah, cba) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, ebd)) -> new_esEs24(xuu3110000, xuu6000, ebd) new_lt20(xuu70, xuu73, app(ty_[], cbg)) -> new_lt7(xuu70, xuu73, cbg) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, cgd) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, cgg), cgh), cgd) -> new_esEs19(xuu31100000, xuu60000, cgg, cgh) new_esEs27(xuu31100000, xuu60000, app(ty_[], dfg)) -> new_esEs13(xuu31100000, xuu60000, dfg) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ebe), ebf)) -> new_esEs19(xuu3110000, xuu6000, ebe, ebf) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], faa)) -> new_esEs13(xuu31100000, xuu60000, faa) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ec, ed, ee) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) new_lt19(xuu99, xuu101, app(ty_[], ge)) -> new_lt7(xuu99, xuu101, ge) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, fbe)) -> new_ltEs8(xuu58, xuu59, fbe) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_Ratio, fhb)) -> new_ltEs18(xuu580, xuu590, fhb) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(ty_Either, chh), daa)) -> new_esEs12(xuu31100000, xuu60000, chh, daa) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, fge)) -> new_lt18(xuu581, xuu591, fge) new_compare10(xuu156, xuu157, xuu158, xuu159, True, dba, dbb) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs13(xuu80, xuu81, ced, cee, cef) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), h, cd) -> new_pePe(new_lt4(xuu580, xuu590, h), new_asAs(new_esEs26(xuu580, xuu590, h), new_ltEs19(xuu581, xuu591, cd))) new_lt23(xuu580, xuu590, app(ty_Ratio, fgf)) -> new_lt18(xuu580, xuu590, fgf) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, bfc), bfd)) -> new_esEs12(xuu580, xuu590, bfc, bfd) new_esEs21(Nothing, Just(xuu60000), dce) -> False new_esEs21(Just(xuu31100000), Nothing, dce) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), chf, cgd) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), chf, cgd) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, fdh), fea)) -> new_esEs19(xuu31100001, xuu60001, fdh, fea) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, dce) -> True new_lt19(xuu99, xuu101, app(app(ty_@2, gb), gc)) -> new_lt6(xuu99, xuu101, gb, gc) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fcb), fcc)) -> new_esEs12(xuu3110001, xuu6001, fcb, fcc) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, ecb)) -> new_esEs24(xuu3110000, xuu6000, ecb) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, dhd), dhe)) -> new_esEs19(xuu3110000, xuu6000, dhd, dhe) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, dfa)) -> new_esEs21(xuu3110001, xuu6001, dfa) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, ffb), ffc)) -> new_esEs19(xuu31100000, xuu60000, ffb, ffc) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, fdb)) -> new_esEs24(xuu3110001, xuu6001, fdb) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, dda), ddb)) -> new_esEs19(xuu31100000, xuu60000, dda, ddb) new_ltEs21(xuu100, xuu102, app(ty_Maybe, hh)) -> new_ltEs8(xuu100, xuu102, hh) new_ltEs24(xuu582, xuu592, app(ty_Ratio, fgd)) -> new_ltEs18(xuu582, xuu592, fgd) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, eda)) -> new_esEs21(xuu3110002, xuu6002, eda) new_ltEs8(Nothing, Just(xuu590), fbe) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, bch), bda)) -> new_ltEs17(xuu582, xuu592, bch, bda) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), bgg, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs23(xuu31100000, xuu60000, dge, dgf, dgg) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, cbd), cbe)) -> new_lt6(xuu70, xuu73, cbd, cbe) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], cbg)) -> new_esEs13(xuu70, xuu73, cbg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, fhc, fhd, fhe) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhc, fhd, fhe) new_ltEs23(xuu71, xuu74, app(ty_Maybe, caf)) -> new_ltEs8(xuu71, xuu74, caf) new_lt23(xuu580, xuu590, app(app(ty_@2, bed), bee)) -> new_lt6(xuu580, xuu590, bed, bee) new_compare0(xuu311000, xuu600, app(app(ty_Either, ef), eg)) -> new_compare31(xuu311000, xuu600, ef, eg) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, fdc) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, deb)) -> new_ltEs18(xuu581, xuu591, deb) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, cg), da), db)) -> new_esEs23(xuu580, xuu590, cg, da, db) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, eb) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs13(xuu582, xuu592, bce, bcf, bcg) new_esEs12(Right(xuu31100000), Right(xuu60000), chf, app(app(ty_@2, dab), dac)) -> new_esEs19(xuu31100000, xuu60000, dab, dac) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, ece), ecf)) -> new_esEs12(xuu3110002, xuu6002, ece, ecf) new_esEs32(xuu31100001, xuu60001, app(ty_[], egg)) -> new_esEs13(xuu31100001, xuu60001, egg) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, dfe)) -> new_esEs24(xuu3110001, xuu6001, dfe) new_lt21(xuu69, xuu72, app(app(ty_@2, ccf), ccg)) -> new_lt6(xuu69, xuu72, ccf, ccg) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), ef, eg) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) new_ltEs20(xuu87, xuu88, app(ty_Ratio, edg)) -> new_ltEs18(xuu87, xuu88, edg) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, cha), cgd) -> new_esEs21(xuu31100000, xuu60000, cha) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, ead), eae)) -> new_esEs12(xuu3110000, xuu6000, ead, eae) new_esEs30(xuu99, xuu101, app(ty_[], ge)) -> new_esEs13(xuu99, xuu101, ge) new_ltEs23(xuu71, xuu74, app(ty_Ratio, fbf)) -> new_ltEs18(xuu71, xuu74, fbf) new_esEs38(xuu581, xuu591, app(app(ty_@2, bdb), bdc)) -> new_esEs19(xuu581, xuu591, bdb, bdc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, bbg), bbh), bdd)) -> new_ltEs13(xuu58, xuu59, bbg, bbh, bdd) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs13(xuu580, xuu590, bhd, bhe, bhf) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, cbf) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, caa), new_asAs(new_esEs35(xuu69, xuu72, caa), new_pePe(new_lt20(xuu70, xuu73, cab), new_asAs(new_esEs34(xuu70, xuu73, cab), new_ltEs23(xuu71, xuu74, cbf)))), caa, cab, cbf) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], ce)) -> new_lt7(xuu580, xuu590, ce) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, eah)) -> new_esEs21(xuu3110000, xuu6000, eah) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, ecc)) -> new_ltEs18(xuu58, xuu59, ecc) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, eab)) -> new_esEs24(xuu3110000, xuu6000, eab) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, fbe) -> True new_ltEs8(Just(xuu580), Nothing, fbe) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), bgg, app(ty_Maybe, bhc)) -> new_ltEs8(xuu580, xuu590, bhc) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(ty_Ratio, efd)) -> new_ltEs18(xuu100, xuu102, efd) new_compare24(xuu80, xuu81, False, ddh, cea) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, ddh), ddh, cea) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, dba, dbb) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, dba, dbb) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], cch)) -> new_lt7(xuu69, xuu72, cch) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fcd), fce)) -> new_esEs19(xuu3110001, xuu6001, fcd, fce) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, fhc, fhd, fhe) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, fhc, fhd, fhe) new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, ede)) -> new_esEs24(xuu3110002, xuu6002, ede) new_esEs25(EQ, EQ) -> True new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), ef, eg) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_compare0(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, False, x4, x5) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs38(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Int) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs39(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt19(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_esEs4(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs21(Nothing, Nothing, x0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_lt19(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare25(x0, x1, False, x2) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt9(x0, x1) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs13([], [], x0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_esEs8(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Nothing, x1) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Integer) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_ltEs24(x0, x1, ty_Char) new_lt7(x0, x1, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_primEqNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Int) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_compare24(x0, x1, False, x2, x3) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_compare0(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Int) new_ltEs8(Nothing, Nothing, x0) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare8(False, False) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare0(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs7(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs9(LT, LT) new_ltEs6(False, False) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_lt5(x0, x1) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, ty_Double) new_esEs16(@0, @0) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs34(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_primPlusNat0(Zero, Succ(x0)) new_lt19(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_@0) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare31(Right(x0), Right(x1), x2, x3) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, True, x2, x3) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs17(True, True) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Double) new_ltEs4(x0, x1, x2) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs30(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs25(EQ, EQ) new_not(True) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, ty_Ordering) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt22(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_@0) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, True) new_pePe(True, x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, ty_Float) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs22(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare7(Nothing, Nothing, x0) new_ltEs5(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_compare0(x0, x1, ty_@0) new_compare19(x0, x1, False, x2, x3) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_compare8(True, True) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_fsEs(x0) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_lt8(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Int) new_primCompAux00(x0, x1, LT, x2) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_[], x2)) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_compare25(x0, x1, True, x2) new_compare7(Just(x0), Just(x1), x2) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, True) new_ltEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare0(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs37(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_compare24(x0, x1, True, x2, x3) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare6(:(x0, x1), [], x2) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs37(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Char) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_compare0(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare31(Left(x0), Left(x1), x2, x3) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_esEs38(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_compare12(Integer(x0), Integer(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Nothing, x1) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs13(:(x0, x1), [], x2) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(GT, GT) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt23(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_asAs(True, x0) new_esEs34(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs21(Nothing, Just(x0), x1) new_esEs30(x0, x1, ty_@0) new_compare110(x0, x1, True, x2) new_compare0(x0, x1, ty_Char) new_compare11(x0, x1, True, x2, x3) new_esEs22(Char(x0), Char(x1)) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_compare6(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_compare0(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt18(x0, x1, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_compare7(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Float) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_compare27(x0, x1, False, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_compare6([], :(x0, x1), x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt17(x0, x1, x2, x3) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare6([], [], x0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_compare29(Char(x0), Char(x1)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt4(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_lt20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare7(Just(x0), Nothing, x1) new_lt10(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(x0, x1) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_compare30(EQ, LT) new_compare30(LT, EQ) new_ltEs22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Integer) new_lt4(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, x2) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_@0) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_lt15(x0, x1) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs34(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_esEs13([], :(x0, x1), x2) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs22(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) 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_compare(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), df) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 *new_primCompAux(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), xuu311001, xuu601, app(ty_[], df)) -> new_primCompAux(xuu3110000, xuu6000, xuu3110001, xuu6001, df) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 *new_primCompAux(Right(xuu3110000), Right(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_compare5(Right(xuu3110000), Right(xuu6000), ef, eg) -> new_compare23(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, eg), ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs0(xuu58, xuu59, de) -> new_compare(xuu58, xuu59, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare23(xuu87, xuu88, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xuu87, xuu88, cff, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(xuu87, xuu88, False, cfa, app(ty_[], cfd)) -> new_ltEs0(xuu87, xuu88, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_[], bcc)) -> new_ltEs0(xuu582, xuu592, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt0(xuu99, xuu101, ge) -> new_compare(xuu99, xuu101, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt1(xuu99, xuu101, gf) -> new_compare3(xuu99, xuu101, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare3(Just(xuu3110000), Just(xuu6000), eb) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare20(xuu58, xuu59, False, app(ty_[], de)) -> new_compare(xuu58, xuu59, de) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_Maybe, gf), gd) -> new_compare3(xuu99, xuu101, gf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(Just(xuu3110000), Just(xuu6000), xuu311001, xuu601, app(ty_Maybe, eb)) -> new_compare20(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, eb), eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 *new_ltEs1(Just(xuu580), Just(xuu590), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Just(xuu580), Just(xuu590), app(ty_[], bah)) -> new_ltEs0(xuu580, xuu590, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(xuu87, xuu88, False, cfa, app(ty_Maybe, cfe)) -> new_ltEs1(xuu87, xuu88, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(ty_Maybe, bcd)) -> new_ltEs1(xuu582, xuu592, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Just(xuu580), Just(xuu590), app(ty_Maybe, bba)) -> new_ltEs1(xuu580, xuu590, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt(xuu99, xuu101, gb, gc) -> new_compare1(xuu99, xuu101, gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dh, ea) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(ty_[], ge), gd) -> new_compare(xuu99, xuu101, ge) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], fb)) -> new_compare(xuu37, xuu38, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs2(xuu100, xuu102, baa, bab, bac) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_[], hg)) -> new_ltEs0(xuu100, xuu102, hg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(ty_Maybe, hh)) -> new_ltEs1(xuu100, xuu102, hh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_@2, gb), gc), gd) -> new_compare1(xuu99, xuu101, gb, gc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), xuu311001, xuu601, app(app(ty_@2, dh), ea)) -> new_compare2(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, dh), new_esEs4(xuu3110001, xuu6001, ea)), dh, ea) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 *new_compare5(Left(xuu3110000), Left(xuu6000), ef, eg) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare22(xuu80, xuu81, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xuu80, xuu81, ced, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(xuu80, xuu81, False, app(ty_[], ceb), cea) -> new_ltEs0(xuu80, xuu81, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(xuu80, xuu81, False, app(ty_Maybe, cec), cea) -> new_ltEs1(xuu80, xuu81, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(ty_Either, hb), hc), gd) -> new_compare5(xuu99, xuu101, hb, hc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_lt3(xuu99, xuu101, hb, hc) -> new_compare5(xuu99, xuu101, hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_primCompAux(Left(xuu3110000), Left(xuu6000), xuu311001, xuu601, app(app(ty_Either, ef), eg)) -> new_compare22(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, ef), ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_compare23(xuu87, xuu88, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xuu87, xuu88, cga, cgb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu87, xuu88, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xuu87, xuu88, cfb, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xuu582, xuu592, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xuu580, xuu590, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(xuu580), Just(xuu590), app(app(ty_@2, baf), bag)) -> new_ltEs(xuu580, xuu590, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_Either, bad), bae)) -> new_ltEs3(xuu100, xuu102, bad, bae) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(xuu80, xuu81, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xuu80, xuu81, ceg, ceh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(xuu80, xuu81, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xuu80, xuu81, cdg, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_[], ce), cd) -> new_lt0(xuu580, xuu590, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xuu581, xuu591, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(app(ty_@3, cag), cah), cba)) -> new_ltEs2(xuu71, xuu74, cag, cah, cba) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_[], bc)) -> new_ltEs0(xuu581, xuu591, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_[], cae)) -> new_ltEs0(xuu71, xuu74, cae) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(ty_Maybe, cf), cd) -> new_lt1(xuu580, xuu590, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(ty_Maybe, bd)) -> new_ltEs1(xuu581, xuu591, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(ty_Maybe, caf)) -> new_ltEs1(xuu71, xuu74, caf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_@2, cb), cc), cd) -> new_lt(xuu580, xuu590, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xuu581, xuu591, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_Either, cbb), cbc)) -> new_ltEs3(xuu71, xuu74, cbb, cbc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xuu582, xuu592, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, hd, app(app(ty_@2, he), hf)) -> new_ltEs(xuu100, xuu102, he, hf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(xuu99, xuu100, xuu101, xuu102, False, app(app(app(ty_@3, gg), gh), ha), gd) -> new_compare4(xuu99, xuu101, gg, gh, ha) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xuu581, xuu591, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(xuu71, xuu74, cac, cad) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_lt2(xuu99, xuu101, gg, gh, ha) -> new_compare4(xuu99, xuu101, gg, gh, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xuu580, xuu590, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(xuu580, xuu581), @2(xuu590, xuu591), app(app(ty_Either, dc), dd), cd) -> new_lt3(xuu580, xuu590, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare4(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ec, ed, ee) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) 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_primCompAux(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), xuu311001, xuu601, app(app(app(ty_@3, ec), ed), ee)) -> new_compare21(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, ec), new_asAs(new_esEs8(xuu3110001, xuu6001, ed), new_esEs7(xuu3110002, xuu6002, ee))), ec, ed, ee) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 *new_primCompAux(xuu311000, xuu600, xuu311001, xuu601, dg) -> new_primCompAux0(xuu311001, xuu601, new_compare0(xuu311000, xuu600, dg), app(ty_[], dg)) The graph contains the following edges 3 >= 1, 4 >= 2 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_[], bde), bdd) -> new_lt0(xuu581, xuu591, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_[], bef), bbh, bdd) -> new_lt0(xuu580, xuu590, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_[], ce)), cd)) -> new_lt0(xuu580, xuu590, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_[], bef)), bbh), bdd)) -> new_lt0(xuu580, xuu590, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_[], bde)), bdd)) -> new_lt0(xuu581, xuu591, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_[], cbg), cbf) -> new_lt0(xuu70, xuu73, cbg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_[], cch), cab, cbf) -> new_lt0(xuu69, xuu72, cch) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(ty_Maybe, beg), bbh, bdd) -> new_lt1(xuu580, xuu590, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(ty_Maybe, bdf), bdd) -> new_lt1(xuu581, xuu591, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xuu580, xuu590, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xuu581, xuu591, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xuu580, xuu590, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xuu581, xuu591, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xuu581, xuu591, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xuu582, xuu592, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs2(xuu580, xuu590, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xuu580, xuu590, bgb, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xuu580, xuu590, bhd, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_[], bhb))) -> new_ltEs0(xuu580, xuu590, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcc))) -> new_ltEs0(xuu582, xuu592, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_[], bfh)), bfg)) -> new_ltEs0(xuu580, xuu590, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_[], bah))) -> new_ltEs0(xuu580, xuu590, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_[], bc))) -> new_ltEs0(xuu581, xuu591, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(xuu580), Left(xuu590), app(ty_[], bfh), bfg) -> new_ltEs0(xuu580, xuu590, bfh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_[], bhb)) -> new_ltEs0(xuu580, xuu590, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(ty_Maybe, beg)), bbh), bdd)) -> new_lt1(xuu580, xuu590, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bdf)), bdd)) -> new_lt1(xuu581, xuu591, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(ty_Maybe, cf)), cd)) -> new_lt1(xuu580, xuu590, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(ty_Maybe, cbh), cbf) -> new_lt1(xuu70, xuu73, cbh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(ty_Maybe, cda), cab, cbf) -> new_lt1(xuu69, xuu72, cda) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(ty_Maybe, bd))) -> new_ltEs1(xuu581, xuu591, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(ty_Maybe, bhc))) -> new_ltEs1(xuu580, xuu590, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcd))) -> new_ltEs1(xuu582, xuu592, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu580, xuu590, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(ty_Maybe, bga)), bfg)) -> new_ltEs1(xuu580, xuu590, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xuu580, xuu590, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xuu580, xuu590, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xuu581, xuu591, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xuu580, xuu590, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_Either, bbe), bbf))) -> new_ltEs3(xuu580, xuu590, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xuu582, xuu592, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xuu580, xuu590, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xuu581, xuu591, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu580), Right(xuu590), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xuu580, xuu590, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu580), Left(xuu590), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xuu580, xuu590, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xuu582, xuu592, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu580), Just(xuu590), False, app(ty_Maybe, app(app(ty_@2, baf), bag))) -> new_ltEs(xuu580, xuu590, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xuu581, xuu591, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xuu580, xuu590, beh, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xuu581, xuu591, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xuu580, xuu590, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xuu580, xuu590, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xuu581, xuu591, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu580, xuu581), @2(xuu590, xuu591), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xuu580, xuu590, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(ty_Maybe, bhc)) -> new_ltEs1(xuu580, xuu590, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(xuu580), Left(xuu590), app(ty_Maybe, bga), bfg) -> new_ltEs1(xuu580, xuu590, bga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_@2, cbd), cbe), cbf) -> new_lt(xuu70, xuu73, cbd, cbe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_@2, ccf), ccg), cab, cbf) -> new_lt(xuu69, xuu72, ccf, ccg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xuu580, xuu590, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xuu580, xuu590, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Right(xuu580), Right(xuu590), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xuu580, xuu590, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(xuu580), Left(xuu590), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xuu580, xuu590, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(app(ty_@3, cdb), cdc), cdd), cab, cbf) -> new_lt2(xuu69, xuu72, cdb, cdc, cdd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(app(ty_@3, cca), ccb), ccc), cbf) -> new_lt2(xuu70, xuu73, cca, ccb, ccc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, app(app(ty_Either, cde), cdf), cab, cbf) -> new_lt3(xuu69, xuu72, cde, cdf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, caa, app(app(ty_Either, ccd), cce), cbf) -> new_lt3(xuu70, xuu73, ccd, cce) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 ---------------------------------------- (33) YES ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu31101, EQ, bb, bc) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, [], xuu31101, bb, bc) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) The TRS R consists of the following rules: new_esEs30(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_esEs19(xuu99, xuu101, cbe, cbf) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], cgh)) -> new_esEs13(xuu31100002, xuu60002, cgh) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, be) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, bb), app(ty_[], bb)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu3110000, xuu6000, fcb, fcc, fcd) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, ef)) -> new_esEs21(xuu3110000, xuu6000, ef) new_ltEs4(xuu58, xuu59, ee) -> new_fsEs(new_compare6(xuu58, xuu59, ee)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, dcf) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], eff)) -> new_ltEs4(xuu582, xuu592, eff) new_lt20(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_lt17(xuu70, xuu73, dgb, dgc) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_@2, fgd), fge)) -> new_ltEs7(xuu580, xuu590, fgd, fge) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, efg)) -> new_ltEs8(xuu582, xuu592, efg) new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs23(xuu69, xuu72, dha, dhb, dhc) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, cc), cd), ce), be) -> new_esEs23(xuu31100000, xuu60000, cc, cd, ce) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, dbe), dbf)) -> new_esEs12(xuu31100000, xuu60000, dbe, dbf) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, ecc)) -> new_ltEs18(xuu580, xuu590, ecc) new_lt19(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_lt18(xuu99, xuu101, cfb) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, fhf, fhg, fhh) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], ffd), dde) -> new_ltEs4(xuu580, xuu590, ffd) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, cf), be) -> new_esEs24(xuu31100000, xuu60000, cf) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], egh)) -> new_lt7(xuu581, xuu591, egh) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), ecd, ece) -> new_asAs(new_esEs37(xuu31100000, xuu60000, ecd), new_esEs36(xuu31100001, xuu60001, ece)) new_lt21(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_lt8(xuu69, xuu72, dgh) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), cdg, cdh) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, edc)) -> new_esEs21(xuu31100001, xuu60001, edc) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, ec, ed) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, be) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), ddd, dde) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), cdf) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, bfc) -> new_fsEs(new_compare15(xuu58, xuu59, bfc)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, bdf)) -> new_esEs24(xuu31100000, xuu60000, bdf) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_lt17(xuu99, xuu101, ceh, cfa) -> new_esEs25(new_compare31(xuu99, xuu101, ceh, cfa), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_lt13(xuu70, xuu73, dfg, dfh, dga) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bf), bg), be) -> new_esEs12(xuu31100000, xuu60000, bf, bg) new_esEs26(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_esEs21(xuu580, xuu590, bbe) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu3110001, xuu6001, fef, feg, feh) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu3110000, xuu6000, cba, cbb, cbc) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu87, xuu88, cce, ccf, ccg) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_Either, fhc), fhd)) -> new_ltEs17(xuu580, xuu590, fhc, fhd) new_esEs39(xuu580, xuu590, app(ty_Ratio, fba)) -> new_esEs24(xuu580, xuu590, fba) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_esEs24(xuu70, xuu73, dgd) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xuu3110002, xuu6002, bgb, bgc) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, dhg) -> GT new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, app(ty_[], fcf)) -> new_esEs13(xuu3110000, xuu6000, fcf) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cg), be)) -> new_esEs12(xuu3110000, xuu6000, cg, be) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, hf), hg)) -> new_ltEs7(xuu58, xuu59, hf, hg) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt19(xuu99, xuu101, app(ty_Maybe, ced)) -> new_lt8(xuu99, xuu101, ced) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, che)) -> new_esEs21(xuu31100002, xuu60002, che) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bcd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, bcd), new_esEs13(xuu31100001, xuu60001, bcd)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, gd), ge)) -> new_ltEs7(xuu80, xuu81, gd, ge) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, efa)) -> new_esEs24(xuu31100000, xuu60000, efa) new_ltEs5(xuu80, xuu81, app(app(ty_Either, hc), hd)) -> new_ltEs17(xuu80, xuu81, hc, hd) new_lt23(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_lt13(xuu580, xuu590, fad, fae, faf) new_esEs39(xuu580, xuu590, app(ty_[], fab)) -> new_esEs13(xuu580, xuu590, fab) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs23(xuu3110002, xuu6002, bge, bgf, bgg) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, cbe, cbf) -> new_esEs25(new_compare18(xuu99, xuu101, cbe, cbf), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], bbd)) -> new_esEs13(xuu580, xuu590, bbd) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, eha)) -> new_esEs21(xuu581, xuu591, eha) new_ltEs20(xuu87, xuu88, app(app(ty_Either, cch), cda)) -> new_ltEs17(xuu87, xuu88, cch, cda) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), dda, ddb, ddc) -> new_pePe(new_lt23(xuu580, xuu590, dda), new_asAs(new_esEs39(xuu580, xuu590, dda), new_pePe(new_lt22(xuu581, xuu591, ddb), new_asAs(new_esEs38(xuu581, xuu591, ddb), new_ltEs24(xuu582, xuu592, ddc))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, be) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs13(:(xuu31100000, xuu31100001), [], bcd) -> False new_esEs13([], :(xuu60000, xuu60001), bcd) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_ltEs19(xuu581, xuu591, app(ty_Maybe, bac)) -> new_ltEs8(xuu581, xuu591, bac) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs23(xuu31100001, xuu60001, dah, dba, dbb) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], ebd)) -> new_ltEs4(xuu580, xuu590, ebd) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, ecg), ech)) -> new_esEs12(xuu31100001, xuu60001, ecg, ech) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, ddd), dde)) -> new_ltEs17(xuu58, xuu59, ddd, dde) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_esEs19(xuu69, xuu72, dge, dgf) new_esEs36(xuu31100001, xuu60001, app(ty_[], ecf)) -> new_esEs13(xuu31100001, xuu60001, ecf) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, bdg)) -> new_compare7(xuu311000, xuu600, bdg) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, be) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_ltEs5(xuu80, xuu81, app(ty_Maybe, gg)) -> new_ltEs8(xuu80, xuu81, gg) new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, fbg), fbh)) -> new_esEs19(xuu3110000, xuu6000, fbg, fbh) new_compare25(xuu58, xuu59, False, dcg) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, dcg), dcg) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, ceb, cec) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, ceb), new_asAs(new_esEs30(xuu99, xuu101, ceb), new_ltEs21(xuu100, xuu102, cec)), ceb, cec) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, dbg), dbh)) -> new_esEs19(xuu31100000, xuu60000, dbg, dbh) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, caf), cag)) -> new_esEs19(xuu3110000, xuu6000, caf, cag) new_compare10(xuu156, xuu157, xuu158, xuu159, False, ec, ed) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_esEs12(xuu581, xuu591, ehe, ehf) new_lt21(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_lt18(xuu69, xuu72, dhf) new_ltEs20(xuu87, xuu88, app(app(ty_@2, cca), ccb)) -> new_ltEs7(xuu87, xuu88, cca, ccb) new_compare210(xuu99, xuu100, xuu101, xuu102, True, ceb, cec) -> EQ new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, dde) -> new_ltEs12(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) -> LT new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Maybe, df)) -> new_esEs21(xuu31100000, xuu60000, df) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs23(xuu99, xuu101, cee, cef, ceg) new_compare25(xuu58, xuu59, True, dcg) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, fff), ffg), ffh), dde) -> new_ltEs13(xuu580, xuu590, fff, ffg, ffh) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_esEs12(xuu580, xuu590, bca, bcb) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, ffe), dde) -> new_ltEs8(xuu580, xuu590, ffe) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs23(xuu3110000, xuu6000, bef, beg, beh) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu31100000, xuu60000, dcb, dcc, dcd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, ga)) -> new_esEs24(xuu31100000, xuu60000, ga) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, fgc), dde) -> new_ltEs18(xuu580, xuu590, fgc) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_esEs12(xuu69, xuu72, dhd, dhe) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fbe), fbf)) -> new_esEs12(xuu3110000, xuu6000, fbe, fbf) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, dde) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, edg)) -> new_esEs24(xuu31100001, xuu60001, edg) new_esEs39(xuu580, xuu590, app(ty_Maybe, fac)) -> new_esEs21(xuu580, xuu590, fac) new_lt23(xuu580, xuu590, app(ty_Maybe, fac)) -> new_lt8(xuu580, xuu590, fac) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, dhh), eaa)) -> new_compare18(xuu37, xuu38, dhh, eaa) new_compare0(xuu311000, xuu600, app(app(ty_@2, cdd), cde)) -> new_compare18(xuu311000, xuu600, cdd, cde) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_[], da)) -> new_esEs13(xuu31100000, xuu60000, da) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, dae), daf)) -> new_esEs19(xuu31100001, xuu60001, dae, daf) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], egh)) -> new_esEs13(xuu581, xuu591, egh) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], bd), be) -> new_esEs13(xuu31100000, xuu60000, bd) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_lt17(xuu581, xuu591, ehe, ehf) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, cea)) -> new_compare15(xuu311000, xuu600, cea) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], bdh)) -> new_esEs13(xuu3110000, xuu6000, bdh) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, ced)) -> new_esEs21(xuu99, xuu101, ced) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, gb, gc) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, eba)) -> new_compare15(xuu37, xuu38, eba) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs30(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_esEs12(xuu99, xuu101, ceh, cfa) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, dea), deb)) -> new_ltEs7(xuu71, xuu74, dea, deb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fce)) -> new_esEs24(xuu3110000, xuu6000, fce) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xuu580, xuu590, bbb, bbc) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs23(xuu581, xuu591, ehb, ehc, ehd) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, eac)) -> new_compare7(xuu37, xuu38, eac) new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, ebe)) -> new_ltEs8(xuu580, xuu590, ebe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs23(xuu31100000, xuu60000, dg, dh, ea) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, bdg) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt13(xuu580, xuu590, bbf, bbg, bbh) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_lt17(xuu580, xuu590, fag, fah) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, dde) -> new_ltEs15(xuu580, xuu590) new_ltEs22(xuu58, xuu59, app(ty_[], ee)) -> new_ltEs4(xuu58, xuu59, ee) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, fdg)) -> new_esEs24(xuu3110000, xuu6000, fdg) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], cdf) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs17(True, True) -> True new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, fcg), fch)) -> new_esEs12(xuu3110000, xuu6000, fcg, fch) new_lt13(xuu99, xuu101, cee, cef, ceg) -> new_esEs25(new_compare16(xuu99, xuu101, cee, cef, ceg), LT) new_lt18(xuu99, xuu101, cfb) -> new_esEs25(new_compare15(xuu99, xuu101, cfb), LT) new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, dde) -> new_ltEs10(xuu580, xuu590) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs23(xuu70, xuu73, dfg, dfh, dga) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_esEs12(xuu70, xuu73, dgb, dgc) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu3110000, xuu6000, fdd, fde, fdf) new_lt21(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_lt17(xuu69, xuu72, dhd, dhe) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs5(xuu3110000, xuu6000, app(ty_[], bcd)) -> new_esEs13(xuu3110000, xuu6000, bcd) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, be) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, fca)) -> new_esEs21(xuu3110000, xuu6000, fca) new_compare27(xuu87, xuu88, True, cbg, cbh) -> EQ new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_esEs24(xuu99, xuu101, cfb) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, ffb), ffc), dde) -> new_ltEs7(xuu580, xuu590, ffb, ffc) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_lt17(xuu580, xuu590, bca, bcb) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fbb, fbc) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], cfe)) -> new_ltEs4(xuu100, xuu102, cfe) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cdd, cde) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, cdd), new_esEs4(xuu3110001, xuu6001, cde)), cdd, cde) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, dca)) -> new_esEs21(xuu31100000, xuu60000, dca) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), bdg) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xuu31100000, xuu60000, eef, eeg, eeh) new_ltEs5(xuu80, xuu81, app(ty_[], gf)) -> new_ltEs4(xuu80, xuu81, gf) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, ddf, ddg, ddh) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), cdc) -> new_asAs(new_esEs29(xuu31100000, xuu60000, cdc), new_esEs28(xuu31100001, xuu60001, cdc)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_esEs8(xuu3110001, xuu6001, app(ty_[], bha)) -> new_esEs13(xuu3110001, xuu6001, bha) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, dde) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, cha), chb)) -> new_esEs12(xuu31100002, xuu60002, cha, chb) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, fdc)) -> new_esEs21(xuu3110000, xuu6000, fdc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs23(xuu31100000, xuu60000, ff, fg, fh) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, dbc)) -> new_esEs24(xuu31100001, xuu60001, dbc) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, bch), bda)) -> new_esEs19(xuu31100000, xuu60000, bch, bda) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, efd), efe)) -> new_ltEs7(xuu582, xuu592, efd, efe) new_ltEs17(Right(xuu580), Left(xuu590), ddd, dde) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], ccc)) -> new_ltEs4(xuu87, xuu88, ccc) new_esEs35(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_esEs21(xuu69, xuu72, dgh) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, daa)) -> new_esEs24(xuu31100002, xuu60002, daa) new_compare110(xuu125, xuu126, True, dcf) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], bab)) -> new_ltEs4(xuu581, xuu591, bab) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, eha)) -> new_lt8(xuu581, xuu591, eha) new_esEs34(xuu70, xuu73, app(ty_Maybe, dff)) -> new_esEs21(xuu70, xuu73, dff) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs23(xuu31100001, xuu60001, edd, ede, edf) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, dac), dad)) -> new_esEs12(xuu31100001, xuu60001, dac, dad) new_esEs7(xuu3110002, xuu6002, app(ty_[], bfg)) -> new_esEs13(xuu3110002, xuu6002, bfg) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, bfb) -> new_esEs25(new_compare6(xuu99, xuu101, bfb), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, bcf), bcg)) -> new_esEs12(xuu31100000, xuu60000, bcf, bcg) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Ratio, eb)) -> new_esEs24(xuu31100000, xuu60000, eb) new_esEs39(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_esEs19(xuu580, xuu590, ehh, faa) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, app(ty_[], fdh)) -> new_esEs13(xuu3110001, xuu6001, fdh) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, dag)) -> new_esEs21(xuu31100001, xuu60001, dag) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_lt18(xuu70, xuu73, dgd) new_lt22(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_lt6(xuu581, xuu591, egf, egg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, dde) -> new_ltEs11(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs13(xuu100, xuu102, cfg, cfh, cga) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_lt17(xuu99, xuu101, ceh, cfa) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, ebb), ebc)) -> new_ltEs7(xuu580, xuu590, ebb, ebc) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs23(xuu3110001, xuu6001, bhg, bhh, caa) new_esEs10(xuu3110000, xuu6000, app(ty_[], fbd)) -> new_esEs13(xuu3110000, xuu6000, fbd) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, bea), beb)) -> new_esEs12(xuu3110000, xuu6000, bea, beb) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, cfc), cfd)) -> new_ltEs7(xuu100, xuu102, cfc, cfd) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, eca), ecb)) -> new_ltEs17(xuu580, xuu590, eca, ecb) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], eab)) -> new_compare6(xuu37, xuu38, eab) new_compare0(xuu311000, xuu600, app(ty_[], cdf)) -> new_compare6(xuu311000, xuu600, cdf) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, dde) -> new_ltEs14(xuu580, xuu590) new_compare19(xuu142, xuu143, True, efb, efc) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], cdf) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_esEs24(xuu581, xuu591, ehg) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], cac)) -> new_esEs13(xuu3110000, xuu6000, cac) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, dce)) -> new_esEs24(xuu31100000, xuu60000, dce) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xuu3110001, xuu6001, bhd, bhe) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, ead), eae), eaf)) -> new_compare16(xuu37, xuu38, ead, eae, eaf) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_[], fgf)) -> new_ltEs4(xuu580, xuu590, fgf) new_esEs35(xuu69, xuu72, app(ty_[], dgg)) -> new_esEs13(xuu69, xuu72, dgg) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, be) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], fab)) -> new_lt7(xuu580, xuu590, fab) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs13(xuu581, xuu591, bad, bae, baf) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs23(xuu580, xuu590, fad, fae, faf) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], bcd) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, ccd)) -> new_ltEs8(xuu87, xuu88, ccd) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, fd)) -> new_esEs21(xuu31100000, xuu60000, fd) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, ebf), ebg), ebh)) -> new_ltEs13(xuu580, xuu590, ebf, ebg, ebh) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_lt8(xuu580, xuu590, bbe) new_lt20(xuu70, xuu73, app(ty_Maybe, dff)) -> new_lt8(xuu70, xuu73, dff) new_lt19(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt13(xuu99, xuu101, cee, cef, ceg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, dde) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, chc), chd)) -> new_esEs19(xuu31100002, xuu60002, chc, chd) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, ced) -> new_esEs25(new_compare7(xuu99, xuu101, ced), LT) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, he)) -> new_ltEs18(xuu80, xuu81, he) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, eee)) -> new_esEs21(xuu31100000, xuu60000, eee) new_ltEs23(xuu71, xuu74, app(ty_[], dec)) -> new_ltEs4(xuu71, xuu74, dec) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fee)) -> new_esEs21(xuu3110001, xuu6001, fee) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, cbg, cbh) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, cbh), cbg, cbh) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cdf) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, cdf) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fbb, fbc) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, bag), bah)) -> new_ltEs17(xuu581, xuu591, bag, bah) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cge, cgf, cgg) -> new_asAs(new_esEs33(xuu31100000, xuu60000, cge), new_asAs(new_esEs32(xuu31100001, xuu60001, cgf), new_esEs31(xuu31100002, xuu60002, cgg))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_compare31(Left(xuu3110000), Right(xuu6000), cdg, cdh) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_esEs24(xuu69, xuu72, dhf) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_lt6(xuu580, xuu590, bbb, bbc) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt13(xuu69, xuu72, dha, dhb, dhc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, eh), fa)) -> new_esEs12(xuu31100000, xuu60000, eh, fa) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs23(xuu3110000, xuu6000, cge, cgf, cgg) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, fga), fgb), dde) -> new_ltEs17(xuu580, xuu590, fga, fgb) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, bee)) -> new_esEs21(xuu3110000, xuu6000, bee) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, bdb)) -> new_esEs21(xuu31100000, xuu60000, bdb) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_lt18(xuu580, xuu590, bcc) new_ltEs23(xuu71, xuu74, app(app(ty_Either, deh), dfa)) -> new_ltEs17(xuu71, xuu74, deh, dfa) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, fda), fdb)) -> new_esEs19(xuu3110000, xuu6000, fda, fdb) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_esEs24(xuu580, xuu590, bcc) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], eg)) -> new_esEs13(xuu31100000, xuu60000, eg) new_ltEs21(xuu100, xuu102, app(app(ty_Either, cgb), cgc)) -> new_ltEs17(xuu100, xuu102, cgb, cgc) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_compare7(Just(xuu3110000), Just(xuu6000), bdg) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, bdg), bdg) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, eag), eah)) -> new_compare31(xuu37, xuu38, eag, eah) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, be) -> new_esEs17(xuu31100000, xuu60000) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, eea), eeb)) -> new_esEs12(xuu31100000, xuu60000, eea, eeb) new_compare19(xuu142, xuu143, False, efb, efc) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu31100002, xuu60002, chf, chg, chh) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], edh)) -> new_esEs13(xuu31100000, xuu60000, edh) new_ltEs19(xuu581, xuu591, app(app(ty_@2, hh), baa)) -> new_ltEs7(xuu581, xuu591, hh, baa) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_esEs19(xuu70, xuu73, dfc, dfd) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, bfd), bfe), bff)) -> new_compare16(xuu311000, xuu600, bfd, bfe, bff) new_lt22(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt13(xuu581, xuu591, ehb, ehc, ehd) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, bhb), bhc)) -> new_esEs12(xuu3110001, xuu6001, bhb, bhc) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs13(xuu71, xuu74, dee, def, deg) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, cbd)) -> new_esEs24(xuu3110000, xuu6000, cbd) new_lt20(xuu70, xuu73, app(ty_[], dfe)) -> new_lt7(xuu70, xuu73, dfe) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, be) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, bh), ca), be) -> new_esEs19(xuu31100000, xuu60000, bh, ca) new_esEs27(xuu31100000, xuu60000, app(ty_[], bce)) -> new_esEs13(xuu31100000, xuu60000, bce) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ecd), ece)) -> new_esEs19(xuu3110000, xuu6000, ecd, ece) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], dbd)) -> new_esEs13(xuu31100000, xuu60000, dbd) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bfd, bfe, bff) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, bfd), new_asAs(new_esEs8(xuu3110001, xuu6001, bfe), new_esEs7(xuu3110002, xuu6002, bff))), bfd, bfe, bff) new_lt19(xuu99, xuu101, app(ty_[], bfb)) -> new_lt7(xuu99, xuu101, bfb) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, dch)) -> new_ltEs8(xuu58, xuu59, dch) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Ratio, fhe)) -> new_ltEs18(xuu580, xuu590, fhe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_Either, db), dc)) -> new_esEs12(xuu31100000, xuu60000, db, dc) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_lt18(xuu581, xuu591, ehg) new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs13(xuu80, xuu81, gh, ha, hb) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), hf, hg) -> new_pePe(new_lt4(xuu580, xuu590, hf), new_asAs(new_esEs26(xuu580, xuu590, hf), new_ltEs19(xuu581, xuu591, hg))) new_lt23(xuu580, xuu590, app(ty_Ratio, fba)) -> new_lt18(xuu580, xuu590, fba) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_esEs12(xuu580, xuu590, fag, fah) new_esEs21(Nothing, Just(xuu60000), ef) -> False new_esEs21(Just(xuu31100000), Nothing, ef) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), cg, be) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), cg, be) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, eda), edb)) -> new_esEs19(xuu31100001, xuu60001, eda, edb) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, ef) -> True new_lt19(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_lt6(xuu99, xuu101, cbe, cbf) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fea), feb)) -> new_esEs12(xuu3110001, xuu6001, fea, feb) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cdc)) -> new_esEs24(xuu3110000, xuu6000, cdc) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, bec), bed)) -> new_esEs19(xuu3110000, xuu6000, bec, bed) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, bhf)) -> new_esEs21(xuu3110001, xuu6001, bhf) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, eec), eed)) -> new_esEs19(xuu31100000, xuu60000, eec, eed) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, ffa)) -> new_esEs24(xuu3110001, xuu6001, ffa) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fb), fc)) -> new_esEs19(xuu31100000, xuu60000, fb, fc) new_ltEs21(xuu100, xuu102, app(ty_Maybe, cff)) -> new_ltEs8(xuu100, xuu102, cff) new_ltEs24(xuu582, xuu592, app(ty_Ratio, ege)) -> new_ltEs18(xuu582, xuu592, ege) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, bgd)) -> new_esEs21(xuu3110002, xuu6002, bgd) new_ltEs8(Nothing, Just(xuu590), dch) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, egc), egd)) -> new_ltEs17(xuu582, xuu592, egc, egd) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs23(xuu31100000, xuu60000, bdc, bdd, bde) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_lt6(xuu70, xuu73, dfc, dfd) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], dfe)) -> new_esEs13(xuu70, xuu73, dfe) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) new_ltEs23(xuu71, xuu74, app(ty_Maybe, ded)) -> new_ltEs8(xuu71, xuu74, ded) new_lt23(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_lt6(xuu580, xuu590, ehh, faa) new_compare0(xuu311000, xuu600, app(app(ty_Either, cdg), cdh)) -> new_compare31(xuu311000, xuu600, cdg, cdh) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, dhg) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, bba)) -> new_ltEs18(xuu581, xuu591, bba) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs23(xuu580, xuu590, bbf, bbg, bbh) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, bdg) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs13(xuu582, xuu592, efh, ega, egb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_@2, dd), de)) -> new_esEs19(xuu31100000, xuu60000, dd, de) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, bfh), bga)) -> new_esEs12(xuu3110002, xuu6002, bfh, bga) new_esEs32(xuu31100001, xuu60001, app(ty_[], dab)) -> new_esEs13(xuu31100001, xuu60001, dab) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, cab)) -> new_esEs24(xuu3110001, xuu6001, cab) new_lt21(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_lt6(xuu69, xuu72, dge, dgf) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), cdg, cdh) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, cdg), cdg, cdh) new_ltEs20(xuu87, xuu88, app(ty_Ratio, cdb)) -> new_ltEs18(xuu87, xuu88, cdb) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, cb), be) -> new_esEs21(xuu31100000, xuu60000, cb) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, cad), cae)) -> new_esEs12(xuu3110000, xuu6000, cad, cae) new_esEs30(xuu99, xuu101, app(ty_[], bfb)) -> new_esEs13(xuu99, xuu101, bfb) new_ltEs23(xuu71, xuu74, app(ty_Ratio, dfb)) -> new_ltEs18(xuu71, xuu74, dfb) new_esEs38(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_esEs19(xuu581, xuu591, egf, egg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, dda), ddb), ddc)) -> new_ltEs13(xuu58, xuu59, dda, ddb, ddc) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs13(xuu580, xuu590, fgh, fha, fhb) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, ddf, ddg, ddh) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, ddf), new_asAs(new_esEs35(xuu69, xuu72, ddf), new_pePe(new_lt20(xuu70, xuu73, ddg), new_asAs(new_esEs34(xuu70, xuu73, ddg), new_ltEs23(xuu71, xuu74, ddh)))), ddf, ddg, ddh) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], bbd)) -> new_lt7(xuu580, xuu590, bbd) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, cah)) -> new_esEs21(xuu3110000, xuu6000, cah) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, bfc)) -> new_ltEs18(xuu58, xuu59, bfc) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, bfa)) -> new_esEs24(xuu3110000, xuu6000, bfa) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, dch) -> True new_ltEs8(Just(xuu580), Nothing, dch) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Maybe, fgg)) -> new_ltEs8(xuu580, xuu590, fgg) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs21(xuu100, xuu102, app(ty_Ratio, cgd)) -> new_ltEs18(xuu100, xuu102, cgd) new_compare24(xuu80, xuu81, False, gb, gc) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, gb), gb, gc) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], dgg)) -> new_lt7(xuu69, xuu72, dgg) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fec), fed)) -> new_esEs19(xuu3110001, xuu6001, fec, fed) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, fhf, fhg, fhh) new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, bgh)) -> new_esEs24(xuu3110002, xuu6002, bgh) new_esEs25(EQ, EQ) -> True new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), cdg, cdh) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, cdh), cdg, cdh) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Char) new_lt19(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt9(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_esEs26(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_ltEs22(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_compare6([], [], x0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare31(Right(x0), Right(x1), x2, x3) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs9(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13([], :(x0, x1), x2) new_esEs7(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare8(False, False) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, LT) new_ltEs6(False, False) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs16(@0, @0) new_esEs34(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Bool) new_esEs21(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs23(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_compare6(:(x0, x1), [], x2) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2) new_esEs17(True, True) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_lt4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Double) new_compare24(x0, x1, False, x2, x3) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs25(EQ, EQ) new_not(True) new_esEs8(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(:(x0, x1), [], x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_primPlusNat1(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, LT, x2) new_compare27(x0, x1, True, x2, x3) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Just(x0), Just(x1), x2) new_lt22(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_@0) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(True, True) new_pePe(True, x0) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_sr(x0, x1) new_compare7(Nothing, Just(x0), x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0(x0, x1, ty_@0) new_compare110(x0, x1, True, x2) new_compare8(True, True) new_fsEs(x0) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, ty_Double) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_ltEs18(x0, x1, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, ty_Double) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Char) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_compare0(x0, x1, ty_Double) new_compare0(x0, x1, app(ty_Maybe, x2)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Bool) new_esEs13([], [], x0) new_lt13(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_compare12(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_esEs32(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_Char) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(GT, GT) new_lt23(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_asAs(True, x0) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs21(Nothing, Just(x0), x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_compare0(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs22(Char(x0), Char(x1)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_compare25(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2, x3) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs36(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_ltEs4(x0, x1, x2) new_esEs6(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare29(Char(x0), Char(x1)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(Left(x0), Left(x1), x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare6(:(x0, x1), :(x2, x3), x4) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3) new_lt10(x0, x1) new_primCompAux00(x0, x1, GT, x2) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Integer) new_lt4(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs8(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_compare25(x0, x1, True, x2) new_lt15(x0, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare7(Just(x0), Nothing, x1) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_lt4(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare6([], :(x0, x1), x2) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (35) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (36) Complex Obligation (AND) ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) The TRS R consists of the following rules: new_esEs30(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_esEs19(xuu99, xuu101, cbe, cbf) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], cgh)) -> new_esEs13(xuu31100002, xuu60002, cgh) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, be) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, bb), app(ty_[], bb)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu3110000, xuu6000, fcb, fcc, fcd) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, ef)) -> new_esEs21(xuu3110000, xuu6000, ef) new_ltEs4(xuu58, xuu59, ee) -> new_fsEs(new_compare6(xuu58, xuu59, ee)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, dcf) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], eff)) -> new_ltEs4(xuu582, xuu592, eff) new_lt20(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_lt17(xuu70, xuu73, dgb, dgc) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_@2, fgd), fge)) -> new_ltEs7(xuu580, xuu590, fgd, fge) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, efg)) -> new_ltEs8(xuu582, xuu592, efg) new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs23(xuu69, xuu72, dha, dhb, dhc) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, cc), cd), ce), be) -> new_esEs23(xuu31100000, xuu60000, cc, cd, ce) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, dbe), dbf)) -> new_esEs12(xuu31100000, xuu60000, dbe, dbf) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, ecc)) -> new_ltEs18(xuu580, xuu590, ecc) new_lt19(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_lt18(xuu99, xuu101, cfb) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, fhf, fhg, fhh) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], ffd), dde) -> new_ltEs4(xuu580, xuu590, ffd) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, cf), be) -> new_esEs24(xuu31100000, xuu60000, cf) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], egh)) -> new_lt7(xuu581, xuu591, egh) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), ecd, ece) -> new_asAs(new_esEs37(xuu31100000, xuu60000, ecd), new_esEs36(xuu31100001, xuu60001, ece)) new_lt21(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_lt8(xuu69, xuu72, dgh) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), cdg, cdh) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, edc)) -> new_esEs21(xuu31100001, xuu60001, edc) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, ec, ed) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, be) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), ddd, dde) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), cdf) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, bfc) -> new_fsEs(new_compare15(xuu58, xuu59, bfc)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, bdf)) -> new_esEs24(xuu31100000, xuu60000, bdf) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_lt17(xuu99, xuu101, ceh, cfa) -> new_esEs25(new_compare31(xuu99, xuu101, ceh, cfa), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_lt13(xuu70, xuu73, dfg, dfh, dga) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bf), bg), be) -> new_esEs12(xuu31100000, xuu60000, bf, bg) new_esEs26(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_esEs21(xuu580, xuu590, bbe) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu3110001, xuu6001, fef, feg, feh) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu3110000, xuu6000, cba, cbb, cbc) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu87, xuu88, cce, ccf, ccg) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_Either, fhc), fhd)) -> new_ltEs17(xuu580, xuu590, fhc, fhd) new_esEs39(xuu580, xuu590, app(ty_Ratio, fba)) -> new_esEs24(xuu580, xuu590, fba) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_esEs24(xuu70, xuu73, dgd) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xuu3110002, xuu6002, bgb, bgc) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, dhg) -> GT new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, app(ty_[], fcf)) -> new_esEs13(xuu3110000, xuu6000, fcf) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cg), be)) -> new_esEs12(xuu3110000, xuu6000, cg, be) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, hf), hg)) -> new_ltEs7(xuu58, xuu59, hf, hg) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt19(xuu99, xuu101, app(ty_Maybe, ced)) -> new_lt8(xuu99, xuu101, ced) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, che)) -> new_esEs21(xuu31100002, xuu60002, che) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bcd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, bcd), new_esEs13(xuu31100001, xuu60001, bcd)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, gd), ge)) -> new_ltEs7(xuu80, xuu81, gd, ge) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, efa)) -> new_esEs24(xuu31100000, xuu60000, efa) new_ltEs5(xuu80, xuu81, app(app(ty_Either, hc), hd)) -> new_ltEs17(xuu80, xuu81, hc, hd) new_lt23(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_lt13(xuu580, xuu590, fad, fae, faf) new_esEs39(xuu580, xuu590, app(ty_[], fab)) -> new_esEs13(xuu580, xuu590, fab) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs23(xuu3110002, xuu6002, bge, bgf, bgg) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, cbe, cbf) -> new_esEs25(new_compare18(xuu99, xuu101, cbe, cbf), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], bbd)) -> new_esEs13(xuu580, xuu590, bbd) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, eha)) -> new_esEs21(xuu581, xuu591, eha) new_ltEs20(xuu87, xuu88, app(app(ty_Either, cch), cda)) -> new_ltEs17(xuu87, xuu88, cch, cda) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), dda, ddb, ddc) -> new_pePe(new_lt23(xuu580, xuu590, dda), new_asAs(new_esEs39(xuu580, xuu590, dda), new_pePe(new_lt22(xuu581, xuu591, ddb), new_asAs(new_esEs38(xuu581, xuu591, ddb), new_ltEs24(xuu582, xuu592, ddc))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, be) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs13(:(xuu31100000, xuu31100001), [], bcd) -> False new_esEs13([], :(xuu60000, xuu60001), bcd) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_ltEs19(xuu581, xuu591, app(ty_Maybe, bac)) -> new_ltEs8(xuu581, xuu591, bac) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs23(xuu31100001, xuu60001, dah, dba, dbb) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], ebd)) -> new_ltEs4(xuu580, xuu590, ebd) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, ecg), ech)) -> new_esEs12(xuu31100001, xuu60001, ecg, ech) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, ddd), dde)) -> new_ltEs17(xuu58, xuu59, ddd, dde) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_esEs19(xuu69, xuu72, dge, dgf) new_esEs36(xuu31100001, xuu60001, app(ty_[], ecf)) -> new_esEs13(xuu31100001, xuu60001, ecf) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, bdg)) -> new_compare7(xuu311000, xuu600, bdg) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, be) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_ltEs5(xuu80, xuu81, app(ty_Maybe, gg)) -> new_ltEs8(xuu80, xuu81, gg) new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, fbg), fbh)) -> new_esEs19(xuu3110000, xuu6000, fbg, fbh) new_compare25(xuu58, xuu59, False, dcg) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, dcg), dcg) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, ceb, cec) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, ceb), new_asAs(new_esEs30(xuu99, xuu101, ceb), new_ltEs21(xuu100, xuu102, cec)), ceb, cec) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, dbg), dbh)) -> new_esEs19(xuu31100000, xuu60000, dbg, dbh) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, caf), cag)) -> new_esEs19(xuu3110000, xuu6000, caf, cag) new_compare10(xuu156, xuu157, xuu158, xuu159, False, ec, ed) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_esEs12(xuu581, xuu591, ehe, ehf) new_lt21(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_lt18(xuu69, xuu72, dhf) new_ltEs20(xuu87, xuu88, app(app(ty_@2, cca), ccb)) -> new_ltEs7(xuu87, xuu88, cca, ccb) new_compare210(xuu99, xuu100, xuu101, xuu102, True, ceb, cec) -> EQ new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, dde) -> new_ltEs12(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) -> LT new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Maybe, df)) -> new_esEs21(xuu31100000, xuu60000, df) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs23(xuu99, xuu101, cee, cef, ceg) new_compare25(xuu58, xuu59, True, dcg) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, fff), ffg), ffh), dde) -> new_ltEs13(xuu580, xuu590, fff, ffg, ffh) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_esEs12(xuu580, xuu590, bca, bcb) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, ffe), dde) -> new_ltEs8(xuu580, xuu590, ffe) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs23(xuu3110000, xuu6000, bef, beg, beh) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu31100000, xuu60000, dcb, dcc, dcd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, ga)) -> new_esEs24(xuu31100000, xuu60000, ga) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, fgc), dde) -> new_ltEs18(xuu580, xuu590, fgc) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_esEs12(xuu69, xuu72, dhd, dhe) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fbe), fbf)) -> new_esEs12(xuu3110000, xuu6000, fbe, fbf) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, dde) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, edg)) -> new_esEs24(xuu31100001, xuu60001, edg) new_esEs39(xuu580, xuu590, app(ty_Maybe, fac)) -> new_esEs21(xuu580, xuu590, fac) new_lt23(xuu580, xuu590, app(ty_Maybe, fac)) -> new_lt8(xuu580, xuu590, fac) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, dhh), eaa)) -> new_compare18(xuu37, xuu38, dhh, eaa) new_compare0(xuu311000, xuu600, app(app(ty_@2, cdd), cde)) -> new_compare18(xuu311000, xuu600, cdd, cde) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_[], da)) -> new_esEs13(xuu31100000, xuu60000, da) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, dae), daf)) -> new_esEs19(xuu31100001, xuu60001, dae, daf) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], egh)) -> new_esEs13(xuu581, xuu591, egh) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], bd), be) -> new_esEs13(xuu31100000, xuu60000, bd) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_lt17(xuu581, xuu591, ehe, ehf) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, cea)) -> new_compare15(xuu311000, xuu600, cea) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], bdh)) -> new_esEs13(xuu3110000, xuu6000, bdh) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, ced)) -> new_esEs21(xuu99, xuu101, ced) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, gb, gc) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, eba)) -> new_compare15(xuu37, xuu38, eba) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs30(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_esEs12(xuu99, xuu101, ceh, cfa) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, dea), deb)) -> new_ltEs7(xuu71, xuu74, dea, deb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fce)) -> new_esEs24(xuu3110000, xuu6000, fce) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xuu580, xuu590, bbb, bbc) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs23(xuu581, xuu591, ehb, ehc, ehd) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, eac)) -> new_compare7(xuu37, xuu38, eac) new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, ebe)) -> new_ltEs8(xuu580, xuu590, ebe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs23(xuu31100000, xuu60000, dg, dh, ea) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, bdg) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt13(xuu580, xuu590, bbf, bbg, bbh) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_lt17(xuu580, xuu590, fag, fah) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, dde) -> new_ltEs15(xuu580, xuu590) new_ltEs22(xuu58, xuu59, app(ty_[], ee)) -> new_ltEs4(xuu58, xuu59, ee) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, fdg)) -> new_esEs24(xuu3110000, xuu6000, fdg) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], cdf) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs17(True, True) -> True new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, fcg), fch)) -> new_esEs12(xuu3110000, xuu6000, fcg, fch) new_lt13(xuu99, xuu101, cee, cef, ceg) -> new_esEs25(new_compare16(xuu99, xuu101, cee, cef, ceg), LT) new_lt18(xuu99, xuu101, cfb) -> new_esEs25(new_compare15(xuu99, xuu101, cfb), LT) new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, dde) -> new_ltEs10(xuu580, xuu590) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs23(xuu70, xuu73, dfg, dfh, dga) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_esEs12(xuu70, xuu73, dgb, dgc) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu3110000, xuu6000, fdd, fde, fdf) new_lt21(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_lt17(xuu69, xuu72, dhd, dhe) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs5(xuu3110000, xuu6000, app(ty_[], bcd)) -> new_esEs13(xuu3110000, xuu6000, bcd) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, be) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, fca)) -> new_esEs21(xuu3110000, xuu6000, fca) new_compare27(xuu87, xuu88, True, cbg, cbh) -> EQ new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_esEs24(xuu99, xuu101, cfb) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, ffb), ffc), dde) -> new_ltEs7(xuu580, xuu590, ffb, ffc) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_lt17(xuu580, xuu590, bca, bcb) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fbb, fbc) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], cfe)) -> new_ltEs4(xuu100, xuu102, cfe) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cdd, cde) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, cdd), new_esEs4(xuu3110001, xuu6001, cde)), cdd, cde) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, dca)) -> new_esEs21(xuu31100000, xuu60000, dca) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), bdg) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xuu31100000, xuu60000, eef, eeg, eeh) new_ltEs5(xuu80, xuu81, app(ty_[], gf)) -> new_ltEs4(xuu80, xuu81, gf) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, ddf, ddg, ddh) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), cdc) -> new_asAs(new_esEs29(xuu31100000, xuu60000, cdc), new_esEs28(xuu31100001, xuu60001, cdc)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_esEs8(xuu3110001, xuu6001, app(ty_[], bha)) -> new_esEs13(xuu3110001, xuu6001, bha) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, dde) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, cha), chb)) -> new_esEs12(xuu31100002, xuu60002, cha, chb) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, fdc)) -> new_esEs21(xuu3110000, xuu6000, fdc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs23(xuu31100000, xuu60000, ff, fg, fh) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, dbc)) -> new_esEs24(xuu31100001, xuu60001, dbc) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, bch), bda)) -> new_esEs19(xuu31100000, xuu60000, bch, bda) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, efd), efe)) -> new_ltEs7(xuu582, xuu592, efd, efe) new_ltEs17(Right(xuu580), Left(xuu590), ddd, dde) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], ccc)) -> new_ltEs4(xuu87, xuu88, ccc) new_esEs35(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_esEs21(xuu69, xuu72, dgh) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, daa)) -> new_esEs24(xuu31100002, xuu60002, daa) new_compare110(xuu125, xuu126, True, dcf) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], bab)) -> new_ltEs4(xuu581, xuu591, bab) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, eha)) -> new_lt8(xuu581, xuu591, eha) new_esEs34(xuu70, xuu73, app(ty_Maybe, dff)) -> new_esEs21(xuu70, xuu73, dff) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs23(xuu31100001, xuu60001, edd, ede, edf) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, dac), dad)) -> new_esEs12(xuu31100001, xuu60001, dac, dad) new_esEs7(xuu3110002, xuu6002, app(ty_[], bfg)) -> new_esEs13(xuu3110002, xuu6002, bfg) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, bfb) -> new_esEs25(new_compare6(xuu99, xuu101, bfb), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, bcf), bcg)) -> new_esEs12(xuu31100000, xuu60000, bcf, bcg) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Ratio, eb)) -> new_esEs24(xuu31100000, xuu60000, eb) new_esEs39(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_esEs19(xuu580, xuu590, ehh, faa) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, app(ty_[], fdh)) -> new_esEs13(xuu3110001, xuu6001, fdh) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, dag)) -> new_esEs21(xuu31100001, xuu60001, dag) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_lt18(xuu70, xuu73, dgd) new_lt22(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_lt6(xuu581, xuu591, egf, egg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, dde) -> new_ltEs11(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs13(xuu100, xuu102, cfg, cfh, cga) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_lt17(xuu99, xuu101, ceh, cfa) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, ebb), ebc)) -> new_ltEs7(xuu580, xuu590, ebb, ebc) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs23(xuu3110001, xuu6001, bhg, bhh, caa) new_esEs10(xuu3110000, xuu6000, app(ty_[], fbd)) -> new_esEs13(xuu3110000, xuu6000, fbd) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, bea), beb)) -> new_esEs12(xuu3110000, xuu6000, bea, beb) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, cfc), cfd)) -> new_ltEs7(xuu100, xuu102, cfc, cfd) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, eca), ecb)) -> new_ltEs17(xuu580, xuu590, eca, ecb) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], eab)) -> new_compare6(xuu37, xuu38, eab) new_compare0(xuu311000, xuu600, app(ty_[], cdf)) -> new_compare6(xuu311000, xuu600, cdf) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, dde) -> new_ltEs14(xuu580, xuu590) new_compare19(xuu142, xuu143, True, efb, efc) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], cdf) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_esEs24(xuu581, xuu591, ehg) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], cac)) -> new_esEs13(xuu3110000, xuu6000, cac) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, dce)) -> new_esEs24(xuu31100000, xuu60000, dce) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xuu3110001, xuu6001, bhd, bhe) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, ead), eae), eaf)) -> new_compare16(xuu37, xuu38, ead, eae, eaf) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_[], fgf)) -> new_ltEs4(xuu580, xuu590, fgf) new_esEs35(xuu69, xuu72, app(ty_[], dgg)) -> new_esEs13(xuu69, xuu72, dgg) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, be) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], fab)) -> new_lt7(xuu580, xuu590, fab) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs13(xuu581, xuu591, bad, bae, baf) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs23(xuu580, xuu590, fad, fae, faf) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], bcd) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, ccd)) -> new_ltEs8(xuu87, xuu88, ccd) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, fd)) -> new_esEs21(xuu31100000, xuu60000, fd) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, ebf), ebg), ebh)) -> new_ltEs13(xuu580, xuu590, ebf, ebg, ebh) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_lt8(xuu580, xuu590, bbe) new_lt20(xuu70, xuu73, app(ty_Maybe, dff)) -> new_lt8(xuu70, xuu73, dff) new_lt19(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt13(xuu99, xuu101, cee, cef, ceg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, dde) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, chc), chd)) -> new_esEs19(xuu31100002, xuu60002, chc, chd) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, ced) -> new_esEs25(new_compare7(xuu99, xuu101, ced), LT) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, he)) -> new_ltEs18(xuu80, xuu81, he) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, eee)) -> new_esEs21(xuu31100000, xuu60000, eee) new_ltEs23(xuu71, xuu74, app(ty_[], dec)) -> new_ltEs4(xuu71, xuu74, dec) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fee)) -> new_esEs21(xuu3110001, xuu6001, fee) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, cbg, cbh) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, cbh), cbg, cbh) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cdf) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, cdf) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fbb, fbc) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, bag), bah)) -> new_ltEs17(xuu581, xuu591, bag, bah) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cge, cgf, cgg) -> new_asAs(new_esEs33(xuu31100000, xuu60000, cge), new_asAs(new_esEs32(xuu31100001, xuu60001, cgf), new_esEs31(xuu31100002, xuu60002, cgg))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_compare31(Left(xuu3110000), Right(xuu6000), cdg, cdh) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_esEs24(xuu69, xuu72, dhf) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_lt6(xuu580, xuu590, bbb, bbc) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt13(xuu69, xuu72, dha, dhb, dhc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, eh), fa)) -> new_esEs12(xuu31100000, xuu60000, eh, fa) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs23(xuu3110000, xuu6000, cge, cgf, cgg) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, fga), fgb), dde) -> new_ltEs17(xuu580, xuu590, fga, fgb) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, bee)) -> new_esEs21(xuu3110000, xuu6000, bee) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, bdb)) -> new_esEs21(xuu31100000, xuu60000, bdb) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_lt18(xuu580, xuu590, bcc) new_ltEs23(xuu71, xuu74, app(app(ty_Either, deh), dfa)) -> new_ltEs17(xuu71, xuu74, deh, dfa) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, fda), fdb)) -> new_esEs19(xuu3110000, xuu6000, fda, fdb) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_esEs24(xuu580, xuu590, bcc) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], eg)) -> new_esEs13(xuu31100000, xuu60000, eg) new_ltEs21(xuu100, xuu102, app(app(ty_Either, cgb), cgc)) -> new_ltEs17(xuu100, xuu102, cgb, cgc) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_compare7(Just(xuu3110000), Just(xuu6000), bdg) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, bdg), bdg) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, eag), eah)) -> new_compare31(xuu37, xuu38, eag, eah) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, be) -> new_esEs17(xuu31100000, xuu60000) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, eea), eeb)) -> new_esEs12(xuu31100000, xuu60000, eea, eeb) new_compare19(xuu142, xuu143, False, efb, efc) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu31100002, xuu60002, chf, chg, chh) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], edh)) -> new_esEs13(xuu31100000, xuu60000, edh) new_ltEs19(xuu581, xuu591, app(app(ty_@2, hh), baa)) -> new_ltEs7(xuu581, xuu591, hh, baa) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_esEs19(xuu70, xuu73, dfc, dfd) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, bfd), bfe), bff)) -> new_compare16(xuu311000, xuu600, bfd, bfe, bff) new_lt22(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt13(xuu581, xuu591, ehb, ehc, ehd) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, bhb), bhc)) -> new_esEs12(xuu3110001, xuu6001, bhb, bhc) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs13(xuu71, xuu74, dee, def, deg) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, cbd)) -> new_esEs24(xuu3110000, xuu6000, cbd) new_lt20(xuu70, xuu73, app(ty_[], dfe)) -> new_lt7(xuu70, xuu73, dfe) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, be) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, bh), ca), be) -> new_esEs19(xuu31100000, xuu60000, bh, ca) new_esEs27(xuu31100000, xuu60000, app(ty_[], bce)) -> new_esEs13(xuu31100000, xuu60000, bce) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ecd), ece)) -> new_esEs19(xuu3110000, xuu6000, ecd, ece) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], dbd)) -> new_esEs13(xuu31100000, xuu60000, dbd) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bfd, bfe, bff) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, bfd), new_asAs(new_esEs8(xuu3110001, xuu6001, bfe), new_esEs7(xuu3110002, xuu6002, bff))), bfd, bfe, bff) new_lt19(xuu99, xuu101, app(ty_[], bfb)) -> new_lt7(xuu99, xuu101, bfb) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, dch)) -> new_ltEs8(xuu58, xuu59, dch) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Ratio, fhe)) -> new_ltEs18(xuu580, xuu590, fhe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_Either, db), dc)) -> new_esEs12(xuu31100000, xuu60000, db, dc) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_lt18(xuu581, xuu591, ehg) new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs13(xuu80, xuu81, gh, ha, hb) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), hf, hg) -> new_pePe(new_lt4(xuu580, xuu590, hf), new_asAs(new_esEs26(xuu580, xuu590, hf), new_ltEs19(xuu581, xuu591, hg))) new_lt23(xuu580, xuu590, app(ty_Ratio, fba)) -> new_lt18(xuu580, xuu590, fba) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_esEs12(xuu580, xuu590, fag, fah) new_esEs21(Nothing, Just(xuu60000), ef) -> False new_esEs21(Just(xuu31100000), Nothing, ef) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), cg, be) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), cg, be) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, eda), edb)) -> new_esEs19(xuu31100001, xuu60001, eda, edb) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, ef) -> True new_lt19(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_lt6(xuu99, xuu101, cbe, cbf) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fea), feb)) -> new_esEs12(xuu3110001, xuu6001, fea, feb) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cdc)) -> new_esEs24(xuu3110000, xuu6000, cdc) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, bec), bed)) -> new_esEs19(xuu3110000, xuu6000, bec, bed) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, bhf)) -> new_esEs21(xuu3110001, xuu6001, bhf) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, eec), eed)) -> new_esEs19(xuu31100000, xuu60000, eec, eed) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, ffa)) -> new_esEs24(xuu3110001, xuu6001, ffa) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fb), fc)) -> new_esEs19(xuu31100000, xuu60000, fb, fc) new_ltEs21(xuu100, xuu102, app(ty_Maybe, cff)) -> new_ltEs8(xuu100, xuu102, cff) new_ltEs24(xuu582, xuu592, app(ty_Ratio, ege)) -> new_ltEs18(xuu582, xuu592, ege) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, bgd)) -> new_esEs21(xuu3110002, xuu6002, bgd) new_ltEs8(Nothing, Just(xuu590), dch) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, egc), egd)) -> new_ltEs17(xuu582, xuu592, egc, egd) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs23(xuu31100000, xuu60000, bdc, bdd, bde) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_lt6(xuu70, xuu73, dfc, dfd) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], dfe)) -> new_esEs13(xuu70, xuu73, dfe) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) new_ltEs23(xuu71, xuu74, app(ty_Maybe, ded)) -> new_ltEs8(xuu71, xuu74, ded) new_lt23(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_lt6(xuu580, xuu590, ehh, faa) new_compare0(xuu311000, xuu600, app(app(ty_Either, cdg), cdh)) -> new_compare31(xuu311000, xuu600, cdg, cdh) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, dhg) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, bba)) -> new_ltEs18(xuu581, xuu591, bba) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs23(xuu580, xuu590, bbf, bbg, bbh) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, bdg) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs13(xuu582, xuu592, efh, ega, egb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_@2, dd), de)) -> new_esEs19(xuu31100000, xuu60000, dd, de) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, bfh), bga)) -> new_esEs12(xuu3110002, xuu6002, bfh, bga) new_esEs32(xuu31100001, xuu60001, app(ty_[], dab)) -> new_esEs13(xuu31100001, xuu60001, dab) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, cab)) -> new_esEs24(xuu3110001, xuu6001, cab) new_lt21(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_lt6(xuu69, xuu72, dge, dgf) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), cdg, cdh) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, cdg), cdg, cdh) new_ltEs20(xuu87, xuu88, app(ty_Ratio, cdb)) -> new_ltEs18(xuu87, xuu88, cdb) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, cb), be) -> new_esEs21(xuu31100000, xuu60000, cb) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, cad), cae)) -> new_esEs12(xuu3110000, xuu6000, cad, cae) new_esEs30(xuu99, xuu101, app(ty_[], bfb)) -> new_esEs13(xuu99, xuu101, bfb) new_ltEs23(xuu71, xuu74, app(ty_Ratio, dfb)) -> new_ltEs18(xuu71, xuu74, dfb) new_esEs38(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_esEs19(xuu581, xuu591, egf, egg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, dda), ddb), ddc)) -> new_ltEs13(xuu58, xuu59, dda, ddb, ddc) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs13(xuu580, xuu590, fgh, fha, fhb) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, ddf, ddg, ddh) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, ddf), new_asAs(new_esEs35(xuu69, xuu72, ddf), new_pePe(new_lt20(xuu70, xuu73, ddg), new_asAs(new_esEs34(xuu70, xuu73, ddg), new_ltEs23(xuu71, xuu74, ddh)))), ddf, ddg, ddh) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], bbd)) -> new_lt7(xuu580, xuu590, bbd) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, cah)) -> new_esEs21(xuu3110000, xuu6000, cah) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, bfc)) -> new_ltEs18(xuu58, xuu59, bfc) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, bfa)) -> new_esEs24(xuu3110000, xuu6000, bfa) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, dch) -> True new_ltEs8(Just(xuu580), Nothing, dch) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Maybe, fgg)) -> new_ltEs8(xuu580, xuu590, fgg) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs21(xuu100, xuu102, app(ty_Ratio, cgd)) -> new_ltEs18(xuu100, xuu102, cgd) new_compare24(xuu80, xuu81, False, gb, gc) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, gb), gb, gc) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], dgg)) -> new_lt7(xuu69, xuu72, dgg) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fec), fed)) -> new_esEs19(xuu3110001, xuu6001, fec, fed) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, fhf, fhg, fhh) new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, bgh)) -> new_esEs24(xuu3110002, xuu6002, bgh) new_esEs25(EQ, EQ) -> True new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), cdg, cdh) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, cdh), cdg, cdh) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Char) new_lt19(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt9(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_esEs26(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_ltEs22(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_compare6([], [], x0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare31(Right(x0), Right(x1), x2, x3) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs9(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13([], :(x0, x1), x2) new_esEs7(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare8(False, False) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, LT) new_ltEs6(False, False) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs16(@0, @0) new_esEs34(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Bool) new_esEs21(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs23(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_compare6(:(x0, x1), [], x2) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2) new_esEs17(True, True) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_lt4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Double) new_compare24(x0, x1, False, x2, x3) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs25(EQ, EQ) new_not(True) new_esEs8(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(:(x0, x1), [], x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_primPlusNat1(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, LT, x2) new_compare27(x0, x1, True, x2, x3) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Just(x0), Just(x1), x2) new_lt22(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_@0) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(True, True) new_pePe(True, x0) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_sr(x0, x1) new_compare7(Nothing, Just(x0), x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0(x0, x1, ty_@0) new_compare110(x0, x1, True, x2) new_compare8(True, True) new_fsEs(x0) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, ty_Double) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_ltEs18(x0, x1, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, ty_Double) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Char) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_compare0(x0, x1, ty_Double) new_compare0(x0, x1, app(ty_Maybe, x2)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Bool) new_esEs13([], [], x0) new_lt13(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_compare12(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_esEs32(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_Char) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(GT, GT) new_lt23(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_asAs(True, x0) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs21(Nothing, Just(x0), x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_compare0(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs22(Char(x0), Char(x1)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_compare25(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2, x3) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs36(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_ltEs4(x0, x1, x2) new_esEs6(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare29(Char(x0), Char(x1)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(Left(x0), Left(x1), x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare6(:(x0, x1), :(x2, x3), x4) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3) new_lt10(x0, x1) new_primCompAux00(x0, x1, GT, x2) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Integer) new_lt4(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs8(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_compare25(x0, x1, True, x2) new_lt15(x0, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare7(Just(x0), Nothing, x1) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_lt4(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare6([], :(x0, x1), x2) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) 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_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), [], xuu31101, bb, bc) -> new_addToFM_C(xuu63, [], xuu31101, bb, bc) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (39) YES ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The TRS R consists of the following rules: new_esEs30(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_esEs19(xuu99, xuu101, cbe, cbf) new_esEs30(xuu99, xuu101, ty_Ordering) -> new_esEs25(xuu99, xuu101) new_esEs31(xuu31100002, xuu60002, app(ty_[], cgh)) -> new_esEs13(xuu31100002, xuu60002, cgh) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Char, be) -> new_esEs22(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb) -> new_primCompAux00(xuu311001, xuu601, new_compare0(xuu311000, xuu600, bb), app(ty_[], bb)) new_pePe(True, xuu195) -> True new_esEs33(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(True, False) -> GT new_esEs10(xuu3110000, xuu6000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs23(xuu3110000, xuu6000, fcb, fcc, fcd) new_esEs5(xuu3110000, xuu6000, app(ty_Maybe, ef)) -> new_esEs21(xuu3110000, xuu6000, ef) new_ltEs4(xuu58, xuu59, ee) -> new_fsEs(new_compare6(xuu58, xuu59, ee)) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare30(xuu37, xuu38) new_compare0(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(xuu125, xuu126, False, dcf) -> GT new_ltEs24(xuu582, xuu592, app(ty_[], eff)) -> new_ltEs4(xuu582, xuu592, eff) new_lt20(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_lt17(xuu70, xuu73, dgb, dgc) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_@2, fgd), fge)) -> new_ltEs7(xuu580, xuu590, fgd, fge) new_esEs11(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs24(xuu582, xuu592, app(ty_Maybe, efg)) -> new_ltEs8(xuu582, xuu592, efg) new_ltEs20(xuu87, xuu88, ty_Ordering) -> new_ltEs9(xuu87, xuu88) new_lt12(xuu99, xuu101) -> new_esEs25(new_compare14(xuu99, xuu101), LT) new_primMulNat0(Succ(xuu600000), Succ(xuu311000100)) -> new_primPlusNat1(new_primMulNat0(xuu600000, Succ(xuu311000100)), xuu311000100) new_esEs10(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare14(xuu37, xuu38) new_ltEs21(xuu100, xuu102, ty_Float) -> new_ltEs14(xuu100, xuu102) new_compare0(xuu311000, xuu600, ty_Ordering) -> new_compare30(xuu311000, xuu600) new_lt21(xuu69, xuu72, ty_@0) -> new_lt15(xuu69, xuu72) new_esEs30(xuu99, xuu101, ty_Integer) -> new_esEs20(xuu99, xuu101) new_esEs35(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs23(xuu69, xuu72, dha, dhb, dhc) new_ltEs19(xuu581, xuu591, ty_Double) -> new_ltEs11(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(app(ty_@3, cc), cd), ce), be) -> new_esEs23(xuu31100000, xuu60000, cc, cd, ce) new_esEs33(xuu31100000, xuu60000, app(app(ty_Either, dbe), dbf)) -> new_esEs12(xuu31100000, xuu60000, dbe, dbf) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Ratio, ecc)) -> new_ltEs18(xuu580, xuu590, ecc) new_lt19(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_lt18(xuu99, xuu101, cfb) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Char) -> new_ltEs16(xuu580, xuu590) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, fhf, fhg, fhh) -> GT new_esEs4(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_primEqNat0(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs20(xuu87, xuu88, ty_Integer) -> new_ltEs10(xuu87, xuu88) new_esEs31(xuu31100002, xuu60002, ty_Float) -> new_esEs15(xuu31100002, xuu60002) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_[], ffd), dde) -> new_ltEs4(xuu580, xuu590, ffd) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Ratio, cf), be) -> new_esEs24(xuu31100000, xuu60000, cf) new_not(True) -> False new_lt22(xuu581, xuu591, app(ty_[], egh)) -> new_lt7(xuu581, xuu591, egh) new_esEs19(@2(xuu31100000, xuu31100001), @2(xuu60000, xuu60001), ecd, ece) -> new_asAs(new_esEs37(xuu31100000, xuu60000, ecd), new_esEs36(xuu31100001, xuu60001, ece)) new_lt21(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_lt8(xuu69, xuu72, dgh) new_fsEs(xuu190) -> new_not(new_esEs25(xuu190, GT)) new_ltEs19(xuu581, xuu591, ty_Bool) -> new_ltEs6(xuu581, xuu591) new_esEs35(xuu69, xuu72, ty_Ordering) -> new_esEs25(xuu69, xuu72) new_esEs38(xuu581, xuu591, ty_@0) -> new_esEs16(xuu581, xuu591) new_esEs33(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_compare31(Right(xuu3110000), Left(xuu6000), cdg, cdh) -> GT new_ltEs20(xuu87, xuu88, ty_Int) -> new_ltEs12(xuu87, xuu88) new_esEs36(xuu31100001, xuu60001, app(ty_Maybe, edc)) -> new_esEs21(xuu31100001, xuu60001, edc) new_compare17(xuu156, xuu157, xuu158, xuu159, False, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, xuu161, ec, ed) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Double, be) -> new_esEs18(xuu31100000, xuu60000) new_ltEs17(Left(xuu580), Right(xuu590), ddd, dde) -> True new_esEs10(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), ty_Float) -> new_ltEs14(xuu580, xuu590) new_compare30(LT, LT) -> EQ new_compare6([], :(xuu6000, xuu6001), cdf) -> LT new_primEqNat0(Succ(xuu311000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu600000)) -> False new_ltEs18(xuu58, xuu59, bfc) -> new_fsEs(new_compare15(xuu58, xuu59, bfc)) new_esEs27(xuu31100000, xuu60000, app(ty_Ratio, bdf)) -> new_esEs24(xuu31100000, xuu60000, bdf) new_esEs36(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_lt17(xuu99, xuu101, ceh, cfa) -> new_esEs25(new_compare31(xuu99, xuu101, ceh, cfa), LT) new_ltEs23(xuu71, xuu74, ty_@0) -> new_ltEs15(xuu71, xuu74) new_lt20(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_lt13(xuu70, xuu73, dfg, dfh, dga) new_esEs31(xuu31100002, xuu60002, ty_Int) -> new_esEs14(xuu31100002, xuu60002) new_compare12(Integer(xuu3110000), Integer(xuu6000)) -> new_primCmpInt(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_Either, bf), bg), be) -> new_esEs12(xuu31100000, xuu60000, bf, bg) new_esEs26(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_esEs21(xuu580, xuu590, bbe) new_esEs4(xuu3110001, xuu6001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs23(xuu3110001, xuu6001, fef, feg, feh) new_lt4(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_lt20(xuu70, xuu73, ty_Int) -> new_lt12(xuu70, xuu73) new_compare30(GT, GT) -> EQ new_esEs9(xuu3110000, xuu6000, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs23(xuu3110000, xuu6000, cba, cbb, cbc) new_ltEs20(xuu87, xuu88, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs13(xuu87, xuu88, cce, ccf, ccg) new_ltEs21(xuu100, xuu102, ty_Double) -> new_ltEs11(xuu100, xuu102) new_primCmpInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> GT new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(ty_Either, fhc), fhd)) -> new_ltEs17(xuu580, xuu590, fhc, fhd) new_esEs39(xuu580, xuu590, app(ty_Ratio, fba)) -> new_esEs24(xuu580, xuu590, fba) new_ltEs19(xuu581, xuu591, ty_Float) -> new_ltEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs26(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_lt19(xuu99, xuu101, ty_Double) -> new_lt11(xuu99, xuu101) new_lt22(xuu581, xuu591, ty_Char) -> new_lt16(xuu581, xuu591) new_esEs34(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_esEs24(xuu70, xuu73, dgd) new_esEs30(xuu99, xuu101, ty_Double) -> new_esEs18(xuu99, xuu101) new_esEs7(xuu3110002, xuu6002, app(app(ty_@2, bgb), bgc)) -> new_esEs19(xuu3110002, xuu6002, bgb, bgc) new_esEs35(xuu69, xuu72, ty_Double) -> new_esEs18(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, GT, dhg) -> GT new_ltEs8(Just(xuu580), Just(xuu590), ty_Double) -> new_ltEs11(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, app(ty_[], fcf)) -> new_esEs13(xuu3110000, xuu6000, fcf) new_esEs7(xuu3110002, xuu6002, ty_Integer) -> new_esEs20(xuu3110002, xuu6002) new_primCmpNat0(Zero, Succ(xuu60000)) -> LT new_esEs5(xuu3110000, xuu6000, app(app(ty_Either, cg), be)) -> new_esEs12(xuu3110000, xuu6000, cg, be) new_ltEs24(xuu582, xuu592, ty_Bool) -> new_ltEs6(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(ty_@2, hf), hg)) -> new_ltEs7(xuu58, xuu59, hf, hg) new_esEs4(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_compare0(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt19(xuu99, xuu101, app(ty_Maybe, ced)) -> new_lt8(xuu99, xuu101, ced) new_esEs31(xuu31100002, xuu60002, app(ty_Maybe, che)) -> new_esEs21(xuu31100002, xuu60002, che) new_esEs38(xuu581, xuu591, ty_Bool) -> new_esEs17(xuu581, xuu591) new_esEs13(:(xuu31100000, xuu31100001), :(xuu60000, xuu60001), bcd) -> new_asAs(new_esEs27(xuu31100000, xuu60000, bcd), new_esEs13(xuu31100001, xuu60001, bcd)) new_ltEs5(xuu80, xuu81, app(app(ty_@2, gd), ge)) -> new_ltEs7(xuu80, xuu81, gd, ge) new_esEs7(xuu3110002, xuu6002, ty_Char) -> new_esEs22(xuu3110002, xuu6002) new_esEs37(xuu31100000, xuu60000, app(ty_Ratio, efa)) -> new_esEs24(xuu31100000, xuu60000, efa) new_ltEs5(xuu80, xuu81, app(app(ty_Either, hc), hd)) -> new_ltEs17(xuu80, xuu81, hc, hd) new_lt23(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_lt13(xuu580, xuu590, fad, fae, faf) new_esEs39(xuu580, xuu590, app(ty_[], fab)) -> new_esEs13(xuu580, xuu590, fab) new_esEs7(xuu3110002, xuu6002, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs23(xuu3110002, xuu6002, bge, bgf, bgg) new_ltEs8(Just(xuu580), Just(xuu590), ty_Bool) -> new_ltEs6(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_Char) -> new_ltEs16(xuu58, xuu59) new_lt6(xuu99, xuu101, cbe, cbf) -> new_esEs25(new_compare18(xuu99, xuu101, cbe, cbf), LT) new_esEs7(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs26(xuu580, xuu590, app(ty_[], bbd)) -> new_esEs13(xuu580, xuu590, bbd) new_esEs8(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu581, xuu591, app(ty_Maybe, eha)) -> new_esEs21(xuu581, xuu591, eha) new_ltEs20(xuu87, xuu88, app(app(ty_Either, cch), cda)) -> new_ltEs17(xuu87, xuu88, cch, cda) new_ltEs6(False, False) -> True new_esEs31(xuu31100002, xuu60002, ty_Bool) -> new_esEs17(xuu31100002, xuu60002) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_esEs9(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs13(@3(xuu580, xuu581, xuu582), @3(xuu590, xuu591, xuu592), dda, ddb, ddc) -> new_pePe(new_lt23(xuu580, xuu590, dda), new_asAs(new_esEs39(xuu580, xuu590, dda), new_pePe(new_lt22(xuu581, xuu591, ddb), new_asAs(new_esEs38(xuu581, xuu591, ddb), new_ltEs24(xuu582, xuu592, ddc))))) new_primCmpInt(Neg(Zero), Pos(Succ(xuu60000))) -> LT new_compare0(xuu311000, xuu600, ty_Float) -> new_compare13(xuu311000, xuu600) new_esEs33(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Int) -> new_ltEs12(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Integer, be) -> new_esEs20(xuu31100000, xuu60000) new_primMulInt(Pos(xuu60000), Pos(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs13(:(xuu31100000, xuu31100001), [], bcd) -> False new_esEs13([], :(xuu60000, xuu60001), bcd) -> False new_esEs34(xuu70, xuu73, ty_Float) -> new_esEs15(xuu70, xuu73) new_ltEs19(xuu581, xuu591, app(ty_Maybe, bac)) -> new_ltEs8(xuu581, xuu591, bac) new_primMulNat0(Succ(xuu600000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu311000100)) -> Zero new_esEs32(xuu31100001, xuu60001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs23(xuu31100001, xuu60001, dah, dba, dbb) new_esEs5(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_[], ebd)) -> new_ltEs4(xuu580, xuu590, ebd) new_esEs11(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare8(False, False) -> EQ new_esEs33(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Float) -> new_ltEs14(xuu582, xuu592) new_esEs38(xuu581, xuu591, ty_Integer) -> new_esEs20(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(ty_Either, ecg), ech)) -> new_esEs12(xuu31100001, xuu60001, ecg, ech) new_esEs10(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs8(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_ltEs22(xuu58, xuu59, app(app(ty_Either, ddd), dde)) -> new_ltEs17(xuu58, xuu59, ddd, dde) new_primPlusNat0(Succ(xuu19700), Zero) -> Succ(xuu19700) new_primPlusNat0(Zero, Succ(xuu19600)) -> Succ(xuu19600) new_esEs7(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs35(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_esEs19(xuu69, xuu72, dge, dgf) new_esEs36(xuu31100001, xuu60001, app(ty_[], ecf)) -> new_esEs13(xuu31100001, xuu60001, ecf) new_esEs33(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs6(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Maybe, bdg)) -> new_compare7(xuu311000, xuu600, bdg) new_esEs30(xuu99, xuu101, ty_Char) -> new_esEs22(xuu99, xuu101) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Ordering, be) -> new_esEs25(xuu31100000, xuu60000) new_esEs25(GT, GT) -> True new_ltEs5(xuu80, xuu81, app(ty_Maybe, gg)) -> new_ltEs8(xuu80, xuu81, gg) new_lt21(xuu69, xuu72, ty_Double) -> new_lt11(xuu69, xuu72) new_ltEs5(xuu80, xuu81, ty_Char) -> new_ltEs16(xuu80, xuu81) new_esEs10(xuu3110000, xuu6000, app(app(ty_@2, fbg), fbh)) -> new_esEs19(xuu3110000, xuu6000, fbg, fbh) new_compare25(xuu58, xuu59, False, dcg) -> new_compare110(xuu58, xuu59, new_ltEs22(xuu58, xuu59, dcg), dcg) new_esEs30(xuu99, xuu101, ty_@0) -> new_esEs16(xuu99, xuu101) new_esEs32(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare210(xuu99, xuu100, xuu101, xuu102, False, ceb, cec) -> new_compare17(xuu99, xuu100, xuu101, xuu102, new_lt19(xuu99, xuu101, ceb), new_asAs(new_esEs30(xuu99, xuu101, ceb), new_ltEs21(xuu100, xuu102, cec)), ceb, cec) new_esEs33(xuu31100000, xuu60000, app(app(ty_@2, dbg), dbh)) -> new_esEs19(xuu31100000, xuu60000, dbg, dbh) new_ltEs19(xuu581, xuu591, ty_Char) -> new_ltEs16(xuu581, xuu591) new_esEs9(xuu3110000, xuu6000, app(app(ty_@2, caf), cag)) -> new_esEs19(xuu3110000, xuu6000, caf, cag) new_compare10(xuu156, xuu157, xuu158, xuu159, False, ec, ed) -> GT new_esEs38(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_esEs12(xuu581, xuu591, ehe, ehf) new_lt21(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_lt18(xuu69, xuu72, dhf) new_ltEs20(xuu87, xuu88, app(app(ty_@2, cca), ccb)) -> new_ltEs7(xuu87, xuu88, cca, ccb) new_compare210(xuu99, xuu100, xuu101, xuu102, True, ceb, cec) -> EQ new_esEs31(xuu31100002, xuu60002, ty_@0) -> new_esEs16(xuu31100002, xuu60002) new_esEs34(xuu70, xuu73, ty_Int) -> new_esEs14(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Int, dde) -> new_ltEs12(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) -> LT new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Maybe, df)) -> new_esEs21(xuu31100000, xuu60000, df) new_esEs30(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs23(xuu99, xuu101, cee, cef, ceg) new_compare25(xuu58, xuu59, True, dcg) -> EQ new_ltEs17(Left(xuu580), Left(xuu590), app(app(app(ty_@3, fff), ffg), ffh), dde) -> new_ltEs13(xuu580, xuu590, fff, ffg, ffh) new_ltEs21(xuu100, xuu102, ty_@0) -> new_ltEs15(xuu100, xuu102) new_lt20(xuu70, xuu73, ty_Integer) -> new_lt10(xuu70, xuu73) new_esEs7(xuu3110002, xuu6002, ty_Ordering) -> new_esEs25(xuu3110002, xuu6002) new_esEs4(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs28(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs26(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_esEs12(xuu580, xuu590, bca, bcb) new_esEs5(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Maybe, ffe), dde) -> new_ltEs8(xuu580, xuu590, ffe) new_lt22(xuu581, xuu591, ty_Double) -> new_lt11(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_esEs6(xuu3110000, xuu6000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs23(xuu3110000, xuu6000, bef, beg, beh) new_esEs10(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Double) -> new_ltEs11(xuu71, xuu74) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Integer) -> new_compare12(new_sr0(xuu3110000, xuu6001), new_sr0(xuu6000, xuu3110001)) new_esEs33(xuu31100000, xuu60000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs23(xuu31100000, xuu60000, dcb, dcc, dcd) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Ratio, ga)) -> new_esEs24(xuu31100000, xuu60000, ga) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Float) -> new_ltEs14(xuu580, xuu590) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Double) -> new_ltEs11(xuu580, xuu590) new_ltEs17(Left(xuu580), Left(xuu590), app(ty_Ratio, fgc), dde) -> new_ltEs18(xuu580, xuu590, fgc) new_esEs28(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_esEs35(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_esEs12(xuu69, xuu72, dhd, dhe) new_esEs30(xuu99, xuu101, ty_Bool) -> new_esEs17(xuu99, xuu101) new_esEs10(xuu3110000, xuu6000, app(app(ty_Either, fbe), fbf)) -> new_esEs12(xuu3110000, xuu6000, fbe, fbf) new_esEs33(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_ltEs17(Left(xuu580), Left(xuu590), ty_Char, dde) -> new_ltEs16(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, app(ty_Ratio, edg)) -> new_esEs24(xuu31100001, xuu60001, edg) new_esEs39(xuu580, xuu590, app(ty_Maybe, fac)) -> new_esEs21(xuu580, xuu590, fac) new_lt23(xuu580, xuu590, app(ty_Maybe, fac)) -> new_lt8(xuu580, xuu590, fac) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, dhh), eaa)) -> new_compare18(xuu37, xuu38, dhh, eaa) new_compare0(xuu311000, xuu600, app(app(ty_@2, cdd), cde)) -> new_compare18(xuu311000, xuu600, cdd, cde) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_[], da)) -> new_esEs13(xuu31100000, xuu60000, da) new_esEs32(xuu31100001, xuu60001, app(app(ty_@2, dae), daf)) -> new_esEs19(xuu31100001, xuu60001, dae, daf) new_lt4(xuu580, xuu590, ty_Integer) -> new_lt10(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(ty_[], egh)) -> new_esEs13(xuu581, xuu591, egh) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_[], bd), be) -> new_esEs13(xuu31100000, xuu60000, bd) new_esEs32(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs5(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt22(xuu581, xuu591, app(app(ty_Either, ehe), ehf)) -> new_lt17(xuu581, xuu591, ehe, ehf) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_compare0(xuu311000, xuu600, app(ty_Ratio, cea)) -> new_compare15(xuu311000, xuu600, cea) new_ltEs20(xuu87, xuu88, ty_@0) -> new_ltEs15(xuu87, xuu88) new_esEs6(xuu3110000, xuu6000, app(ty_[], bdh)) -> new_esEs13(xuu3110000, xuu6000, bdh) new_lt16(xuu99, xuu101) -> new_esEs25(new_compare29(xuu99, xuu101), LT) new_esEs16(@0, @0) -> True new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare13(xuu37, xuu38) new_esEs30(xuu99, xuu101, app(ty_Maybe, ced)) -> new_esEs21(xuu99, xuu101, ced) new_lt23(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_@0) -> new_esEs16(xuu69, xuu72) new_compare24(xuu80, xuu81, True, gb, gc) -> EQ new_lt5(xuu99, xuu101) -> new_esEs25(new_compare8(xuu99, xuu101), LT) new_ltEs19(xuu581, xuu591, ty_@0) -> new_ltEs15(xuu581, xuu591) new_primCmpInt(Pos(Succ(xuu31100000)), Pos(xuu6000)) -> new_primCmpNat0(Succ(xuu31100000), xuu6000) new_esEs39(xuu580, xuu590, ty_Bool) -> new_esEs17(xuu580, xuu590) new_ltEs5(xuu80, xuu81, ty_Double) -> new_ltEs11(xuu80, xuu81) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, eba)) -> new_compare15(xuu37, xuu38, eba) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs30(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_esEs12(xuu99, xuu101, ceh, cfa) new_esEs10(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_ltEs23(xuu71, xuu74, app(app(ty_@2, dea), deb)) -> new_ltEs7(xuu71, xuu74, dea, deb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs37(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Ratio, fce)) -> new_esEs24(xuu3110000, xuu6000, fce) new_esEs38(xuu581, xuu591, ty_Char) -> new_esEs22(xuu581, xuu591) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Float) -> new_ltEs14(xuu80, xuu81) new_esEs26(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_esEs19(xuu580, xuu590, bbb, bbc) new_compare30(GT, EQ) -> GT new_esEs36(xuu31100001, xuu60001, ty_Integer) -> new_esEs20(xuu31100001, xuu60001) new_lt23(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs38(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs23(xuu581, xuu591, ehb, ehc, ehd) new_esEs37(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs6(False, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, eac)) -> new_compare7(xuu37, xuu38, eac) new_ltEs12(xuu58, xuu59) -> new_fsEs(new_compare14(xuu58, xuu59)) new_ltEs9(GT, LT) -> False new_esEs6(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs8(Just(xuu580), Just(xuu590), app(ty_Maybe, ebe)) -> new_ltEs8(xuu580, xuu590, ebe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs23(xuu31100000, xuu60000, dg, dh, ea) new_esEs14(xuu3110000, xuu6000) -> new_primEqInt(xuu3110000, xuu6000) new_compare7(Just(xuu3110000), Nothing, bdg) -> GT new_esEs32(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_esEs4(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt4(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt13(xuu580, xuu590, bbf, bbg, bbh) new_esEs31(xuu31100002, xuu60002, ty_Integer) -> new_esEs20(xuu31100002, xuu60002) new_esEs39(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs15(Float(xuu31100000, xuu31100001), Float(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare14(xuu311000, xuu600) -> new_primCmpInt(xuu311000, xuu600) new_lt23(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_lt17(xuu580, xuu590, fag, fah) new_lt22(xuu581, xuu591, ty_Bool) -> new_lt5(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_@0, dde) -> new_ltEs15(xuu580, xuu590) new_ltEs22(xuu58, xuu59, app(ty_[], ee)) -> new_ltEs4(xuu58, xuu59, ee) new_esEs11(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Ratio, fdg)) -> new_esEs24(xuu3110000, xuu6000, fdg) new_esEs34(xuu70, xuu73, ty_Char) -> new_esEs22(xuu70, xuu73) new_compare6([], [], cdf) -> EQ new_esEs29(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare0(xuu311000, xuu600, ty_Double) -> new_compare28(xuu311000, xuu600) new_esEs17(True, True) -> True new_esEs11(xuu3110000, xuu6000, app(app(ty_Either, fcg), fch)) -> new_esEs12(xuu3110000, xuu6000, fcg, fch) new_lt13(xuu99, xuu101, cee, cef, ceg) -> new_esEs25(new_compare16(xuu99, xuu101, cee, cef, ceg), LT) new_lt18(xuu99, xuu101, cfb) -> new_esEs25(new_compare15(xuu99, xuu101, cfb), LT) new_esEs39(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_esEs11(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Left(xuu580), Left(xuu590), ty_Integer, dde) -> new_ltEs10(xuu580, xuu590) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare12(xuu37, xuu38) new_esEs11(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs33(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_lt19(xuu99, xuu101, ty_Float) -> new_lt14(xuu99, xuu101) new_ltEs24(xuu582, xuu592, ty_Double) -> new_ltEs11(xuu582, xuu592) new_esEs34(xuu70, xuu73, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs23(xuu70, xuu73, dfg, dfh, dga) new_esEs34(xuu70, xuu73, ty_@0) -> new_esEs16(xuu70, xuu73) new_esEs34(xuu70, xuu73, app(app(ty_Either, dgb), dgc)) -> new_esEs12(xuu70, xuu73, dgb, dgc) new_lt20(xuu70, xuu73, ty_Ordering) -> new_lt9(xuu70, xuu73) new_esEs11(xuu3110000, xuu6000, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs23(xuu3110000, xuu6000, fdd, fde, fdf) new_lt21(xuu69, xuu72, app(app(ty_Either, dhd), dhe)) -> new_lt17(xuu69, xuu72, dhd, dhe) new_primPlusNat0(Succ(xuu19700), Succ(xuu19600)) -> Succ(Succ(new_primPlusNat0(xuu19700, xuu19600))) new_lt19(xuu99, xuu101, ty_Char) -> new_lt16(xuu99, xuu101) new_esEs5(xuu3110000, xuu6000, app(ty_[], bcd)) -> new_esEs13(xuu3110000, xuu6000, bcd) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Int, be) -> new_esEs14(xuu31100000, xuu60000) new_esEs10(xuu3110000, xuu6000, app(ty_Maybe, fca)) -> new_esEs21(xuu3110000, xuu6000, fca) new_compare27(xuu87, xuu88, True, cbg, cbh) -> EQ new_esEs37(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt23(xuu580, xuu590, ty_Float) -> new_lt14(xuu580, xuu590) new_esEs36(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs30(xuu99, xuu101, app(ty_Ratio, cfb)) -> new_esEs24(xuu99, xuu101, cfb) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_@2, ffb), ffc), dde) -> new_ltEs7(xuu580, xuu590, ffb, ffc) new_esEs35(xuu69, xuu72, ty_Integer) -> new_esEs20(xuu69, xuu72) new_lt4(xuu580, xuu590, app(app(ty_Either, bca), bcb)) -> new_lt17(xuu580, xuu590, bca, bcb) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare28(xuu37, xuu38) new_compare11(xuu135, xuu136, True, fbb, fbc) -> LT new_ltEs21(xuu100, xuu102, app(ty_[], cfe)) -> new_ltEs4(xuu100, xuu102, cfe) new_esEs36(xuu31100001, xuu60001, ty_Char) -> new_esEs22(xuu31100001, xuu60001) new_ltEs9(LT, EQ) -> True new_esEs10(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_esEs30(xuu99, xuu101, ty_Int) -> new_esEs14(xuu99, xuu101) new_compare18(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cdd, cde) -> new_compare210(xuu3110000, xuu3110001, xuu6000, xuu6001, new_asAs(new_esEs5(xuu3110000, xuu6000, cdd), new_esEs4(xuu3110001, xuu6001, cde)), cdd, cde) new_esEs38(xuu581, xuu591, ty_Ordering) -> new_esEs25(xuu581, xuu591) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_ltEs22(xuu58, xuu59, ty_Double) -> new_ltEs11(xuu58, xuu59) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_lt20(xuu70, xuu73, ty_Float) -> new_lt14(xuu70, xuu73) new_esEs33(xuu31100000, xuu60000, app(ty_Maybe, dca)) -> new_esEs21(xuu31100000, xuu60000, dca) new_ltEs9(LT, GT) -> True new_esEs27(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare7(Nothing, Just(xuu6000), bdg) -> LT new_esEs26(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs17(False, False) -> True new_esEs34(xuu70, xuu73, ty_Bool) -> new_esEs17(xuu70, xuu73) new_lt23(xuu580, xuu590, ty_Ordering) -> new_lt9(xuu580, xuu590) new_ltEs10(xuu58, xuu59) -> new_fsEs(new_compare12(xuu58, xuu59)) new_esEs37(xuu31100000, xuu60000, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs23(xuu31100000, xuu60000, eef, eeg, eeh) new_ltEs5(xuu80, xuu81, app(ty_[], gf)) -> new_ltEs4(xuu80, xuu81, gf) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, True, ddf, ddg, ddh) -> EQ new_lt21(xuu69, xuu72, ty_Float) -> new_lt14(xuu69, xuu72) new_lt4(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_esEs24(:%(xuu31100000, xuu31100001), :%(xuu60000, xuu60001), cdc) -> new_asAs(new_esEs29(xuu31100000, xuu60000, cdc), new_esEs28(xuu31100001, xuu60001, cdc)) new_primCmpNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primCmpNat0(xuu31100000, xuu60000) new_ltEs15(xuu58, xuu59) -> new_fsEs(new_compare9(xuu58, xuu59)) new_esEs8(xuu3110001, xuu6001, app(ty_[], bha)) -> new_esEs13(xuu3110001, xuu6001, bha) new_lt20(xuu70, xuu73, ty_Char) -> new_lt16(xuu70, xuu73) new_ltEs17(Left(xuu580), Left(xuu590), ty_Ordering, dde) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_compare8(False, True) -> LT new_esEs31(xuu31100002, xuu60002, app(app(ty_Either, cha), chb)) -> new_esEs12(xuu31100002, xuu60002, cha, chb) new_esEs36(xuu31100001, xuu60001, ty_Ordering) -> new_esEs25(xuu31100001, xuu60001) new_esEs11(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu3110000, xuu6000, app(ty_Maybe, fdc)) -> new_esEs21(xuu3110000, xuu6000, fdc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs23(xuu31100000, xuu60000, ff, fg, fh) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_lt22(xuu581, xuu591, ty_Float) -> new_lt14(xuu581, xuu591) new_esEs32(xuu31100001, xuu60001, app(ty_Ratio, dbc)) -> new_esEs24(xuu31100001, xuu60001, dbc) new_lt9(xuu99, xuu101) -> new_esEs25(new_compare30(xuu99, xuu101), LT) new_esEs27(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs27(xuu31100000, xuu60000, app(app(ty_@2, bch), bda)) -> new_esEs19(xuu31100000, xuu60000, bch, bda) new_lt20(xuu70, xuu73, ty_Bool) -> new_lt5(xuu70, xuu73) new_ltEs24(xuu582, xuu592, app(app(ty_@2, efd), efe)) -> new_ltEs7(xuu582, xuu592, efd, efe) new_ltEs17(Right(xuu580), Left(xuu590), ddd, dde) -> False new_lt11(xuu99, xuu101) -> new_esEs25(new_compare28(xuu99, xuu101), LT) new_ltEs9(EQ, LT) -> False new_ltEs20(xuu87, xuu88, app(ty_[], ccc)) -> new_ltEs4(xuu87, xuu88, ccc) new_esEs35(xuu69, xuu72, app(ty_Maybe, dgh)) -> new_esEs21(xuu69, xuu72, dgh) new_lt19(xuu99, xuu101, ty_@0) -> new_lt15(xuu99, xuu101) new_esEs37(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs36(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs8(Just(xuu580), Just(xuu590), ty_Char) -> new_ltEs16(xuu580, xuu590) new_lt4(xuu580, xuu590, ty_@0) -> new_lt15(xuu580, xuu590) new_esEs31(xuu31100002, xuu60002, app(ty_Ratio, daa)) -> new_esEs24(xuu31100002, xuu60002, daa) new_compare110(xuu125, xuu126, True, dcf) -> LT new_ltEs19(xuu581, xuu591, app(ty_[], bab)) -> new_ltEs4(xuu581, xuu591, bab) new_ltEs8(Just(xuu580), Just(xuu590), ty_@0) -> new_ltEs15(xuu580, xuu590) new_lt22(xuu581, xuu591, app(ty_Maybe, eha)) -> new_lt8(xuu581, xuu591, eha) new_esEs34(xuu70, xuu73, app(ty_Maybe, dff)) -> new_esEs21(xuu70, xuu73, dff) new_lt20(xuu70, xuu73, ty_@0) -> new_lt15(xuu70, xuu73) new_esEs35(xuu69, xuu72, ty_Bool) -> new_esEs17(xuu69, xuu72) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, ty_Float) -> new_esEs15(xuu581, xuu591) new_lt22(xuu581, xuu591, ty_Ordering) -> new_lt9(xuu581, xuu591) new_esEs36(xuu31100001, xuu60001, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs23(xuu31100001, xuu60001, edd, ede, edf) new_esEs34(xuu70, xuu73, ty_Integer) -> new_esEs20(xuu70, xuu73) new_lt4(xuu580, xuu590, ty_Bool) -> new_lt5(xuu580, xuu590) new_esEs32(xuu31100001, xuu60001, app(app(ty_Either, dac), dad)) -> new_esEs12(xuu31100001, xuu60001, dac, dad) new_esEs7(xuu3110002, xuu6002, app(ty_[], bfg)) -> new_esEs13(xuu3110002, xuu6002, bfg) new_esEs35(xuu69, xuu72, ty_Char) -> new_esEs22(xuu69, xuu72) new_esEs11(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_lt7(xuu99, xuu101, bfb) -> new_esEs25(new_compare6(xuu99, xuu101, bfb), LT) new_primCmpInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> LT new_lt19(xuu99, xuu101, ty_Bool) -> new_lt5(xuu99, xuu101) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare8(xuu37, xuu38) new_ltEs23(xuu71, xuu74, ty_Char) -> new_ltEs16(xuu71, xuu74) new_ltEs5(xuu80, xuu81, ty_@0) -> new_ltEs15(xuu80, xuu81) new_esEs39(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs27(xuu31100000, xuu60000, ty_@0) -> new_esEs16(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, app(app(ty_Either, bcf), bcg)) -> new_esEs12(xuu31100000, xuu60000, bcf, bcg) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(ty_Ratio, eb)) -> new_esEs24(xuu31100000, xuu60000, eb) new_esEs39(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_esEs19(xuu580, xuu590, ehh, faa) new_esEs39(xuu580, xuu590, ty_Double) -> new_esEs18(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, app(ty_[], fdh)) -> new_esEs13(xuu3110001, xuu6001, fdh) new_esEs9(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs32(xuu31100001, xuu60001, app(ty_Maybe, dag)) -> new_esEs21(xuu31100001, xuu60001, dag) new_ltEs19(xuu581, xuu591, ty_Ordering) -> new_ltEs9(xuu581, xuu591) new_esEs37(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu60000))) -> GT new_lt20(xuu70, xuu73, app(ty_Ratio, dgd)) -> new_lt18(xuu70, xuu73, dgd) new_lt22(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_lt6(xuu581, xuu591, egf, egg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Double, dde) -> new_ltEs11(xuu580, xuu590) new_ltEs21(xuu100, xuu102, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs13(xuu100, xuu102, cfg, cfh, cga) new_primCmpInt(Neg(Succ(xuu31100000)), Neg(xuu6000)) -> new_primCmpNat0(xuu6000, Succ(xuu31100000)) new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_compare15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), ty_Int) -> new_compare14(new_sr(xuu3110000, xuu6001), new_sr(xuu6000, xuu3110001)) new_ltEs9(LT, LT) -> True new_lt19(xuu99, xuu101, app(app(ty_Either, ceh), cfa)) -> new_lt17(xuu99, xuu101, ceh, cfa) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_@2, ebb), ebc)) -> new_ltEs7(xuu580, xuu590, ebb, ebc) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Ordering) -> new_lt9(xuu69, xuu72) new_esEs8(xuu3110001, xuu6001, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs23(xuu3110001, xuu6001, bhg, bhh, caa) new_esEs10(xuu3110000, xuu6000, app(ty_[], fbd)) -> new_esEs13(xuu3110000, xuu6000, fbd) new_ltEs11(xuu58, xuu59) -> new_fsEs(new_compare28(xuu58, xuu59)) new_esEs6(xuu3110000, xuu6000, app(app(ty_Either, bea), beb)) -> new_esEs12(xuu3110000, xuu6000, bea, beb) new_primEqInt(Pos(Succ(xuu311000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu600000))) -> False new_ltEs21(xuu100, xuu102, app(app(ty_@2, cfc), cfd)) -> new_ltEs7(xuu100, xuu102, cfc, cfd) new_ltEs8(Just(xuu580), Just(xuu590), app(app(ty_Either, eca), ecb)) -> new_ltEs17(xuu580, xuu590, eca, ecb) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], eab)) -> new_compare6(xuu37, xuu38, eab) new_compare0(xuu311000, xuu600, app(ty_[], cdf)) -> new_compare6(xuu311000, xuu600, cdf) new_ltEs19(xuu581, xuu591, ty_Int) -> new_ltEs12(xuu581, xuu591) new_ltEs17(Left(xuu580), Left(xuu590), ty_Float, dde) -> new_ltEs14(xuu580, xuu590) new_compare19(xuu142, xuu143, True, efb, efc) -> LT new_ltEs20(xuu87, xuu88, ty_Bool) -> new_ltEs6(xuu87, xuu88) new_compare6(:(xuu3110000, xuu3110001), [], cdf) -> GT new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_esEs38(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_esEs24(xuu581, xuu591, ehg) new_esEs4(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Char) -> new_esEs22(xuu31100002, xuu60002) new_ltEs14(xuu58, xuu59) -> new_fsEs(new_compare13(xuu58, xuu59)) new_esEs9(xuu3110000, xuu6000, app(ty_[], cac)) -> new_esEs13(xuu3110000, xuu6000, cac) new_esEs33(xuu31100000, xuu60000, app(ty_Ratio, dce)) -> new_esEs24(xuu31100000, xuu60000, dce) new_ltEs8(Just(xuu580), Just(xuu590), ty_Int) -> new_ltEs12(xuu580, xuu590) new_primCmpNat0(Zero, Zero) -> EQ new_esEs8(xuu3110001, xuu6001, app(app(ty_@2, bhd), bhe)) -> new_esEs19(xuu3110001, xuu6001, bhd, bhe) new_esEs35(xuu69, xuu72, ty_Float) -> new_esEs15(xuu69, xuu72) new_esEs27(xuu31100000, xuu60000, ty_Bool) -> new_esEs17(xuu31100000, xuu60000) new_esEs32(xuu31100001, xuu60001, ty_Int) -> new_esEs14(xuu31100001, xuu60001) new_lt21(xuu69, xuu72, ty_Bool) -> new_lt5(xuu69, xuu72) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, ead), eae), eaf)) -> new_compare16(xuu37, xuu38, ead, eae, eaf) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_[], fgf)) -> new_ltEs4(xuu580, xuu590, fgf) new_esEs35(xuu69, xuu72, app(ty_[], dgg)) -> new_esEs13(xuu69, xuu72, dgg) new_ltEs19(xuu581, xuu591, ty_Integer) -> new_ltEs10(xuu581, xuu591) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Float, be) -> new_esEs15(xuu31100000, xuu60000) new_lt23(xuu580, xuu590, app(ty_[], fab)) -> new_lt7(xuu580, xuu590, fab) new_ltEs19(xuu581, xuu591, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs13(xuu581, xuu591, bad, bae, baf) new_lt21(xuu69, xuu72, ty_Char) -> new_lt16(xuu69, xuu72) new_esEs39(xuu580, xuu590, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs23(xuu580, xuu590, fad, fae, faf) new_ltEs20(xuu87, xuu88, ty_Double) -> new_ltEs11(xuu87, xuu88) new_esEs13([], [], bcd) -> True new_ltEs20(xuu87, xuu88, app(ty_Maybe, ccd)) -> new_ltEs8(xuu87, xuu88, ccd) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_@0) -> new_ltEs15(xuu580, xuu590) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_Maybe, fd)) -> new_esEs21(xuu31100000, xuu60000, fd) new_lt20(xuu70, xuu73, ty_Double) -> new_lt11(xuu70, xuu73) new_ltEs24(xuu582, xuu592, ty_Integer) -> new_ltEs10(xuu582, xuu592) new_ltEs6(True, True) -> True new_ltEs8(Just(xuu580), Just(xuu590), app(app(app(ty_@3, ebf), ebg), ebh)) -> new_ltEs13(xuu580, xuu590, ebf, ebg, ebh) new_lt22(xuu581, xuu591, ty_@0) -> new_lt15(xuu581, xuu591) new_ltEs21(xuu100, xuu102, ty_Ordering) -> new_ltEs9(xuu100, xuu102) new_lt4(xuu580, xuu590, app(ty_Maybe, bbe)) -> new_lt8(xuu580, xuu590, bbe) new_lt20(xuu70, xuu73, app(ty_Maybe, dff)) -> new_lt8(xuu70, xuu73, dff) new_lt19(xuu99, xuu101, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt13(xuu99, xuu101, cee, cef, ceg) new_ltEs17(Left(xuu580), Left(xuu590), ty_Bool, dde) -> new_ltEs6(xuu580, xuu590) new_ltEs20(xuu87, xuu88, ty_Float) -> new_ltEs14(xuu87, xuu88) new_esEs32(xuu31100001, xuu60001, ty_Bool) -> new_esEs17(xuu31100001, xuu60001) new_esEs37(xuu31100000, xuu60000, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs31(xuu31100002, xuu60002, app(app(ty_@2, chc), chd)) -> new_esEs19(xuu31100002, xuu60002, chc, chd) new_esEs34(xuu70, xuu73, ty_Ordering) -> new_esEs25(xuu70, xuu73) new_lt19(xuu99, xuu101, ty_Ordering) -> new_lt9(xuu99, xuu101) new_lt8(xuu99, xuu101, ced) -> new_esEs25(new_compare7(xuu99, xuu101, ced), LT) new_ltEs21(xuu100, xuu102, ty_Int) -> new_ltEs12(xuu100, xuu102) new_esEs8(xuu3110001, xuu6001, ty_Char) -> new_esEs22(xuu3110001, xuu6001) new_ltEs5(xuu80, xuu81, app(ty_Ratio, he)) -> new_ltEs18(xuu80, xuu81, he) new_ltEs8(Just(xuu580), Just(xuu590), ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_Maybe, eee)) -> new_esEs21(xuu31100000, xuu60000, eee) new_ltEs23(xuu71, xuu74, app(ty_[], dec)) -> new_ltEs4(xuu71, xuu74, dec) new_primCmpNat0(Succ(xuu31100000), Zero) -> GT new_esEs30(xuu99, xuu101, ty_Float) -> new_esEs15(xuu99, xuu101) new_pePe(False, xuu195) -> xuu195 new_esEs4(xuu3110001, xuu6001, app(ty_Maybe, fee)) -> new_esEs21(xuu3110001, xuu6001, fee) new_lt19(xuu99, xuu101, ty_Int) -> new_lt12(xuu99, xuu101) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Int) -> new_esEs14(xuu31100000, xuu60000) new_esEs35(xuu69, xuu72, ty_Int) -> new_esEs14(xuu69, xuu72) new_lt22(xuu581, xuu591, ty_Integer) -> new_lt10(xuu581, xuu591) new_esEs18(Double(xuu31100000, xuu31100001), Double(xuu60000, xuu60001)) -> new_esEs14(new_sr(xuu31100000, xuu60001), new_sr(xuu31100001, xuu60000)) new_compare27(xuu87, xuu88, False, cbg, cbh) -> new_compare19(xuu87, xuu88, new_ltEs20(xuu87, xuu88, cbh), cbg, cbh) new_compare6(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cdf) -> new_primCompAux1(xuu3110000, xuu6000, xuu3110001, xuu6001, cdf) new_esEs6(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare11(xuu135, xuu136, False, fbb, fbc) -> GT new_primEqInt(Pos(Zero), Neg(Succ(xuu600000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu600000))) -> False new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_ltEs8(Just(xuu580), Just(xuu590), ty_Integer) -> new_ltEs10(xuu580, xuu590) new_ltEs19(xuu581, xuu591, app(app(ty_Either, bag), bah)) -> new_ltEs17(xuu581, xuu591, bag, bah) new_esEs23(@3(xuu31100000, xuu31100001, xuu31100002), @3(xuu60000, xuu60001, xuu60002), cge, cgf, cgg) -> new_asAs(new_esEs33(xuu31100000, xuu60000, cge), new_asAs(new_esEs32(xuu31100001, xuu60001, cgf), new_esEs31(xuu31100002, xuu60002, cgg))) new_ltEs22(xuu58, xuu59, ty_Float) -> new_ltEs14(xuu58, xuu59) new_compare31(Left(xuu3110000), Right(xuu6000), cdg, cdh) -> LT new_esEs35(xuu69, xuu72, app(ty_Ratio, dhf)) -> new_esEs24(xuu69, xuu72, dhf) new_esEs10(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(app(ty_@2, bbb), bbc)) -> new_lt6(xuu580, xuu590, bbb, bbc) new_esEs31(xuu31100002, xuu60002, ty_Double) -> new_esEs18(xuu31100002, xuu60002) new_compare30(LT, GT) -> LT new_esEs4(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, app(app(app(ty_@3, dha), dhb), dhc)) -> new_lt13(xuu69, xuu72, dha, dhb, dhc) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_Either, eh), fa)) -> new_esEs12(xuu31100000, xuu60000, eh, fa) new_lt23(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_esEs5(xuu3110000, xuu6000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs23(xuu3110000, xuu6000, cge, cgf, cgg) new_esEs11(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs7(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs32(xuu31100001, xuu60001, ty_@0) -> new_esEs16(xuu31100001, xuu60001) new_ltEs17(Left(xuu580), Left(xuu590), app(app(ty_Either, fga), fgb), dde) -> new_ltEs17(xuu580, xuu590, fga, fgb) new_compare8(True, True) -> EQ new_esEs6(xuu3110000, xuu6000, app(ty_Maybe, bee)) -> new_esEs21(xuu3110000, xuu6000, bee) new_ltEs9(GT, EQ) -> False new_esEs34(xuu70, xuu73, ty_Double) -> new_esEs18(xuu70, xuu73) new_esEs27(xuu31100000, xuu60000, app(ty_Maybe, bdb)) -> new_esEs21(xuu31100000, xuu60000, bdb) new_esEs39(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_lt4(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_lt18(xuu580, xuu590, bcc) new_ltEs23(xuu71, xuu74, app(app(ty_Either, deh), dfa)) -> new_ltEs17(xuu71, xuu74, deh, dfa) new_lt23(xuu580, xuu590, ty_Char) -> new_lt16(xuu580, xuu590) new_ltEs22(xuu58, xuu59, ty_@0) -> new_ltEs15(xuu58, xuu59) new_esEs11(xuu3110000, xuu6000, app(app(ty_@2, fda), fdb)) -> new_esEs19(xuu3110000, xuu6000, fda, fdb) new_esEs20(Integer(xuu31100000), Integer(xuu60000)) -> new_primEqInt(xuu31100000, xuu60000) new_esEs8(xuu3110001, xuu6001, ty_Ordering) -> new_esEs25(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, app(ty_Ratio, bcc)) -> new_esEs24(xuu580, xuu590, bcc) new_esEs29(xuu31100000, xuu60000, ty_Integer) -> new_esEs20(xuu31100000, xuu60000) new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare9(xuu37, xuu38) new_esEs6(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs10(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs21(Just(xuu31100000), Just(xuu60000), app(ty_[], eg)) -> new_esEs13(xuu31100000, xuu60000, eg) new_ltEs21(xuu100, xuu102, app(app(ty_Either, cgb), cgc)) -> new_ltEs17(xuu100, xuu102, cgb, cgc) new_esEs9(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Ordering) -> new_ltEs9(xuu580, xuu590) new_compare7(Just(xuu3110000), Just(xuu6000), bdg) -> new_compare25(xuu3110000, xuu6000, new_esEs6(xuu3110000, xuu6000, bdg), bdg) new_compare0(xuu311000, xuu600, ty_Bool) -> new_compare8(xuu311000, xuu600) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, eag), eah)) -> new_compare31(xuu37, xuu38, eag, eah) new_ltEs9(GT, GT) -> True new_esEs12(Left(xuu31100000), Left(xuu60000), ty_Bool, be) -> new_esEs17(xuu31100000, xuu60000) new_compare30(EQ, GT) -> LT new_esEs37(xuu31100000, xuu60000, app(app(ty_Either, eea), eeb)) -> new_esEs12(xuu31100000, xuu60000, eea, eeb) new_compare19(xuu142, xuu143, False, efb, efc) -> GT new_lt14(xuu99, xuu101) -> new_esEs25(new_compare13(xuu99, xuu101), LT) new_esEs31(xuu31100002, xuu60002, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs23(xuu31100002, xuu60002, chf, chg, chh) new_esEs5(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_primMulInt(Neg(xuu60000), Neg(xuu31100010)) -> Pos(new_primMulNat0(xuu60000, xuu31100010)) new_esEs32(xuu31100001, xuu60001, ty_Float) -> new_esEs15(xuu31100001, xuu60001) new_primCmpInt(Pos(Zero), Pos(Succ(xuu60000))) -> new_primCmpNat0(Zero, Succ(xuu60000)) new_lt19(xuu99, xuu101, ty_Integer) -> new_lt10(xuu99, xuu101) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_esEs39(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs37(xuu31100000, xuu60000, app(ty_[], edh)) -> new_esEs13(xuu31100000, xuu60000, edh) new_ltEs19(xuu581, xuu591, app(app(ty_@2, hh), baa)) -> new_ltEs7(xuu581, xuu591, hh, baa) new_ltEs24(xuu582, xuu592, ty_Int) -> new_ltEs12(xuu582, xuu592) new_esEs8(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs31(xuu31100002, xuu60002, ty_Ordering) -> new_esEs25(xuu31100002, xuu60002) new_ltEs20(xuu87, xuu88, ty_Char) -> new_ltEs16(xuu87, xuu88) new_esEs34(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_esEs19(xuu70, xuu73, dfc, dfd) new_compare0(xuu311000, xuu600, app(app(app(ty_@3, bfd), bfe), bff)) -> new_compare16(xuu311000, xuu600, bfd, bfe, bff) new_lt22(xuu581, xuu591, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_lt13(xuu581, xuu591, ehb, ehc, ehd) new_compare13(Float(xuu3110000, Pos(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_esEs27(xuu31100000, xuu60000, ty_Char) -> new_esEs22(xuu31100000, xuu60000) new_ltEs5(xuu80, xuu81, ty_Ordering) -> new_ltEs9(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(app(ty_Either, bhb), bhc)) -> new_esEs12(xuu3110001, xuu6001, bhb, bhc) new_compare30(GT, LT) -> GT new_ltEs23(xuu71, xuu74, app(app(app(ty_@3, dee), def), deg)) -> new_ltEs13(xuu71, xuu74, dee, def, deg) new_primMulInt(Pos(xuu60000), Neg(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_primMulInt(Neg(xuu60000), Pos(xuu31100010)) -> Neg(new_primMulNat0(xuu60000, xuu31100010)) new_esEs5(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_compare30(EQ, LT) -> GT new_ltEs23(xuu71, xuu74, ty_Float) -> new_ltEs14(xuu71, xuu74) new_compare0(xuu311000, xuu600, ty_@0) -> new_compare9(xuu311000, xuu600) new_esEs37(xuu31100000, xuu60000, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Int) -> new_ltEs12(xuu580, xuu590) new_sr0(Integer(xuu60000), Integer(xuu31100010)) -> Integer(new_primMulInt(xuu60000, xuu31100010)) new_ltEs22(xuu58, xuu59, ty_Bool) -> new_ltEs6(xuu58, xuu59) new_esEs26(xuu580, xuu590, ty_Integer) -> new_esEs20(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, app(ty_Ratio, cbd)) -> new_esEs24(xuu3110000, xuu6000, cbd) new_lt20(xuu70, xuu73, app(ty_[], dfe)) -> new_lt7(xuu70, xuu73, dfe) new_ltEs23(xuu71, xuu74, ty_Int) -> new_ltEs12(xuu71, xuu74) new_ltEs22(xuu58, xuu59, ty_Integer) -> new_ltEs10(xuu58, xuu59) new_esEs12(Left(xuu31100000), Left(xuu60000), ty_@0, be) -> new_esEs16(xuu31100000, xuu60000) new_lt21(xuu69, xuu72, ty_Integer) -> new_lt10(xuu69, xuu72) new_esEs25(LT, LT) -> True new_ltEs5(xuu80, xuu81, ty_Int) -> new_ltEs12(xuu80, xuu81) new_esEs22(Char(xuu31100000), Char(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_asAs(True, xuu117) -> xuu117 new_ltEs21(xuu100, xuu102, ty_Char) -> new_ltEs16(xuu100, xuu102) new_esEs12(Left(xuu31100000), Left(xuu60000), app(app(ty_@2, bh), ca), be) -> new_esEs19(xuu31100000, xuu60000, bh, ca) new_esEs27(xuu31100000, xuu60000, app(ty_[], bce)) -> new_esEs13(xuu31100000, xuu60000, bce) new_esEs38(xuu581, xuu591, ty_Int) -> new_esEs14(xuu581, xuu591) new_esEs5(xuu3110000, xuu6000, app(app(ty_@2, ecd), ece)) -> new_esEs19(xuu3110000, xuu6000, ecd, ece) new_esEs26(xuu580, xuu590, ty_Ordering) -> new_esEs25(xuu580, xuu590) new_esEs33(xuu31100000, xuu60000, app(ty_[], dbd)) -> new_esEs13(xuu31100000, xuu60000, dbd) new_compare16(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bfd, bfe, bff) -> new_compare26(xuu3110000, xuu3110001, xuu3110002, xuu6000, xuu6001, xuu6002, new_asAs(new_esEs9(xuu3110000, xuu6000, bfd), new_asAs(new_esEs8(xuu3110001, xuu6001, bfe), new_esEs7(xuu3110002, xuu6002, bff))), bfd, bfe, bff) new_lt19(xuu99, xuu101, app(ty_[], bfb)) -> new_lt7(xuu99, xuu101, bfb) new_esEs8(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_lt21(xuu69, xuu72, ty_Int) -> new_lt12(xuu69, xuu72) new_ltEs22(xuu58, xuu59, app(ty_Maybe, dch)) -> new_ltEs8(xuu58, xuu59, dch) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Ratio, fhe)) -> new_ltEs18(xuu580, xuu590, fhe) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_Either, db), dc)) -> new_esEs12(xuu31100000, xuu60000, db, dc) new_ltEs22(xuu58, xuu59, ty_Ordering) -> new_ltEs9(xuu58, xuu59) new_primPlusNat1(xuu207, xuu311000100) -> new_primPlusNat0(xuu207, Succ(xuu311000100)) new_lt22(xuu581, xuu591, app(ty_Ratio, ehg)) -> new_lt18(xuu581, xuu591, ehg) new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) -> LT new_ltEs5(xuu80, xuu81, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs13(xuu80, xuu81, gh, ha, hb) new_sr(xuu6000, xuu3110001) -> new_primMulInt(xuu6000, xuu3110001) new_esEs7(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs7(@2(xuu580, xuu581), @2(xuu590, xuu591), hf, hg) -> new_pePe(new_lt4(xuu580, xuu590, hf), new_asAs(new_esEs26(xuu580, xuu590, hf), new_ltEs19(xuu581, xuu591, hg))) new_lt23(xuu580, xuu590, app(ty_Ratio, fba)) -> new_lt18(xuu580, xuu590, fba) new_compare9(@0, @0) -> EQ new_esEs39(xuu580, xuu590, app(app(ty_Either, fag), fah)) -> new_esEs12(xuu580, xuu590, fag, fah) new_esEs21(Nothing, Just(xuu60000), ef) -> False new_esEs21(Just(xuu31100000), Nothing, ef) -> False new_esEs12(Left(xuu31100000), Right(xuu60000), cg, be) -> False new_esEs12(Right(xuu31100000), Left(xuu60000), cg, be) -> False new_esEs36(xuu31100001, xuu60001, app(app(ty_@2, eda), edb)) -> new_esEs19(xuu31100001, xuu60001, eda, edb) new_lt4(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs21(Nothing, Nothing, ef) -> True new_lt19(xuu99, xuu101, app(app(ty_@2, cbe), cbf)) -> new_lt6(xuu99, xuu101, cbe, cbf) new_esEs4(xuu3110001, xuu6001, app(app(ty_Either, fea), feb)) -> new_esEs12(xuu3110001, xuu6001, fea, feb) new_esEs5(xuu3110000, xuu6000, app(ty_Ratio, cdc)) -> new_esEs24(xuu3110000, xuu6000, cdc) new_esEs9(xuu3110000, xuu6000, ty_Ordering) -> new_esEs25(xuu3110000, xuu6000) new_esEs27(xuu31100000, xuu60000, ty_Ordering) -> new_esEs25(xuu31100000, xuu60000) new_esEs6(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs6(xuu3110000, xuu6000, app(app(ty_@2, bec), bed)) -> new_esEs19(xuu3110000, xuu6000, bec, bed) new_ltEs5(xuu80, xuu81, ty_Integer) -> new_ltEs10(xuu80, xuu81) new_ltEs5(xuu80, xuu81, ty_Bool) -> new_ltEs6(xuu80, xuu81) new_esEs8(xuu3110001, xuu6001, app(ty_Maybe, bhf)) -> new_esEs21(xuu3110001, xuu6001, bhf) new_esEs9(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs37(xuu31100000, xuu60000, app(app(ty_@2, eec), eed)) -> new_esEs19(xuu31100000, xuu60000, eec, eed) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Integer) -> new_ltEs10(xuu580, xuu590) new_lt15(xuu99, xuu101) -> new_esEs25(new_compare9(xuu99, xuu101), LT) new_esEs4(xuu3110001, xuu6001, app(ty_Ratio, ffa)) -> new_esEs24(xuu3110001, xuu6001, ffa) new_esEs21(Just(xuu31100000), Just(xuu60000), app(app(ty_@2, fb), fc)) -> new_esEs19(xuu31100000, xuu60000, fb, fc) new_ltEs21(xuu100, xuu102, app(ty_Maybe, cff)) -> new_ltEs8(xuu100, xuu102, cff) new_ltEs24(xuu582, xuu592, app(ty_Ratio, ege)) -> new_ltEs18(xuu582, xuu592, ege) new_lt10(xuu99, xuu101) -> new_esEs25(new_compare12(xuu99, xuu101), LT) new_primEqInt(Neg(Succ(xuu311000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu600000))) -> False new_esEs5(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs7(xuu3110002, xuu6002, app(ty_Maybe, bgd)) -> new_esEs21(xuu3110002, xuu6002, bgd) new_ltEs8(Nothing, Just(xuu590), dch) -> True new_primEqInt(Pos(Succ(xuu311000000)), Pos(Succ(xuu600000))) -> new_primEqNat0(xuu311000000, xuu600000) new_ltEs9(EQ, GT) -> True new_ltEs24(xuu582, xuu592, app(app(ty_Either, egc), egd)) -> new_ltEs17(xuu582, xuu592, egc, egd) new_ltEs24(xuu582, xuu592, ty_@0) -> new_ltEs15(xuu582, xuu592) new_ltEs17(Right(xuu580), Right(xuu590), ddd, ty_Bool) -> new_ltEs6(xuu580, xuu590) new_esEs7(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs27(xuu31100000, xuu60000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs23(xuu31100000, xuu60000, bdc, bdd, bde) new_esEs8(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs26(xuu580, xuu590, ty_Char) -> new_esEs22(xuu580, xuu590) new_primEqInt(Pos(Succ(xuu311000000)), Neg(xuu60000)) -> False new_primEqInt(Neg(Succ(xuu311000000)), Pos(xuu60000)) -> False new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare29(xuu37, xuu38) new_lt4(xuu580, xuu590, ty_Double) -> new_lt11(xuu580, xuu590) new_lt20(xuu70, xuu73, app(app(ty_@2, dfc), dfd)) -> new_lt6(xuu70, xuu73, dfc, dfd) new_primCmpInt(Neg(Zero), Neg(Succ(xuu60000))) -> new_primCmpNat0(Succ(xuu60000), Zero) new_esEs34(xuu70, xuu73, app(ty_[], dfe)) -> new_esEs13(xuu70, xuu73, dfe) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, True, fhf, fhg, fhh) new_ltEs23(xuu71, xuu74, app(ty_Maybe, ded)) -> new_ltEs8(xuu71, xuu74, ded) new_lt23(xuu580, xuu590, app(app(ty_@2, ehh), faa)) -> new_lt6(xuu580, xuu590, ehh, faa) new_compare0(xuu311000, xuu600, app(app(ty_Either, cdg), cdh)) -> new_compare31(xuu311000, xuu600, cdg, cdh) new_esEs38(xuu581, xuu591, ty_Double) -> new_esEs18(xuu581, xuu591) new_primCompAux00(xuu37, xuu38, LT, dhg) -> LT new_compare0(xuu311000, xuu600, ty_Char) -> new_compare29(xuu311000, xuu600) new_ltEs19(xuu581, xuu591, app(ty_Ratio, bba)) -> new_ltEs18(xuu581, xuu591, bba) new_esEs26(xuu580, xuu590, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs23(xuu580, xuu590, bbf, bbg, bbh) new_ltEs21(xuu100, xuu102, ty_Bool) -> new_ltEs6(xuu100, xuu102) new_compare7(Nothing, Nothing, bdg) -> EQ new_ltEs21(xuu100, xuu102, ty_Integer) -> new_ltEs10(xuu100, xuu102) new_ltEs23(xuu71, xuu74, ty_Integer) -> new_ltEs10(xuu71, xuu74) new_not(False) -> True new_ltEs24(xuu582, xuu592, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs13(xuu582, xuu592, efh, ega, egb) new_esEs12(Right(xuu31100000), Right(xuu60000), cg, app(app(ty_@2, dd), de)) -> new_esEs19(xuu31100000, xuu60000, dd, de) new_esEs7(xuu3110002, xuu6002, app(app(ty_Either, bfh), bga)) -> new_esEs12(xuu3110002, xuu6002, bfh, bga) new_esEs32(xuu31100001, xuu60001, app(ty_[], dab)) -> new_esEs13(xuu31100001, xuu60001, dab) new_esEs9(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs36(xuu31100001, xuu60001, ty_Double) -> new_esEs18(xuu31100001, xuu60001) new_compare30(EQ, EQ) -> EQ new_esEs8(xuu3110001, xuu6001, app(ty_Ratio, cab)) -> new_esEs24(xuu3110001, xuu6001, cab) new_lt21(xuu69, xuu72, app(app(ty_@2, dge), dgf)) -> new_lt6(xuu69, xuu72, dge, dgf) new_ltEs23(xuu71, xuu74, ty_Bool) -> new_ltEs6(xuu71, xuu74) new_compare31(Left(xuu3110000), Left(xuu6000), cdg, cdh) -> new_compare24(xuu3110000, xuu6000, new_esEs10(xuu3110000, xuu6000, cdg), cdg, cdh) new_ltEs20(xuu87, xuu88, app(ty_Ratio, cdb)) -> new_ltEs18(xuu87, xuu88, cdb) new_compare30(LT, EQ) -> LT new_esEs8(xuu3110001, xuu6001, ty_Integer) -> new_esEs20(xuu3110001, xuu6001) new_esEs9(xuu3110000, xuu6000, ty_Char) -> new_esEs22(xuu3110000, xuu6000) new_esEs12(Left(xuu31100000), Left(xuu60000), app(ty_Maybe, cb), be) -> new_esEs21(xuu31100000, xuu60000, cb) new_esEs9(xuu3110000, xuu6000, app(app(ty_Either, cad), cae)) -> new_esEs12(xuu3110000, xuu6000, cad, cae) new_esEs30(xuu99, xuu101, app(ty_[], bfb)) -> new_esEs13(xuu99, xuu101, bfb) new_ltEs23(xuu71, xuu74, app(ty_Ratio, dfb)) -> new_ltEs18(xuu71, xuu74, dfb) new_esEs38(xuu581, xuu591, app(app(ty_@2, egf), egg)) -> new_esEs19(xuu581, xuu591, egf, egg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs21(Just(xuu31100000), Just(xuu60000), ty_Double) -> new_esEs18(xuu31100000, xuu60000) new_ltEs24(xuu582, xuu592, ty_Char) -> new_ltEs16(xuu582, xuu592) new_ltEs22(xuu58, xuu59, app(app(app(ty_@3, dda), ddb), ddc)) -> new_ltEs13(xuu58, xuu59, dda, ddb, ddc) new_esEs26(xuu580, xuu590, ty_@0) -> new_esEs16(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs13(xuu580, xuu590, fgh, fha, fhb) new_compare26(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, False, ddf, ddg, ddh) -> new_compare111(xuu69, xuu70, xuu71, xuu72, xuu73, xuu74, new_lt21(xuu69, xuu72, ddf), new_asAs(new_esEs35(xuu69, xuu72, ddf), new_pePe(new_lt20(xuu70, xuu73, ddg), new_asAs(new_esEs34(xuu70, xuu73, ddg), new_ltEs23(xuu71, xuu74, ddh)))), ddf, ddg, ddh) new_esEs6(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt4(xuu580, xuu590, app(ty_[], bbd)) -> new_lt7(xuu580, xuu590, bbd) new_esEs9(xuu3110000, xuu6000, app(ty_Maybe, cah)) -> new_esEs21(xuu3110000, xuu6000, cah) new_lt22(xuu581, xuu591, ty_Int) -> new_lt12(xuu581, xuu591) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs22(xuu58, xuu59, app(ty_Ratio, bfc)) -> new_ltEs18(xuu58, xuu59, bfc) new_esEs6(xuu3110000, xuu6000, app(ty_Ratio, bfa)) -> new_esEs24(xuu3110000, xuu6000, bfa) new_esEs5(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs23(xuu71, xuu74, ty_Ordering) -> new_ltEs9(xuu71, xuu74) new_ltEs8(Nothing, Nothing, dch) -> True new_ltEs8(Just(xuu580), Nothing, dch) -> False new_lt23(xuu580, xuu590, ty_Int) -> new_lt12(xuu580, xuu590) new_esEs9(xuu3110000, xuu6000, ty_Integer) -> new_esEs20(xuu3110000, xuu6000) new_ltEs17(Right(xuu580), Right(xuu590), ddd, app(ty_Maybe, fgg)) -> new_ltEs8(xuu580, xuu590, fgg) new_esEs39(xuu580, xuu590, ty_Int) -> new_esEs14(xuu580, xuu590) new_esEs4(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs21(xuu100, xuu102, app(ty_Ratio, cgd)) -> new_ltEs18(xuu100, xuu102, cgd) new_compare24(xuu80, xuu81, False, gb, gc) -> new_compare11(xuu80, xuu81, new_ltEs5(xuu80, xuu81, gb), gb, gc) new_esEs27(xuu31100000, xuu60000, ty_Float) -> new_esEs15(xuu31100000, xuu60000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(xuu582, xuu592, ty_Ordering) -> new_ltEs9(xuu582, xuu592) new_compare29(Char(xuu3110000), Char(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_primEqNat0(Zero, Zero) -> True new_compare17(xuu156, xuu157, xuu158, xuu159, True, xuu161, ec, ed) -> new_compare10(xuu156, xuu157, xuu158, xuu159, True, ec, ed) new_ltEs16(xuu58, xuu59) -> new_fsEs(new_compare29(xuu58, xuu59)) new_compare13(Float(xuu3110000, Neg(xuu31100010)), Float(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Pos(xuu31100010)), Double(xuu6000, Neg(xuu60010))) -> new_compare14(new_sr(xuu3110000, Pos(xuu60010)), new_sr(Neg(xuu31100010), xuu6000)) new_compare28(Double(xuu3110000, Neg(xuu31100010)), Double(xuu6000, Pos(xuu60010))) -> new_compare14(new_sr(xuu3110000, Neg(xuu60010)), new_sr(Pos(xuu31100010), xuu6000)) new_lt21(xuu69, xuu72, app(ty_[], dgg)) -> new_lt7(xuu69, xuu72, dgg) new_esEs26(xuu580, xuu590, ty_Float) -> new_esEs15(xuu580, xuu590) new_asAs(False, xuu117) -> False new_esEs4(xuu3110001, xuu6001, app(app(ty_@2, fec), fed)) -> new_esEs19(xuu3110001, xuu6001, fec, fed) new_compare111(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, False, xuu178, fhf, fhg, fhh) -> new_compare112(xuu171, xuu172, xuu173, xuu174, xuu175, xuu176, xuu178, fhf, fhg, fhh) new_esEs7(xuu3110002, xuu6002, app(ty_Ratio, bgh)) -> new_esEs24(xuu3110002, xuu6002, bgh) new_esEs25(EQ, EQ) -> True new_ltEs9(EQ, EQ) -> True new_compare31(Right(xuu3110000), Right(xuu6000), cdg, cdh) -> new_compare27(xuu3110000, xuu6000, new_esEs11(xuu3110000, xuu6000, cdh), cdg, cdh) The set Q consists of the following terms: new_esEs7(x0, x1, ty_@0) new_compare210(x0, x1, x2, x3, True, x4, x5) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Char) new_lt19(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_ltEs9(EQ, EQ) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt23(x0, x1, ty_Integer) new_esEs25(LT, LT) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_lt9(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs11(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, x2, x3, False, x4, x5, x6) new_esEs26(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_compare31(Right(x0), Left(x1), x2, x3) new_compare31(Left(x0), Right(x1), x2, x3) new_ltEs22(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_lt18(x0, x1, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs35(x0, x1, ty_Int) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs12(Left(x0), Left(x1), ty_Int, x2) new_esEs23(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Succ(x1)) new_asAs(False, x0) new_esEs35(x0, x1, ty_@0) new_compare6([], [], x0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare31(Right(x0), Right(x1), x2, x3) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_lt19(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, ty_Float) new_lt4(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs12(Left(x0), Left(x1), ty_Float, x2) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs9(x0, x1, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Zero) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs26(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13([], :(x0, x1), x2) new_esEs7(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_lt21(x0, x1, ty_@0) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_compare8(False, False) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_lt19(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs19(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt20(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, LT) new_ltEs6(False, False) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Int) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs16(@0, @0) new_esEs34(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Bool) new_esEs21(Just(x0), Nothing, x1) new_esEs39(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs23(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_@0) new_lt8(x0, x1, x2) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs31(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_compare6(:(x0, x1), [], x2) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_compare30(LT, LT) new_lt19(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2) new_esEs17(True, True) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_compare9(@0, @0) new_lt4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Double) new_compare24(x0, x1, False, x2, x3) new_compare17(x0, x1, x2, x3, True, x4, x5, x6) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Nothing, Nothing, x0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Bool) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs25(EQ, EQ) new_not(True) new_esEs8(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(:(x0, x1), [], x2) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_lt23(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs33(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Double) new_primPlusNat1(x0, x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs17(False, True) new_esEs17(True, False) new_lt20(x0, x1, ty_Integer) new_ltEs10(x0, x1) new_esEs11(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, LT, x2) new_compare27(x0, x1, True, x2, x3) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Just(x0), Just(x1), x2) new_lt22(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_@0) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, ty_@0) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(True, True) new_pePe(True, x0) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Float) new_esEs12(Right(x0), Right(x1), x2, ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_sr(x0, x1) new_compare7(Nothing, Just(x0), x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare0(x0, x1, ty_@0) new_compare110(x0, x1, True, x2) new_compare8(True, True) new_fsEs(x0) new_esEs8(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Char) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Char) new_compare14(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, True, x4, x5) new_esEs7(x0, x1, ty_Double) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs24(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_not(False) new_ltEs21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_ltEs6(True, False) new_ltEs6(False, True) new_ltEs23(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs26(x0, x1, ty_Bool) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs12(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_ltEs18(x0, x1, x2) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, ty_Double) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Char) new_esEs13(:(x0, x1), :(x2, x3), x4) new_esEs17(False, False) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_compare0(x0, x1, ty_Double) new_compare0(x0, x1, app(ty_Maybe, x2)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Int) new_pePe(False, x0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs12(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Bool) new_esEs13([], [], x0) new_lt13(x0, x1, x2, x3, x4) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_compare12(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs25(GT, GT) new_compare8(True, False) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_compare8(False, True) new_esEs32(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_esEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs8(x0, x1, ty_Char) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, x2) new_esEs38(x0, x1, ty_Integer) new_compare30(EQ, EQ) new_esEs12(Right(x0), Right(x1), x2, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs12(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(GT, GT) new_lt23(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1) new_ltEs20(x0, x1, ty_Bool) new_ltEs5(x0, x1, ty_Double) new_esEs27(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_asAs(True, x0) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqNat0(Succ(x0), Zero) new_esEs21(Nothing, Just(x0), x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_compare0(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs22(Char(x0), Char(x1)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_@0) new_compare25(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_sr0(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2, x3) new_lt12(x0, x1) new_lt11(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_compare7(Nothing, Nothing, x0) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(Right(x0), Right(x1), x2, ty_Integer) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs36(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs24(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_esEs12(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Zero, Zero) new_esEs37(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs12(Right(x0), Right(x1), x2, ty_Double) new_ltEs22(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Int) new_ltEs4(x0, x1, x2) new_esEs6(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Double) new_esEs12(Left(x0), Right(x1), x2, x3) new_esEs12(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Bool) new_lt19(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare29(Char(x0), Char(x1)) new_esEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(Left(x0), Left(x1), x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Float) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs12(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare6(:(x0, x1), :(x2, x3), x4) new_esEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt20(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_esEs12(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3) new_lt10(x0, x1) new_primCompAux00(x0, x1, GT, x2) new_lt4(x0, x1, ty_Float) new_esEs20(Integer(x0), Integer(x1)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_compare30(GT, GT) new_esEs33(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs22(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Integer) new_lt4(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs32(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_ltEs8(Nothing, Just(x0), x1) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_esEs35(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(x0, x1) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt22(x0, x1, ty_Int) new_compare25(x0, x1, True, x2) new_lt15(x0, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), ty_Integer, x2) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs36(x0, x1, ty_@0) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare7(Just(x0), Nothing, x1) new_ltEs5(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_lt4(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare6([], :(x0, x1), x2) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs15(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3, x4) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (41) 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_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) -> new_addToFM_C(xuu64, :(xuu311000, xuu311001), xuu31101, bb, bc) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C(Branch([], xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C10(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, GT, bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C(Branch(:(xuu600, xuu601), xuu61, xuu62, xuu63, xuu64), :(xuu311000, xuu311001), xuu31101, bb, bc) -> new_addToFM_C2(xuu600, xuu601, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu311001, xuu31101, new_primCompAux1(xuu311000, xuu600, xuu311001, xuu601, bb), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu23, :(xuu25, xuu26), xuu27, h, ba) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 *new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu24, :(xuu25, xuu26), xuu27, h, ba) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 *new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 11, 11 >= 12 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare6(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12 *new_addToFM_C2(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 10, 12 >= 11 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu311000000), Succ(xuu600000)) -> new_primEqNat(xuu311000000, xuu600000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (44) 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(xuu311000000), Succ(xuu600000)) -> new_primEqNat(xuu311000000, xuu600000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (45) YES ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primMinusNat(xuu19700, xuu19600) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (47) 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_primMinusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primMinusNat(xuu19700, xuu19600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (48) YES ---------------------------------------- (49) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu19700), Succ(xuu19600)) -> new_primPlusNat(xuu19700, xuu19600) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) 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(xuu19700), Succ(xuu19600)) -> new_primPlusNat(xuu19700, xuu19600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (51) YES