/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) DependencyGraphProof [EQUIVALENT, 0 ms] (22) QDP (23) QDPSizeChangeProof [EQUIVALENT, 299 ms] (24) YES (25) QDP (26) DependencyGraphProof [EQUIVALENT, 0 ms] (27) AND (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] (33) YES (34) QDP (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] (36) YES (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 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 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; 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 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 b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = 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; } ---------------------------------------- (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 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 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 _ _ 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 :: 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; } ---------------------------------------- (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 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 b a; 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 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; 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 = 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 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 _ _ _ _) = 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 :: 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; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 a b -> (a,b); 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 -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = 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 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 _ _ _ _) = 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 :: 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; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 = 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 a b -> 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; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x 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; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "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_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_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_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_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 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 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 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 a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 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 -> 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; 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 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 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 a b -> 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'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " 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 "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " 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 "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_l wxy wxz wyu wyv = sizeFM wxy; " "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 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "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); " "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; " "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; " "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; " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM 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_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 wxz wyu fm_lr fm_r); " "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 wxz wyu fm_l 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; " "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); " "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); " "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 wxz wyu fm_lrr 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; " 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 "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_size wyx wyy wyz = sizeFM wyy; " "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; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; " "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; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; " 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 wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; " 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 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 (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 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> 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; 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 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt 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 wxz wyu 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 wxz wyu 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 wxz wyu 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 wxz wyu fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz 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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 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 wyy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> 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; } ---------------------------------------- (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 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 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 a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 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; 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 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt 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))))))) wxz wyu 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))))))))))))) wxz wyu 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))))) wxz wyu 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)))))))))) wxz wyu fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz 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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (Pos (Succ Zero) + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 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 wyy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> 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.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];3680[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 3680[label="",style="solid", color="burlywood", weight=9]; 3680 -> 7[label="",style="solid", color="burlywood", weight=3]; 3681[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3681[label="",style="solid", color="burlywood", weight=9]; 3681 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9 -> 6[label="",style="dashed", color="red", weight=0]; 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];3682[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3682[label="",style="solid", color="burlywood", weight=9]; 3682 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];3683[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3683[label="",style="solid", color="burlywood", weight=9]; 3683 -> 15[label="",style="solid", color="burlywood", weight=3]; 3684[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 3684[label="",style="solid", color="burlywood", weight=9]; 3684 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 21 -> 24[label="",style="dashed", color="green", weight=3]; 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare xuu400 xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3685[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];22 -> 3685[label="",style="solid", color="burlywood", weight=9]; 3685 -> 25[label="",style="solid", color="burlywood", weight=3]; 3686[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];22 -> 3686[label="",style="solid", color="burlywood", weight=9]; 3686 -> 26[label="",style="solid", color="burlywood", weight=3]; 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 27[label="",style="solid", color="black", weight=3]; 24 -> 23[label="",style="dashed", color="red", weight=0]; 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3687[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];25 -> 3687[label="",style="solid", color="burlywood", weight=9]; 3687 -> 28[label="",style="solid", color="burlywood", weight=3]; 3688[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];25 -> 3688[label="",style="solid", color="burlywood", weight=9]; 3688 -> 29[label="",style="solid", color="burlywood", weight=3]; 26[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3689[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];26 -> 3689[label="",style="solid", color="burlywood", weight=9]; 3689 -> 30[label="",style="solid", color="burlywood", weight=3]; 3690[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];26 -> 3690[label="",style="solid", color="burlywood", weight=9]; 3690 -> 31[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) (xuu300 : xuu301) == LT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) [] == LT)",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] (xuu300 : xuu301) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 32 -> 119[label="",style="dashed", color="red", weight=0]; 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (primCompAux xuu4000 xuu300 (compare xuu4001 xuu301) == LT)",fontsize=16,color="magenta"];32 -> 120[label="",style="dashed", color="magenta", weight=3]; 32 -> 121[label="",style="dashed", color="magenta", weight=3]; 32 -> 122[label="",style="dashed", color="magenta", weight=3]; 32 -> 123[label="",style="dashed", color="magenta", weight=3]; 32 -> 124[label="",style="dashed", color="magenta", weight=3]; 32 -> 125[label="",style="dashed", color="magenta", weight=3]; 32 -> 126[label="",style="dashed", color="magenta", weight=3]; 32 -> 127[label="",style="dashed", color="magenta", weight=3]; 32 -> 128[label="",style="dashed", color="magenta", weight=3]; 32 -> 129[label="",style="dashed", color="magenta", weight=3]; 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (GT == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 (LT == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (EQ == LT)",fontsize=16,color="black",shape="box"];35 -> 39[label="",style="solid", color="black", weight=3]; 120[label="xuu32",fontsize=16,color="green",shape="box"];121[label="primCompAux xuu4000 xuu300 (compare xuu4001 xuu301)",fontsize=16,color="black",shape="triangle"];121 -> 144[label="",style="solid", color="black", weight=3]; 122[label="xuu401",fontsize=16,color="green",shape="box"];123[label="xuu4001",fontsize=16,color="green",shape="box"];124[label="xuu4000",fontsize=16,color="green",shape="box"];125[label="xuu301",fontsize=16,color="green",shape="box"];126[label="xuu33",fontsize=16,color="green",shape="box"];127[label="xuu300",fontsize=16,color="green",shape="box"];128[label="xuu34",fontsize=16,color="green",shape="box"];129[label="xuu31",fontsize=16,color="green",shape="box"];119[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu29 == LT)",fontsize=16,color="burlywood",shape="triangle"];3691[label="xuu29/LT",fontsize=10,color="white",style="solid",shape="box"];119 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 145[label="",style="solid", color="burlywood", weight=3]; 3692[label="xuu29/EQ",fontsize=10,color="white",style="solid",shape="box"];119 -> 3692[label="",style="solid", color="burlywood", weight=9]; 3692 -> 146[label="",style="solid", color="burlywood", weight=3]; 3693[label="xuu29/GT",fontsize=10,color="white",style="solid",shape="box"];119 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 147[label="",style="solid", color="burlywood", weight=3]; 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="black",shape="box"];37 -> 51[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];38 -> 52[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="black",shape="box"];39 -> 53[label="",style="solid", color="black", weight=3]; 144 -> 157[label="",style="dashed", color="red", weight=0]; 144[label="primCompAux0 (compare xuu4001 xuu301) (compare xuu4000 xuu300)",fontsize=16,color="magenta"];144 -> 158[label="",style="dashed", color="magenta", weight=3]; 144 -> 159[label="",style="dashed", color="magenta", weight=3]; 144 -> 160[label="",style="dashed", color="magenta", weight=3]; 145[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (LT == LT)",fontsize=16,color="black",shape="box"];145 -> 161[label="",style="solid", color="black", weight=3]; 146[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (EQ == LT)",fontsize=16,color="black",shape="box"];146 -> 162[label="",style="solid", color="black", weight=3]; 147[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (GT == LT)",fontsize=16,color="black",shape="box"];147 -> 163[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (xuu4000 : xuu4001 > [])",fontsize=16,color="black",shape="box"];51 -> 71[label="",style="solid", color="black", weight=3]; 52 -> 72[label="",style="dashed", color="red", weight=0]; 52[label="FiniteMap.mkBalBranch (xuu300 : xuu301) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 [] xuu401) xuu34",fontsize=16,color="magenta"];52 -> 73[label="",style="dashed", color="magenta", weight=3]; 53[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 ([] > [])",fontsize=16,color="black",shape="box"];53 -> 74[label="",style="solid", color="black", weight=3]; 158[label="compare xuu4000 xuu300",fontsize=16,color="blue",shape="box"];3694[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 164[label="",style="solid", color="blue", weight=3]; 3695[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 165[label="",style="solid", color="blue", weight=3]; 3696[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 166[label="",style="solid", color="blue", weight=3]; 3697[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 167[label="",style="solid", color="blue", weight=3]; 3698[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 168[label="",style="solid", color="blue", weight=3]; 3699[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 169[label="",style="solid", color="blue", weight=3]; 3700[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 170[label="",style="solid", color="blue", weight=3]; 3701[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 171[label="",style="solid", color="blue", weight=3]; 3702[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 172[label="",style="solid", color="blue", weight=3]; 3703[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 173[label="",style="solid", color="blue", weight=3]; 3704[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 174[label="",style="solid", color="blue", weight=3]; 3705[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 175[label="",style="solid", color="blue", weight=3]; 3706[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 176[label="",style="solid", color="blue", weight=3]; 3707[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 177[label="",style="solid", color="blue", weight=3]; 159[label="xuu4001",fontsize=16,color="green",shape="box"];160[label="xuu301",fontsize=16,color="green",shape="box"];157[label="primCompAux0 (compare xuu34 xuu35) xuu36",fontsize=16,color="burlywood",shape="triangle"];3708[label="xuu36/LT",fontsize=10,color="white",style="solid",shape="box"];157 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 178[label="",style="solid", color="burlywood", weight=3]; 3709[label="xuu36/EQ",fontsize=10,color="white",style="solid",shape="box"];157 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 179[label="",style="solid", color="burlywood", weight=3]; 3710[label="xuu36/GT",fontsize=10,color="white",style="solid",shape="box"];157 -> 3710[label="",style="solid", color="burlywood", weight=9]; 3710 -> 180[label="",style="solid", color="burlywood", weight=3]; 161[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];161 -> 188[label="",style="solid", color="black", weight=3]; 162[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="black",shape="triangle"];162 -> 189[label="",style="solid", color="black", weight=3]; 163 -> 162[label="",style="dashed", color="red", weight=0]; 163[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="magenta"];71 -> 93[label="",style="dashed", color="red", weight=0]; 71[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) [] == GT)",fontsize=16,color="magenta"];71 -> 94[label="",style="dashed", color="magenta", weight=3]; 73 -> 14[label="",style="dashed", color="red", weight=0]; 73[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 [] xuu401",fontsize=16,color="magenta"];73 -> 95[label="",style="dashed", color="magenta", weight=3]; 73 -> 96[label="",style="dashed", color="magenta", weight=3]; 72[label="FiniteMap.mkBalBranch (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="black",shape="triangle"];72 -> 97[label="",style="solid", color="black", weight=3]; 74 -> 98[label="",style="dashed", color="red", weight=0]; 74[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] [] == GT)",fontsize=16,color="magenta"];74 -> 99[label="",style="dashed", color="magenta", weight=3]; 164[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3711[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];164 -> 3711[label="",style="solid", color="burlywood", weight=9]; 3711 -> 190[label="",style="solid", color="burlywood", weight=3]; 165[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3712[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];165 -> 3712[label="",style="solid", color="burlywood", weight=9]; 3712 -> 191[label="",style="solid", color="burlywood", weight=3]; 3713[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];165 -> 3713[label="",style="solid", color="burlywood", weight=9]; 3713 -> 192[label="",style="solid", color="burlywood", weight=3]; 166[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3714[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];166 -> 3714[label="",style="solid", color="burlywood", weight=9]; 3714 -> 193[label="",style="solid", color="burlywood", weight=3]; 167[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];167 -> 194[label="",style="solid", color="black", weight=3]; 168[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];168 -> 195[label="",style="solid", color="black", weight=3]; 169[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];169 -> 196[label="",style="solid", color="black", weight=3]; 170[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3715[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];170 -> 3715[label="",style="solid", color="burlywood", weight=9]; 3715 -> 197[label="",style="solid", color="burlywood", weight=3]; 171[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];171 -> 198[label="",style="solid", color="black", weight=3]; 172[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];172 -> 199[label="",style="solid", color="black", weight=3]; 173[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];173 -> 200[label="",style="solid", color="black", weight=3]; 174[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];174 -> 201[label="",style="solid", color="black", weight=3]; 175[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];175 -> 202[label="",style="solid", color="black", weight=3]; 176[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];176 -> 203[label="",style="solid", color="black", weight=3]; 177[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];177 -> 204[label="",style="solid", color="black", weight=3]; 178[label="primCompAux0 (compare xuu34 xuu35) LT",fontsize=16,color="black",shape="box"];178 -> 205[label="",style="solid", color="black", weight=3]; 179[label="primCompAux0 (compare xuu34 xuu35) EQ",fontsize=16,color="black",shape="box"];179 -> 206[label="",style="solid", color="black", weight=3]; 180[label="primCompAux0 (compare xuu34 xuu35) GT",fontsize=16,color="black",shape="box"];180 -> 207[label="",style="solid", color="black", weight=3]; 188 -> 72[label="",style="dashed", color="red", weight=0]; 188[label="FiniteMap.mkBalBranch (xuu16 : xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22 : xuu23) xuu24) xuu21",fontsize=16,color="magenta"];188 -> 212[label="",style="dashed", color="magenta", weight=3]; 188 -> 213[label="",style="dashed", color="magenta", weight=3]; 188 -> 214[label="",style="dashed", color="magenta", weight=3]; 188 -> 215[label="",style="dashed", color="magenta", weight=3]; 188 -> 216[label="",style="dashed", color="magenta", weight=3]; 189[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu22 : xuu23 > xuu16 : xuu17)",fontsize=16,color="black",shape="box"];189 -> 217[label="",style="solid", color="black", weight=3]; 94[label="compare (xuu4000 : xuu4001) []",fontsize=16,color="black",shape="box"];94 -> 148[label="",style="solid", color="black", weight=3]; 93[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (xuu27 == GT)",fontsize=16,color="burlywood",shape="triangle"];3716[label="xuu27/LT",fontsize=10,color="white",style="solid",shape="box"];93 -> 3716[label="",style="solid", color="burlywood", weight=9]; 3716 -> 149[label="",style="solid", color="burlywood", weight=3]; 3717[label="xuu27/EQ",fontsize=10,color="white",style="solid",shape="box"];93 -> 3717[label="",style="solid", color="burlywood", weight=9]; 3717 -> 150[label="",style="solid", color="burlywood", weight=3]; 3718[label="xuu27/GT",fontsize=10,color="white",style="solid",shape="box"];93 -> 3718[label="",style="solid", color="burlywood", weight=9]; 3718 -> 151[label="",style="solid", color="burlywood", weight=3]; 95[label="xuu33",fontsize=16,color="green",shape="box"];96[label="[]",fontsize=16,color="green",shape="box"];97[label="FiniteMap.mkBalBranch6 (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="black",shape="box"];97 -> 152[label="",style="solid", color="black", weight=3]; 99[label="compare [] []",fontsize=16,color="black",shape="box"];99 -> 153[label="",style="solid", color="black", weight=3]; 98[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (xuu28 == GT)",fontsize=16,color="burlywood",shape="triangle"];3719[label="xuu28/LT",fontsize=10,color="white",style="solid",shape="box"];98 -> 3719[label="",style="solid", color="burlywood", weight=9]; 3719 -> 154[label="",style="solid", color="burlywood", weight=3]; 3720[label="xuu28/EQ",fontsize=10,color="white",style="solid",shape="box"];98 -> 3720[label="",style="solid", color="burlywood", weight=9]; 3720 -> 155[label="",style="solid", color="burlywood", weight=3]; 3721[label="xuu28/GT",fontsize=10,color="white",style="solid",shape="box"];98 -> 3721[label="",style="solid", color="burlywood", weight=9]; 3721 -> 156[label="",style="solid", color="burlywood", weight=3]; 190[label="compare () xuu300",fontsize=16,color="burlywood",shape="box"];3722[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];190 -> 3722[label="",style="solid", color="burlywood", weight=9]; 3722 -> 218[label="",style="solid", color="burlywood", weight=3]; 191[label="compare (xuu40000 : xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3723[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];191 -> 3723[label="",style="solid", color="burlywood", weight=9]; 3723 -> 219[label="",style="solid", color="burlywood", weight=3]; 3724[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];191 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 220[label="",style="solid", color="burlywood", weight=3]; 192[label="compare [] xuu300",fontsize=16,color="burlywood",shape="box"];3725[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];192 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 221[label="",style="solid", color="burlywood", weight=3]; 3726[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];192 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 222[label="",style="solid", color="burlywood", weight=3]; 193[label="compare (xuu40000 :% xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3727[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];193 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 223[label="",style="solid", color="burlywood", weight=3]; 194[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];194 -> 224[label="",style="solid", color="black", weight=3]; 195[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];195 -> 225[label="",style="solid", color="black", weight=3]; 196[label="primCmpFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3728[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];196 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 226[label="",style="solid", color="burlywood", weight=3]; 197[label="compare (Integer xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3729[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];197 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 227[label="",style="solid", color="burlywood", weight=3]; 198[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];198 -> 228[label="",style="solid", color="black", weight=3]; 199[label="primCmpInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3730[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];199 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 229[label="",style="solid", color="burlywood", weight=3]; 3731[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];199 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 230[label="",style="solid", color="burlywood", weight=3]; 200[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];200 -> 231[label="",style="solid", color="black", weight=3]; 201[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];201 -> 232[label="",style="solid", color="black", weight=3]; 202[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];202 -> 233[label="",style="solid", color="black", weight=3]; 203[label="primCmpDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3732[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];203 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 234[label="",style="solid", color="burlywood", weight=3]; 204[label="primCmpChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3733[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];204 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 235[label="",style="solid", color="burlywood", weight=3]; 205[label="LT",fontsize=16,color="green",shape="box"];206[label="compare xuu34 xuu35",fontsize=16,color="blue",shape="box"];3734[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 236[label="",style="solid", color="blue", weight=3]; 3735[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 237[label="",style="solid", color="blue", weight=3]; 3736[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 238[label="",style="solid", color="blue", weight=3]; 3737[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 239[label="",style="solid", color="blue", weight=3]; 3738[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 240[label="",style="solid", color="blue", weight=3]; 3739[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 241[label="",style="solid", color="blue", weight=3]; 3740[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 242[label="",style="solid", color="blue", weight=3]; 3741[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 243[label="",style="solid", color="blue", weight=3]; 3742[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 244[label="",style="solid", color="blue", weight=3]; 3743[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 245[label="",style="solid", color="blue", weight=3]; 3744[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 246[label="",style="solid", color="blue", weight=3]; 3745[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 247[label="",style="solid", color="blue", weight=3]; 3746[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 248[label="",style="solid", color="blue", weight=3]; 3747[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 249[label="",style="solid", color="blue", weight=3]; 207[label="GT",fontsize=16,color="green",shape="box"];212[label="xuu18",fontsize=16,color="green",shape="box"];213[label="xuu16",fontsize=16,color="green",shape="box"];214[label="xuu21",fontsize=16,color="green",shape="box"];215[label="xuu17",fontsize=16,color="green",shape="box"];216 -> 14[label="",style="dashed", color="red", weight=0]; 216[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22 : xuu23) xuu24",fontsize=16,color="magenta"];216 -> 256[label="",style="dashed", color="magenta", weight=3]; 216 -> 257[label="",style="dashed", color="magenta", weight=3]; 216 -> 258[label="",style="dashed", color="magenta", weight=3]; 217 -> 259[label="",style="dashed", color="red", weight=0]; 217[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (compare (xuu22 : xuu23) (xuu16 : xuu17) == GT)",fontsize=16,color="magenta"];217 -> 260[label="",style="dashed", color="magenta", weight=3]; 148[label="GT",fontsize=16,color="green",shape="box"];149[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (LT == GT)",fontsize=16,color="black",shape="box"];149 -> 181[label="",style="solid", color="black", weight=3]; 150[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (EQ == GT)",fontsize=16,color="black",shape="box"];150 -> 182[label="",style="solid", color="black", weight=3]; 151[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (GT == GT)",fontsize=16,color="black",shape="box"];151 -> 183[label="",style="solid", color="black", weight=3]; 152[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];152 -> 184[label="",style="solid", color="black", weight=3]; 153[label="EQ",fontsize=16,color="green",shape="box"];154[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (LT == GT)",fontsize=16,color="black",shape="box"];154 -> 185[label="",style="solid", color="black", weight=3]; 155[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (EQ == GT)",fontsize=16,color="black",shape="box"];155 -> 186[label="",style="solid", color="black", weight=3]; 156[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (GT == GT)",fontsize=16,color="black",shape="box"];156 -> 187[label="",style="solid", color="black", weight=3]; 218[label="compare () ()",fontsize=16,color="black",shape="box"];218 -> 261[label="",style="solid", color="black", weight=3]; 219[label="compare (xuu40000 : xuu40001) (xuu3000 : xuu3001)",fontsize=16,color="black",shape="box"];219 -> 262[label="",style="solid", color="black", weight=3]; 220[label="compare (xuu40000 : xuu40001) []",fontsize=16,color="black",shape="box"];220 -> 263[label="",style="solid", color="black", weight=3]; 221[label="compare [] (xuu3000 : xuu3001)",fontsize=16,color="black",shape="box"];221 -> 264[label="",style="solid", color="black", weight=3]; 222[label="compare [] []",fontsize=16,color="black",shape="box"];222 -> 265[label="",style="solid", color="black", weight=3]; 223[label="compare (xuu40000 :% xuu40001) (xuu3000 :% xuu3001)",fontsize=16,color="black",shape="box"];223 -> 266[label="",style="solid", color="black", weight=3]; 224[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3748[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];224 -> 3748[label="",style="solid", color="burlywood", weight=9]; 3748 -> 267[label="",style="solid", color="burlywood", weight=3]; 225[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3749[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];225 -> 3749[label="",style="solid", color="burlywood", weight=9]; 3749 -> 268[label="",style="solid", color="burlywood", weight=3]; 3750[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];225 -> 3750[label="",style="solid", color="burlywood", weight=9]; 3750 -> 269[label="",style="solid", color="burlywood", weight=3]; 226[label="primCmpFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3751[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];226 -> 3751[label="",style="solid", color="burlywood", weight=9]; 3751 -> 270[label="",style="solid", color="burlywood", weight=3]; 3752[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];226 -> 3752[label="",style="solid", color="burlywood", weight=9]; 3752 -> 271[label="",style="solid", color="burlywood", weight=3]; 227[label="compare (Integer xuu40000) (Integer xuu3000)",fontsize=16,color="black",shape="box"];227 -> 272[label="",style="solid", color="black", weight=3]; 228[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3753[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];228 -> 3753[label="",style="solid", color="burlywood", weight=9]; 3753 -> 273[label="",style="solid", color="burlywood", weight=3]; 3754[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];228 -> 3754[label="",style="solid", color="burlywood", weight=9]; 3754 -> 274[label="",style="solid", color="burlywood", weight=3]; 229[label="primCmpInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3755[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];229 -> 3755[label="",style="solid", color="burlywood", weight=9]; 3755 -> 275[label="",style="solid", color="burlywood", weight=3]; 3756[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];229 -> 3756[label="",style="solid", color="burlywood", weight=9]; 3756 -> 276[label="",style="solid", color="burlywood", weight=3]; 230[label="primCmpInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3757[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];230 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 277[label="",style="solid", color="burlywood", weight=3]; 3758[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];230 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 278[label="",style="solid", color="burlywood", weight=3]; 231[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3759[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];231 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 279[label="",style="solid", color="burlywood", weight=3]; 3760[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];231 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 280[label="",style="solid", color="burlywood", weight=3]; 3761[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];231 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 281[label="",style="solid", color="burlywood", weight=3]; 232[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3762[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];232 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 282[label="",style="solid", color="burlywood", weight=3]; 3763[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];232 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 283[label="",style="solid", color="burlywood", weight=3]; 233[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3764[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];233 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 284[label="",style="solid", color="burlywood", weight=3]; 234[label="primCmpDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3765[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];234 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 285[label="",style="solid", color="burlywood", weight=3]; 3766[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];234 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 286[label="",style="solid", color="burlywood", weight=3]; 235[label="primCmpChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3767[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];235 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 287[label="",style="solid", color="burlywood", weight=3]; 236 -> 164[label="",style="dashed", color="red", weight=0]; 236[label="compare xuu34 xuu35",fontsize=16,color="magenta"];236 -> 288[label="",style="dashed", color="magenta", weight=3]; 236 -> 289[label="",style="dashed", color="magenta", weight=3]; 237 -> 165[label="",style="dashed", color="red", weight=0]; 237[label="compare xuu34 xuu35",fontsize=16,color="magenta"];237 -> 290[label="",style="dashed", color="magenta", weight=3]; 237 -> 291[label="",style="dashed", color="magenta", weight=3]; 238 -> 166[label="",style="dashed", color="red", weight=0]; 238[label="compare xuu34 xuu35",fontsize=16,color="magenta"];238 -> 292[label="",style="dashed", color="magenta", weight=3]; 238 -> 293[label="",style="dashed", color="magenta", weight=3]; 239 -> 167[label="",style="dashed", color="red", weight=0]; 239[label="compare xuu34 xuu35",fontsize=16,color="magenta"];239 -> 294[label="",style="dashed", color="magenta", weight=3]; 239 -> 295[label="",style="dashed", color="magenta", weight=3]; 240 -> 168[label="",style="dashed", color="red", weight=0]; 240[label="compare xuu34 xuu35",fontsize=16,color="magenta"];240 -> 296[label="",style="dashed", color="magenta", weight=3]; 240 -> 297[label="",style="dashed", color="magenta", weight=3]; 241 -> 169[label="",style="dashed", color="red", weight=0]; 241[label="compare xuu34 xuu35",fontsize=16,color="magenta"];241 -> 298[label="",style="dashed", color="magenta", weight=3]; 241 -> 299[label="",style="dashed", color="magenta", weight=3]; 242 -> 170[label="",style="dashed", color="red", weight=0]; 242[label="compare xuu34 xuu35",fontsize=16,color="magenta"];242 -> 300[label="",style="dashed", color="magenta", weight=3]; 242 -> 301[label="",style="dashed", color="magenta", weight=3]; 243 -> 171[label="",style="dashed", color="red", weight=0]; 243[label="compare xuu34 xuu35",fontsize=16,color="magenta"];243 -> 302[label="",style="dashed", color="magenta", weight=3]; 243 -> 303[label="",style="dashed", color="magenta", weight=3]; 244 -> 172[label="",style="dashed", color="red", weight=0]; 244[label="compare xuu34 xuu35",fontsize=16,color="magenta"];244 -> 304[label="",style="dashed", color="magenta", weight=3]; 244 -> 305[label="",style="dashed", color="magenta", weight=3]; 245 -> 173[label="",style="dashed", color="red", weight=0]; 245[label="compare xuu34 xuu35",fontsize=16,color="magenta"];245 -> 306[label="",style="dashed", color="magenta", weight=3]; 245 -> 307[label="",style="dashed", color="magenta", weight=3]; 246 -> 174[label="",style="dashed", color="red", weight=0]; 246[label="compare xuu34 xuu35",fontsize=16,color="magenta"];246 -> 308[label="",style="dashed", color="magenta", weight=3]; 246 -> 309[label="",style="dashed", color="magenta", weight=3]; 247 -> 175[label="",style="dashed", color="red", weight=0]; 247[label="compare xuu34 xuu35",fontsize=16,color="magenta"];247 -> 310[label="",style="dashed", color="magenta", weight=3]; 247 -> 311[label="",style="dashed", color="magenta", weight=3]; 248 -> 176[label="",style="dashed", color="red", weight=0]; 248[label="compare xuu34 xuu35",fontsize=16,color="magenta"];248 -> 312[label="",style="dashed", color="magenta", weight=3]; 248 -> 313[label="",style="dashed", color="magenta", weight=3]; 249 -> 177[label="",style="dashed", color="red", weight=0]; 249[label="compare xuu34 xuu35",fontsize=16,color="magenta"];249 -> 314[label="",style="dashed", color="magenta", weight=3]; 249 -> 315[label="",style="dashed", color="magenta", weight=3]; 256[label="xuu20",fontsize=16,color="green",shape="box"];257[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];258[label="xuu24",fontsize=16,color="green",shape="box"];260 -> 165[label="",style="dashed", color="red", weight=0]; 260[label="compare (xuu22 : xuu23) (xuu16 : xuu17)",fontsize=16,color="magenta"];260 -> 316[label="",style="dashed", color="magenta", weight=3]; 260 -> 317[label="",style="dashed", color="magenta", weight=3]; 259[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu39 == GT)",fontsize=16,color="burlywood",shape="triangle"];3768[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 318[label="",style="solid", color="burlywood", weight=3]; 3769[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];259 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 319[label="",style="solid", color="burlywood", weight=3]; 3770[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 320[label="",style="solid", color="burlywood", weight=3]; 181[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="black",shape="triangle"];181 -> 208[label="",style="solid", color="black", weight=3]; 182 -> 181[label="",style="dashed", color="red", weight=0]; 182[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="magenta"];183[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 True",fontsize=16,color="black",shape="box"];183 -> 209[label="",style="solid", color="black", weight=3]; 184 -> 210[label="",style="dashed", color="red", weight=0]; 184[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (compare (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];184 -> 211[label="",style="dashed", color="magenta", weight=3]; 185[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="black",shape="triangle"];185 -> 250[label="",style="solid", color="black", weight=3]; 186 -> 185[label="",style="dashed", color="red", weight=0]; 186[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="magenta"];187[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];187 -> 251[label="",style="solid", color="black", weight=3]; 261[label="EQ",fontsize=16,color="green",shape="box"];262 -> 121[label="",style="dashed", color="red", weight=0]; 262[label="primCompAux xuu40000 xuu3000 (compare xuu40001 xuu3001)",fontsize=16,color="magenta"];262 -> 333[label="",style="dashed", color="magenta", weight=3]; 262 -> 334[label="",style="dashed", color="magenta", weight=3]; 262 -> 335[label="",style="dashed", color="magenta", weight=3]; 262 -> 336[label="",style="dashed", color="magenta", weight=3]; 263[label="GT",fontsize=16,color="green",shape="box"];264[label="LT",fontsize=16,color="green",shape="box"];265[label="EQ",fontsize=16,color="green",shape="box"];266[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="blue",shape="box"];3771[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];266 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 337[label="",style="solid", color="blue", weight=3]; 3772[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];266 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 338[label="",style="solid", color="blue", weight=3]; 267[label="compare2 (xuu40000,xuu40001) xuu300 ((xuu40000,xuu40001) == xuu300)",fontsize=16,color="burlywood",shape="box"];3773[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];267 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 339[label="",style="solid", color="burlywood", weight=3]; 268[label="compare2 Nothing xuu300 (Nothing == xuu300)",fontsize=16,color="burlywood",shape="box"];3774[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];268 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 340[label="",style="solid", color="burlywood", weight=3]; 3775[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 341[label="",style="solid", color="burlywood", weight=3]; 269[label="compare2 (Just xuu40000) xuu300 (Just xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3776[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];269 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 342[label="",style="solid", color="burlywood", weight=3]; 3777[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];269 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 343[label="",style="solid", color="burlywood", weight=3]; 270[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3778[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];270 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 344[label="",style="solid", color="burlywood", weight=3]; 271[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3779[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];271 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 345[label="",style="solid", color="burlywood", weight=3]; 272 -> 199[label="",style="dashed", color="red", weight=0]; 272[label="primCmpInt xuu40000 xuu3000",fontsize=16,color="magenta"];272 -> 346[label="",style="dashed", color="magenta", weight=3]; 272 -> 347[label="",style="dashed", color="magenta", weight=3]; 273[label="compare2 (Left xuu40000) xuu300 (Left xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3780[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 348[label="",style="solid", color="burlywood", weight=3]; 3781[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 349[label="",style="solid", color="burlywood", weight=3]; 274[label="compare2 (Right xuu40000) xuu300 (Right xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3782[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 350[label="",style="solid", color="burlywood", weight=3]; 3783[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];274 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 351[label="",style="solid", color="burlywood", weight=3]; 275[label="primCmpInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3784[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 352[label="",style="solid", color="burlywood", weight=3]; 3785[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];275 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 353[label="",style="solid", color="burlywood", weight=3]; 276[label="primCmpInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3786[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 354[label="",style="solid", color="burlywood", weight=3]; 3787[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];276 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 355[label="",style="solid", color="burlywood", weight=3]; 277[label="primCmpInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3788[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];277 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 356[label="",style="solid", color="burlywood", weight=3]; 3789[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];277 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 357[label="",style="solid", color="burlywood", weight=3]; 278[label="primCmpInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3790[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 358[label="",style="solid", color="burlywood", weight=3]; 3791[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 359[label="",style="solid", color="burlywood", weight=3]; 279[label="compare2 LT xuu300 (LT == xuu300)",fontsize=16,color="burlywood",shape="box"];3792[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 360[label="",style="solid", color="burlywood", weight=3]; 3793[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];279 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 361[label="",style="solid", color="burlywood", weight=3]; 3794[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];279 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 362[label="",style="solid", color="burlywood", weight=3]; 280[label="compare2 EQ xuu300 (EQ == xuu300)",fontsize=16,color="burlywood",shape="box"];3795[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];280 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 363[label="",style="solid", color="burlywood", weight=3]; 3796[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];280 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 364[label="",style="solid", color="burlywood", weight=3]; 3797[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];280 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 365[label="",style="solid", color="burlywood", weight=3]; 281[label="compare2 GT xuu300 (GT == xuu300)",fontsize=16,color="burlywood",shape="box"];3798[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];281 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 366[label="",style="solid", color="burlywood", weight=3]; 3799[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];281 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 367[label="",style="solid", color="burlywood", weight=3]; 3800[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];281 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 368[label="",style="solid", color="burlywood", weight=3]; 282[label="compare2 False xuu300 (False == xuu300)",fontsize=16,color="burlywood",shape="box"];3801[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];282 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 369[label="",style="solid", color="burlywood", weight=3]; 3802[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];282 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 370[label="",style="solid", color="burlywood", weight=3]; 283[label="compare2 True xuu300 (True == xuu300)",fontsize=16,color="burlywood",shape="box"];3803[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];283 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 371[label="",style="solid", color="burlywood", weight=3]; 3804[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];283 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 372[label="",style="solid", color="burlywood", weight=3]; 284[label="compare2 (xuu40000,xuu40001,xuu40002) xuu300 ((xuu40000,xuu40001,xuu40002) == xuu300)",fontsize=16,color="burlywood",shape="box"];3805[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];284 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 373[label="",style="solid", color="burlywood", weight=3]; 285[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3806[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];285 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 374[label="",style="solid", color="burlywood", weight=3]; 286[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3807[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];286 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 375[label="",style="solid", color="burlywood", weight=3]; 287[label="primCmpChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];287 -> 376[label="",style="solid", color="black", weight=3]; 288[label="xuu35",fontsize=16,color="green",shape="box"];289[label="xuu34",fontsize=16,color="green",shape="box"];290[label="xuu35",fontsize=16,color="green",shape="box"];291[label="xuu34",fontsize=16,color="green",shape="box"];292[label="xuu35",fontsize=16,color="green",shape="box"];293[label="xuu34",fontsize=16,color="green",shape="box"];294[label="xuu35",fontsize=16,color="green",shape="box"];295[label="xuu34",fontsize=16,color="green",shape="box"];296[label="xuu35",fontsize=16,color="green",shape="box"];297[label="xuu34",fontsize=16,color="green",shape="box"];298[label="xuu35",fontsize=16,color="green",shape="box"];299[label="xuu34",fontsize=16,color="green",shape="box"];300[label="xuu35",fontsize=16,color="green",shape="box"];301[label="xuu34",fontsize=16,color="green",shape="box"];302[label="xuu35",fontsize=16,color="green",shape="box"];303[label="xuu34",fontsize=16,color="green",shape="box"];304[label="xuu35",fontsize=16,color="green",shape="box"];305[label="xuu34",fontsize=16,color="green",shape="box"];306[label="xuu35",fontsize=16,color="green",shape="box"];307[label="xuu34",fontsize=16,color="green",shape="box"];308[label="xuu35",fontsize=16,color="green",shape="box"];309[label="xuu34",fontsize=16,color="green",shape="box"];310[label="xuu35",fontsize=16,color="green",shape="box"];311[label="xuu34",fontsize=16,color="green",shape="box"];312[label="xuu35",fontsize=16,color="green",shape="box"];313[label="xuu34",fontsize=16,color="green",shape="box"];314[label="xuu35",fontsize=16,color="green",shape="box"];315[label="xuu34",fontsize=16,color="green",shape="box"];316[label="xuu16 : xuu17",fontsize=16,color="green",shape="box"];317[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];318[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (LT == GT)",fontsize=16,color="black",shape="box"];318 -> 377[label="",style="solid", color="black", weight=3]; 319[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (EQ == GT)",fontsize=16,color="black",shape="box"];319 -> 378[label="",style="solid", color="black", weight=3]; 320[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (GT == GT)",fontsize=16,color="black",shape="box"];320 -> 379[label="",style="solid", color="black", weight=3]; 208[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 otherwise",fontsize=16,color="black",shape="box"];208 -> 252[label="",style="solid", color="black", weight=3]; 209 -> 253[label="",style="dashed", color="red", weight=0]; 209[label="FiniteMap.mkBalBranch [] xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (xuu4000 : xuu4001) xuu401)",fontsize=16,color="magenta"];209 -> 254[label="",style="dashed", color="magenta", weight=3]; 211 -> 172[label="",style="dashed", color="red", weight=0]; 211[label="compare (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];211 -> 321[label="",style="dashed", color="magenta", weight=3]; 211 -> 322[label="",style="dashed", color="magenta", weight=3]; 210[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (xuu37 == LT)",fontsize=16,color="burlywood",shape="triangle"];3808[label="xuu37/LT",fontsize=10,color="white",style="solid",shape="box"];210 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 323[label="",style="solid", color="burlywood", weight=3]; 3809[label="xuu37/EQ",fontsize=10,color="white",style="solid",shape="box"];210 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 324[label="",style="solid", color="burlywood", weight=3]; 3810[label="xuu37/GT",fontsize=10,color="white",style="solid",shape="box"];210 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 325[label="",style="solid", color="burlywood", weight=3]; 250[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 otherwise",fontsize=16,color="black",shape="box"];250 -> 326[label="",style="solid", color="black", weight=3]; 251 -> 253[label="",style="dashed", color="red", weight=0]; 251[label="FiniteMap.mkBalBranch [] xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 [] xuu401)",fontsize=16,color="magenta"];251 -> 255[label="",style="dashed", color="magenta", weight=3]; 333[label="xuu40001",fontsize=16,color="green",shape="box"];334[label="xuu3000",fontsize=16,color="green",shape="box"];335[label="xuu3001",fontsize=16,color="green",shape="box"];336[label="xuu40000",fontsize=16,color="green",shape="box"];337 -> 170[label="",style="dashed", color="red", weight=0]; 337[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="magenta"];337 -> 387[label="",style="dashed", color="magenta", weight=3]; 337 -> 388[label="",style="dashed", color="magenta", weight=3]; 338 -> 172[label="",style="dashed", color="red", weight=0]; 338[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="magenta"];338 -> 389[label="",style="dashed", color="magenta", weight=3]; 338 -> 390[label="",style="dashed", color="magenta", weight=3]; 339[label="compare2 (xuu40000,xuu40001) (xuu3000,xuu3001) ((xuu40000,xuu40001) == (xuu3000,xuu3001))",fontsize=16,color="black",shape="box"];339 -> 391[label="",style="solid", color="black", weight=3]; 340[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];340 -> 392[label="",style="solid", color="black", weight=3]; 341[label="compare2 Nothing (Just xuu3000) (Nothing == Just xuu3000)",fontsize=16,color="black",shape="box"];341 -> 393[label="",style="solid", color="black", weight=3]; 342[label="compare2 (Just xuu40000) Nothing (Just xuu40000 == Nothing)",fontsize=16,color="black",shape="box"];342 -> 394[label="",style="solid", color="black", weight=3]; 343[label="compare2 (Just xuu40000) (Just xuu3000) (Just xuu40000 == Just xuu3000)",fontsize=16,color="black",shape="box"];343 -> 395[label="",style="solid", color="black", weight=3]; 344[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3811[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 396[label="",style="solid", color="burlywood", weight=3]; 3812[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 397[label="",style="solid", color="burlywood", weight=3]; 345[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3813[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];345 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 398[label="",style="solid", color="burlywood", weight=3]; 3814[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];345 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 399[label="",style="solid", color="burlywood", weight=3]; 346[label="xuu3000",fontsize=16,color="green",shape="box"];347[label="xuu40000",fontsize=16,color="green",shape="box"];348[label="compare2 (Left xuu40000) (Left xuu3000) (Left xuu40000 == Left xuu3000)",fontsize=16,color="black",shape="box"];348 -> 400[label="",style="solid", color="black", weight=3]; 349[label="compare2 (Left xuu40000) (Right xuu3000) (Left xuu40000 == Right xuu3000)",fontsize=16,color="black",shape="box"];349 -> 401[label="",style="solid", color="black", weight=3]; 350[label="compare2 (Right xuu40000) (Left xuu3000) (Right xuu40000 == Left xuu3000)",fontsize=16,color="black",shape="box"];350 -> 402[label="",style="solid", color="black", weight=3]; 351[label="compare2 (Right xuu40000) (Right xuu3000) (Right xuu40000 == Right xuu3000)",fontsize=16,color="black",shape="box"];351 -> 403[label="",style="solid", color="black", weight=3]; 352[label="primCmpInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];352 -> 404[label="",style="solid", color="black", weight=3]; 353[label="primCmpInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];353 -> 405[label="",style="solid", color="black", weight=3]; 354[label="primCmpInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3815[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];354 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 406[label="",style="solid", color="burlywood", weight=3]; 3816[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];354 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 407[label="",style="solid", color="burlywood", weight=3]; 355[label="primCmpInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3817[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];355 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 408[label="",style="solid", color="burlywood", weight=3]; 3818[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];355 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 409[label="",style="solid", color="burlywood", weight=3]; 356[label="primCmpInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];356 -> 410[label="",style="solid", color="black", weight=3]; 357[label="primCmpInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];357 -> 411[label="",style="solid", color="black", weight=3]; 358[label="primCmpInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3819[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];358 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 412[label="",style="solid", color="burlywood", weight=3]; 3820[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];358 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 413[label="",style="solid", color="burlywood", weight=3]; 359[label="primCmpInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3821[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];359 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 414[label="",style="solid", color="burlywood", weight=3]; 3822[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];359 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 415[label="",style="solid", color="burlywood", weight=3]; 360[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];360 -> 416[label="",style="solid", color="black", weight=3]; 361[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];361 -> 417[label="",style="solid", color="black", weight=3]; 362[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];362 -> 418[label="",style="solid", color="black", weight=3]; 363[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];363 -> 419[label="",style="solid", color="black", weight=3]; 364[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];364 -> 420[label="",style="solid", color="black", weight=3]; 365[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];365 -> 421[label="",style="solid", color="black", weight=3]; 366[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];366 -> 422[label="",style="solid", color="black", weight=3]; 367[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];367 -> 423[label="",style="solid", color="black", weight=3]; 368[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];368 -> 424[label="",style="solid", color="black", weight=3]; 369[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];369 -> 425[label="",style="solid", color="black", weight=3]; 370[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];370 -> 426[label="",style="solid", color="black", weight=3]; 371[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];371 -> 427[label="",style="solid", color="black", weight=3]; 372[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];372 -> 428[label="",style="solid", color="black", weight=3]; 373[label="compare2 (xuu40000,xuu40001,xuu40002) (xuu3000,xuu3001,xuu3002) ((xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002))",fontsize=16,color="black",shape="box"];373 -> 429[label="",style="solid", color="black", weight=3]; 374[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3823[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 430[label="",style="solid", color="burlywood", weight=3]; 3824[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 431[label="",style="solid", color="burlywood", weight=3]; 375[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3825[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 432[label="",style="solid", color="burlywood", weight=3]; 3826[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];375 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 433[label="",style="solid", color="burlywood", weight=3]; 376[label="primCmpNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3827[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];376 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 434[label="",style="solid", color="burlywood", weight=3]; 3828[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];376 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 435[label="",style="solid", color="burlywood", weight=3]; 377[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="black",shape="triangle"];377 -> 436[label="",style="solid", color="black", weight=3]; 378 -> 377[label="",style="dashed", color="red", weight=0]; 378[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="magenta"];379[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];379 -> 437[label="",style="solid", color="black", weight=3]; 252[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 True",fontsize=16,color="black",shape="box"];252 -> 327[label="",style="solid", color="black", weight=3]; 254 -> 14[label="",style="dashed", color="red", weight=0]; 254[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (xuu4000 : xuu4001) xuu401",fontsize=16,color="magenta"];254 -> 328[label="",style="dashed", color="magenta", weight=3]; 254 -> 329[label="",style="dashed", color="magenta", weight=3]; 253[label="FiniteMap.mkBalBranch [] xuu31 xuu33 xuu38",fontsize=16,color="black",shape="triangle"];253 -> 330[label="",style="solid", color="black", weight=3]; 321[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];322[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="box"];322 -> 380[label="",style="solid", color="black", weight=3]; 323[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (LT == LT)",fontsize=16,color="black",shape="box"];323 -> 381[label="",style="solid", color="black", weight=3]; 324[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (EQ == LT)",fontsize=16,color="black",shape="box"];324 -> 382[label="",style="solid", color="black", weight=3]; 325[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (GT == LT)",fontsize=16,color="black",shape="box"];325 -> 383[label="",style="solid", color="black", weight=3]; 326[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];326 -> 384[label="",style="solid", color="black", weight=3]; 255 -> 14[label="",style="dashed", color="red", weight=0]; 255[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 [] xuu401",fontsize=16,color="magenta"];255 -> 331[label="",style="dashed", color="magenta", weight=3]; 255 -> 332[label="",style="dashed", color="magenta", weight=3]; 387[label="xuu3000 * xuu40001",fontsize=16,color="burlywood",shape="triangle"];3829[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];387 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 444[label="",style="solid", color="burlywood", weight=3]; 388 -> 387[label="",style="dashed", color="red", weight=0]; 388[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];388 -> 445[label="",style="dashed", color="magenta", weight=3]; 388 -> 446[label="",style="dashed", color="magenta", weight=3]; 389[label="xuu3000 * xuu40001",fontsize=16,color="black",shape="triangle"];389 -> 447[label="",style="solid", color="black", weight=3]; 390 -> 389[label="",style="dashed", color="red", weight=0]; 390[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];390 -> 448[label="",style="dashed", color="magenta", weight=3]; 390 -> 449[label="",style="dashed", color="magenta", weight=3]; 391 -> 899[label="",style="dashed", color="red", weight=0]; 391[label="compare2 (xuu40000,xuu40001) (xuu3000,xuu3001) (xuu40000 == xuu3000 && xuu40001 == xuu3001)",fontsize=16,color="magenta"];391 -> 900[label="",style="dashed", color="magenta", weight=3]; 391 -> 901[label="",style="dashed", color="magenta", weight=3]; 391 -> 902[label="",style="dashed", color="magenta", weight=3]; 391 -> 903[label="",style="dashed", color="magenta", weight=3]; 391 -> 904[label="",style="dashed", color="magenta", weight=3]; 392[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];392 -> 456[label="",style="solid", color="black", weight=3]; 393[label="compare2 Nothing (Just xuu3000) False",fontsize=16,color="black",shape="box"];393 -> 457[label="",style="solid", color="black", weight=3]; 394[label="compare2 (Just xuu40000) Nothing False",fontsize=16,color="black",shape="box"];394 -> 458[label="",style="solid", color="black", weight=3]; 395 -> 459[label="",style="dashed", color="red", weight=0]; 395[label="compare2 (Just xuu40000) (Just xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];395 -> 460[label="",style="dashed", color="magenta", weight=3]; 395 -> 461[label="",style="dashed", color="magenta", weight=3]; 395 -> 462[label="",style="dashed", color="magenta", weight=3]; 396[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];396 -> 463[label="",style="solid", color="black", weight=3]; 397[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];397 -> 464[label="",style="solid", color="black", weight=3]; 398[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];398 -> 465[label="",style="solid", color="black", weight=3]; 399[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];399 -> 466[label="",style="solid", color="black", weight=3]; 400 -> 467[label="",style="dashed", color="red", weight=0]; 400[label="compare2 (Left xuu40000) (Left xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];400 -> 468[label="",style="dashed", color="magenta", weight=3]; 400 -> 469[label="",style="dashed", color="magenta", weight=3]; 400 -> 470[label="",style="dashed", color="magenta", weight=3]; 401[label="compare2 (Left xuu40000) (Right xuu3000) False",fontsize=16,color="black",shape="box"];401 -> 471[label="",style="solid", color="black", weight=3]; 402[label="compare2 (Right xuu40000) (Left xuu3000) False",fontsize=16,color="black",shape="box"];402 -> 472[label="",style="solid", color="black", weight=3]; 403 -> 473[label="",style="dashed", color="red", weight=0]; 403[label="compare2 (Right xuu40000) (Right xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];403 -> 474[label="",style="dashed", color="magenta", weight=3]; 403 -> 475[label="",style="dashed", color="magenta", weight=3]; 403 -> 476[label="",style="dashed", color="magenta", weight=3]; 404 -> 376[label="",style="dashed", color="red", weight=0]; 404[label="primCmpNat (Succ xuu400000) xuu3000",fontsize=16,color="magenta"];404 -> 477[label="",style="dashed", color="magenta", weight=3]; 404 -> 478[label="",style="dashed", color="magenta", weight=3]; 405[label="GT",fontsize=16,color="green",shape="box"];406[label="primCmpInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];406 -> 479[label="",style="solid", color="black", weight=3]; 407[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];407 -> 480[label="",style="solid", color="black", weight=3]; 408[label="primCmpInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];408 -> 481[label="",style="solid", color="black", weight=3]; 409[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];409 -> 482[label="",style="solid", color="black", weight=3]; 410[label="LT",fontsize=16,color="green",shape="box"];411 -> 376[label="",style="dashed", color="red", weight=0]; 411[label="primCmpNat xuu3000 (Succ xuu400000)",fontsize=16,color="magenta"];411 -> 483[label="",style="dashed", color="magenta", weight=3]; 411 -> 484[label="",style="dashed", color="magenta", weight=3]; 412[label="primCmpInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];412 -> 485[label="",style="solid", color="black", weight=3]; 413[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];413 -> 486[label="",style="solid", color="black", weight=3]; 414[label="primCmpInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];414 -> 487[label="",style="solid", color="black", weight=3]; 415[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];415 -> 488[label="",style="solid", color="black", weight=3]; 416[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];416 -> 489[label="",style="solid", color="black", weight=3]; 417[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];417 -> 490[label="",style="solid", color="black", weight=3]; 418[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];418 -> 491[label="",style="solid", color="black", weight=3]; 419[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];419 -> 492[label="",style="solid", color="black", weight=3]; 420[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];420 -> 493[label="",style="solid", color="black", weight=3]; 421[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];421 -> 494[label="",style="solid", color="black", weight=3]; 422[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];422 -> 495[label="",style="solid", color="black", weight=3]; 423[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];423 -> 496[label="",style="solid", color="black", weight=3]; 424[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];424 -> 497[label="",style="solid", color="black", weight=3]; 425[label="compare2 False False True",fontsize=16,color="black",shape="box"];425 -> 498[label="",style="solid", color="black", weight=3]; 426[label="compare2 False True False",fontsize=16,color="black",shape="box"];426 -> 499[label="",style="solid", color="black", weight=3]; 427[label="compare2 True False False",fontsize=16,color="black",shape="box"];427 -> 500[label="",style="solid", color="black", weight=3]; 428[label="compare2 True True True",fontsize=16,color="black",shape="box"];428 -> 501[label="",style="solid", color="black", weight=3]; 429 -> 952[label="",style="dashed", color="red", weight=0]; 429[label="compare2 (xuu40000,xuu40001,xuu40002) (xuu3000,xuu3001,xuu3002) (xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002)",fontsize=16,color="magenta"];429 -> 953[label="",style="dashed", color="magenta", weight=3]; 429 -> 954[label="",style="dashed", color="magenta", weight=3]; 429 -> 955[label="",style="dashed", color="magenta", weight=3]; 429 -> 956[label="",style="dashed", color="magenta", weight=3]; 429 -> 957[label="",style="dashed", color="magenta", weight=3]; 429 -> 958[label="",style="dashed", color="magenta", weight=3]; 429 -> 959[label="",style="dashed", color="magenta", weight=3]; 430[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];430 -> 510[label="",style="solid", color="black", weight=3]; 431[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];431 -> 511[label="",style="solid", color="black", weight=3]; 432[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];432 -> 512[label="",style="solid", color="black", weight=3]; 433[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];433 -> 513[label="",style="solid", color="black", weight=3]; 434[label="primCmpNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];3830[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];434 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 514[label="",style="solid", color="burlywood", weight=3]; 3831[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];434 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 515[label="",style="solid", color="burlywood", weight=3]; 435[label="primCmpNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];3832[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];435 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 516[label="",style="solid", color="burlywood", weight=3]; 3833[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];435 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 517[label="",style="solid", color="burlywood", weight=3]; 436[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 otherwise",fontsize=16,color="black",shape="box"];436 -> 518[label="",style="solid", color="black", weight=3]; 437 -> 72[label="",style="dashed", color="red", weight=0]; 437[label="FiniteMap.mkBalBranch (xuu16 : xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22 : xuu23) xuu24)",fontsize=16,color="magenta"];437 -> 519[label="",style="dashed", color="magenta", weight=3]; 437 -> 520[label="",style="dashed", color="magenta", weight=3]; 437 -> 521[label="",style="dashed", color="magenta", weight=3]; 437 -> 522[label="",style="dashed", color="magenta", weight=3]; 437 -> 523[label="",style="dashed", color="magenta", weight=3]; 327[label="FiniteMap.Branch (xuu4000 : xuu4001) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];327 -> 385[label="",style="dashed", color="green", weight=3]; 328[label="xuu34",fontsize=16,color="green",shape="box"];329[label="xuu4000 : xuu4001",fontsize=16,color="green",shape="box"];330[label="FiniteMap.mkBalBranch6 [] xuu31 xuu33 xuu38",fontsize=16,color="black",shape="box"];330 -> 386[label="",style="solid", color="black", weight=3]; 380 -> 2111[label="",style="dashed", color="red", weight=0]; 380[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];380 -> 2112[label="",style="dashed", color="magenta", weight=3]; 380 -> 2113[label="",style="dashed", color="magenta", weight=3]; 381[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];381 -> 439[label="",style="solid", color="black", weight=3]; 382[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="triangle"];382 -> 440[label="",style="solid", color="black", weight=3]; 383 -> 382[label="",style="dashed", color="red", weight=0]; 383[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="magenta"];384[label="FiniteMap.Branch [] (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];384 -> 441[label="",style="dashed", color="green", weight=3]; 331[label="xuu34",fontsize=16,color="green",shape="box"];332[label="[]",fontsize=16,color="green",shape="box"];444[label="Integer xuu30000 * xuu40001",fontsize=16,color="burlywood",shape="box"];3834[label="xuu40001/Integer xuu400010",fontsize=10,color="white",style="solid",shape="box"];444 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 524[label="",style="solid", color="burlywood", weight=3]; 445[label="xuu3001",fontsize=16,color="green",shape="box"];446[label="xuu40000",fontsize=16,color="green",shape="box"];447[label="primMulInt xuu3000 xuu40001",fontsize=16,color="burlywood",shape="triangle"];3835[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];447 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 525[label="",style="solid", color="burlywood", weight=3]; 3836[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];447 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 526[label="",style="solid", color="burlywood", weight=3]; 448[label="xuu3001",fontsize=16,color="green",shape="box"];449[label="xuu40000",fontsize=16,color="green",shape="box"];900[label="xuu3000",fontsize=16,color="green",shape="box"];901[label="xuu3001",fontsize=16,color="green",shape="box"];902 -> 984[label="",style="dashed", color="red", weight=0]; 902[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];902 -> 985[label="",style="dashed", color="magenta", weight=3]; 902 -> 986[label="",style="dashed", color="magenta", weight=3]; 903[label="xuu40000",fontsize=16,color="green",shape="box"];904[label="xuu40001",fontsize=16,color="green",shape="box"];899[label="compare2 (xuu96,xuu97) (xuu98,xuu99) xuu100",fontsize=16,color="burlywood",shape="triangle"];3837[label="xuu100/False",fontsize=10,color="white",style="solid",shape="box"];899 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 924[label="",style="solid", color="burlywood", weight=3]; 3838[label="xuu100/True",fontsize=10,color="white",style="solid",shape="box"];899 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 925[label="",style="solid", color="burlywood", weight=3]; 456[label="EQ",fontsize=16,color="green",shape="box"];457[label="compare1 Nothing (Just xuu3000) (Nothing <= Just xuu3000)",fontsize=16,color="black",shape="box"];457 -> 543[label="",style="solid", color="black", weight=3]; 458[label="compare1 (Just xuu40000) Nothing (Just xuu40000 <= Nothing)",fontsize=16,color="black",shape="box"];458 -> 544[label="",style="solid", color="black", weight=3]; 460[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3839[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 545[label="",style="solid", color="blue", weight=3]; 3840[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 546[label="",style="solid", color="blue", weight=3]; 3841[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 547[label="",style="solid", color="blue", weight=3]; 3842[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 548[label="",style="solid", color="blue", weight=3]; 3843[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 549[label="",style="solid", color="blue", weight=3]; 3844[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 550[label="",style="solid", color="blue", weight=3]; 3845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 551[label="",style="solid", color="blue", weight=3]; 3846[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 552[label="",style="solid", color="blue", weight=3]; 3847[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 553[label="",style="solid", color="blue", weight=3]; 3848[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 554[label="",style="solid", color="blue", weight=3]; 3849[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 555[label="",style="solid", color="blue", weight=3]; 3850[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 556[label="",style="solid", color="blue", weight=3]; 3851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 557[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];460 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 558[label="",style="solid", color="blue", weight=3]; 461[label="xuu3000",fontsize=16,color="green",shape="box"];462[label="xuu40000",fontsize=16,color="green",shape="box"];459[label="compare2 (Just xuu55) (Just xuu56) xuu57",fontsize=16,color="burlywood",shape="triangle"];3853[label="xuu57/False",fontsize=10,color="white",style="solid",shape="box"];459 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 559[label="",style="solid", color="burlywood", weight=3]; 3854[label="xuu57/True",fontsize=10,color="white",style="solid",shape="box"];459 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 560[label="",style="solid", color="burlywood", weight=3]; 463 -> 172[label="",style="dashed", color="red", weight=0]; 463[label="compare (xuu40000 * Pos xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];463 -> 561[label="",style="dashed", color="magenta", weight=3]; 463 -> 562[label="",style="dashed", color="magenta", weight=3]; 464 -> 172[label="",style="dashed", color="red", weight=0]; 464[label="compare (xuu40000 * Pos xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];464 -> 563[label="",style="dashed", color="magenta", weight=3]; 464 -> 564[label="",style="dashed", color="magenta", weight=3]; 465 -> 172[label="",style="dashed", color="red", weight=0]; 465[label="compare (xuu40000 * Neg xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];465 -> 565[label="",style="dashed", color="magenta", weight=3]; 465 -> 566[label="",style="dashed", color="magenta", weight=3]; 466 -> 172[label="",style="dashed", color="red", weight=0]; 466[label="compare (xuu40000 * Neg xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];466 -> 567[label="",style="dashed", color="magenta", weight=3]; 466 -> 568[label="",style="dashed", color="magenta", weight=3]; 468[label="xuu40000",fontsize=16,color="green",shape="box"];469[label="xuu3000",fontsize=16,color="green",shape="box"];470[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3855[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 569[label="",style="solid", color="blue", weight=3]; 3856[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 570[label="",style="solid", color="blue", weight=3]; 3857[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 571[label="",style="solid", color="blue", weight=3]; 3858[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 572[label="",style="solid", color="blue", weight=3]; 3859[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3859[label="",style="solid", color="blue", weight=9]; 3859 -> 573[label="",style="solid", color="blue", weight=3]; 3860[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3860[label="",style="solid", color="blue", weight=9]; 3860 -> 574[label="",style="solid", color="blue", weight=3]; 3861[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3861[label="",style="solid", color="blue", weight=9]; 3861 -> 575[label="",style="solid", color="blue", weight=3]; 3862[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3862[label="",style="solid", color="blue", weight=9]; 3862 -> 576[label="",style="solid", color="blue", weight=3]; 3863[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3863[label="",style="solid", color="blue", weight=9]; 3863 -> 577[label="",style="solid", color="blue", weight=3]; 3864[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 578[label="",style="solid", color="blue", weight=3]; 3865[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 579[label="",style="solid", color="blue", weight=3]; 3866[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 580[label="",style="solid", color="blue", weight=3]; 3867[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3867[label="",style="solid", color="blue", weight=9]; 3867 -> 581[label="",style="solid", color="blue", weight=3]; 3868[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];470 -> 3868[label="",style="solid", color="blue", weight=9]; 3868 -> 582[label="",style="solid", color="blue", weight=3]; 467[label="compare2 (Left xuu62) (Left xuu63) xuu64",fontsize=16,color="burlywood",shape="triangle"];3869[label="xuu64/False",fontsize=10,color="white",style="solid",shape="box"];467 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 583[label="",style="solid", color="burlywood", weight=3]; 3870[label="xuu64/True",fontsize=10,color="white",style="solid",shape="box"];467 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 584[label="",style="solid", color="burlywood", weight=3]; 471[label="compare1 (Left xuu40000) (Right xuu3000) (Left xuu40000 <= Right xuu3000)",fontsize=16,color="black",shape="box"];471 -> 585[label="",style="solid", color="black", weight=3]; 472[label="compare1 (Right xuu40000) (Left xuu3000) (Right xuu40000 <= Left xuu3000)",fontsize=16,color="black",shape="box"];472 -> 586[label="",style="solid", color="black", weight=3]; 474[label="xuu3000",fontsize=16,color="green",shape="box"];475[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3871[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 587[label="",style="solid", color="blue", weight=3]; 3872[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 588[label="",style="solid", color="blue", weight=3]; 3873[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 589[label="",style="solid", color="blue", weight=3]; 3874[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 590[label="",style="solid", color="blue", weight=3]; 3875[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 591[label="",style="solid", color="blue", weight=3]; 3876[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 592[label="",style="solid", color="blue", weight=3]; 3877[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 593[label="",style="solid", color="blue", weight=3]; 3878[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 594[label="",style="solid", color="blue", weight=3]; 3879[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 595[label="",style="solid", color="blue", weight=3]; 3880[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 596[label="",style="solid", color="blue", weight=3]; 3881[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 597[label="",style="solid", color="blue", weight=3]; 3882[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 598[label="",style="solid", color="blue", weight=3]; 3883[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 599[label="",style="solid", color="blue", weight=3]; 3884[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];475 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 600[label="",style="solid", color="blue", weight=3]; 476[label="xuu40000",fontsize=16,color="green",shape="box"];473[label="compare2 (Right xuu69) (Right xuu70) xuu71",fontsize=16,color="burlywood",shape="triangle"];3885[label="xuu71/False",fontsize=10,color="white",style="solid",shape="box"];473 -> 3885[label="",style="solid", color="burlywood", weight=9]; 3885 -> 601[label="",style="solid", color="burlywood", weight=3]; 3886[label="xuu71/True",fontsize=10,color="white",style="solid",shape="box"];473 -> 3886[label="",style="solid", color="burlywood", weight=9]; 3886 -> 602[label="",style="solid", color="burlywood", weight=3]; 477[label="Succ xuu400000",fontsize=16,color="green",shape="box"];478[label="xuu3000",fontsize=16,color="green",shape="box"];479 -> 376[label="",style="dashed", color="red", weight=0]; 479[label="primCmpNat Zero (Succ xuu30000)",fontsize=16,color="magenta"];479 -> 603[label="",style="dashed", color="magenta", weight=3]; 479 -> 604[label="",style="dashed", color="magenta", weight=3]; 480[label="EQ",fontsize=16,color="green",shape="box"];481[label="GT",fontsize=16,color="green",shape="box"];482[label="EQ",fontsize=16,color="green",shape="box"];483[label="xuu3000",fontsize=16,color="green",shape="box"];484[label="Succ xuu400000",fontsize=16,color="green",shape="box"];485[label="LT",fontsize=16,color="green",shape="box"];486[label="EQ",fontsize=16,color="green",shape="box"];487 -> 376[label="",style="dashed", color="red", weight=0]; 487[label="primCmpNat (Succ xuu30000) Zero",fontsize=16,color="magenta"];487 -> 605[label="",style="dashed", color="magenta", weight=3]; 487 -> 606[label="",style="dashed", color="magenta", weight=3]; 488[label="EQ",fontsize=16,color="green",shape="box"];489[label="EQ",fontsize=16,color="green",shape="box"];490[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];490 -> 607[label="",style="solid", color="black", weight=3]; 491[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];491 -> 608[label="",style="solid", color="black", weight=3]; 492[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];492 -> 609[label="",style="solid", color="black", weight=3]; 493[label="EQ",fontsize=16,color="green",shape="box"];494[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];494 -> 610[label="",style="solid", color="black", weight=3]; 495[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];495 -> 611[label="",style="solid", color="black", weight=3]; 496[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];496 -> 612[label="",style="solid", color="black", weight=3]; 497[label="EQ",fontsize=16,color="green",shape="box"];498[label="EQ",fontsize=16,color="green",shape="box"];499[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];499 -> 613[label="",style="solid", color="black", weight=3]; 500[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];500 -> 614[label="",style="solid", color="black", weight=3]; 501[label="EQ",fontsize=16,color="green",shape="box"];953[label="xuu40001",fontsize=16,color="green",shape="box"];954[label="xuu40000",fontsize=16,color="green",shape="box"];955[label="xuu40002",fontsize=16,color="green",shape="box"];956[label="xuu3000",fontsize=16,color="green",shape="box"];957 -> 984[label="",style="dashed", color="red", weight=0]; 957[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];957 -> 987[label="",style="dashed", color="magenta", weight=3]; 957 -> 988[label="",style="dashed", color="magenta", weight=3]; 958[label="xuu3001",fontsize=16,color="green",shape="box"];959[label="xuu3002",fontsize=16,color="green",shape="box"];952[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) xuu108",fontsize=16,color="burlywood",shape="triangle"];3887[label="xuu108/False",fontsize=10,color="white",style="solid",shape="box"];952 -> 3887[label="",style="solid", color="burlywood", weight=9]; 3887 -> 968[label="",style="solid", color="burlywood", weight=3]; 3888[label="xuu108/True",fontsize=10,color="white",style="solid",shape="box"];952 -> 3888[label="",style="solid", color="burlywood", weight=9]; 3888 -> 969[label="",style="solid", color="burlywood", weight=3]; 510 -> 172[label="",style="dashed", color="red", weight=0]; 510[label="compare (xuu40000 * Pos xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];510 -> 636[label="",style="dashed", color="magenta", weight=3]; 510 -> 637[label="",style="dashed", color="magenta", weight=3]; 511 -> 172[label="",style="dashed", color="red", weight=0]; 511[label="compare (xuu40000 * Pos xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];511 -> 638[label="",style="dashed", color="magenta", weight=3]; 511 -> 639[label="",style="dashed", color="magenta", weight=3]; 512 -> 172[label="",style="dashed", color="red", weight=0]; 512[label="compare (xuu40000 * Neg xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];512 -> 640[label="",style="dashed", color="magenta", weight=3]; 512 -> 641[label="",style="dashed", color="magenta", weight=3]; 513 -> 172[label="",style="dashed", color="red", weight=0]; 513[label="compare (xuu40000 * Neg xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];513 -> 642[label="",style="dashed", color="magenta", weight=3]; 513 -> 643[label="",style="dashed", color="magenta", weight=3]; 514[label="primCmpNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];514 -> 644[label="",style="solid", color="black", weight=3]; 515[label="primCmpNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];515 -> 645[label="",style="solid", color="black", weight=3]; 516[label="primCmpNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];516 -> 646[label="",style="solid", color="black", weight=3]; 517[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];517 -> 647[label="",style="solid", color="black", weight=3]; 518[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];518 -> 648[label="",style="solid", color="black", weight=3]; 519[label="xuu18",fontsize=16,color="green",shape="box"];520[label="xuu16",fontsize=16,color="green",shape="box"];521 -> 14[label="",style="dashed", color="red", weight=0]; 521[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22 : xuu23) xuu24",fontsize=16,color="magenta"];521 -> 649[label="",style="dashed", color="magenta", weight=3]; 521 -> 650[label="",style="dashed", color="magenta", weight=3]; 521 -> 651[label="",style="dashed", color="magenta", weight=3]; 522[label="xuu17",fontsize=16,color="green",shape="box"];523[label="xuu20",fontsize=16,color="green",shape="box"];385[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="black",shape="triangle"];385 -> 442[label="",style="solid", color="black", weight=3]; 386 -> 827[label="",style="dashed", color="red", weight=0]; 386[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];386 -> 828[label="",style="dashed", color="magenta", weight=3]; 2112 -> 1724[label="",style="dashed", color="red", weight=0]; 2112[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];2113 -> 1730[label="",style="dashed", color="red", weight=0]; 2113[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];2111[label="primPlusInt xuu194 xuu193",fontsize=16,color="burlywood",shape="triangle"];3889[label="xuu194/Pos xuu1940",fontsize=10,color="white",style="solid",shape="box"];2111 -> 3889[label="",style="solid", color="burlywood", weight=9]; 3889 -> 2146[label="",style="solid", color="burlywood", weight=3]; 3890[label="xuu194/Neg xuu1940",fontsize=10,color="white",style="solid",shape="box"];2111 -> 3890[label="",style="solid", color="burlywood", weight=9]; 3890 -> 2147[label="",style="solid", color="burlywood", weight=3]; 439 -> 3425[label="",style="dashed", color="red", weight=0]; 439[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="magenta"];439 -> 3426[label="",style="dashed", color="magenta", weight=3]; 439 -> 3427[label="",style="dashed", color="magenta", weight=3]; 439 -> 3428[label="",style="dashed", color="magenta", weight=3]; 439 -> 3429[label="",style="dashed", color="magenta", weight=3]; 439 -> 3430[label="",style="dashed", color="magenta", weight=3]; 440 -> 1055[label="",style="dashed", color="red", weight=0]; 440[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];440 -> 1056[label="",style="dashed", color="magenta", weight=3]; 441 -> 385[label="",style="dashed", color="red", weight=0]; 441[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];524[label="Integer xuu30000 * Integer xuu400010",fontsize=16,color="black",shape="box"];524 -> 652[label="",style="solid", color="black", weight=3]; 525[label="primMulInt (Pos xuu30000) xuu40001",fontsize=16,color="burlywood",shape="box"];3891[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];525 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 653[label="",style="solid", color="burlywood", weight=3]; 3892[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];525 -> 3892[label="",style="solid", color="burlywood", weight=9]; 3892 -> 654[label="",style="solid", color="burlywood", weight=3]; 526[label="primMulInt (Neg xuu30000) xuu40001",fontsize=16,color="burlywood",shape="box"];3893[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];526 -> 3893[label="",style="solid", color="burlywood", weight=9]; 3893 -> 655[label="",style="solid", color="burlywood", weight=3]; 3894[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];526 -> 3894[label="",style="solid", color="burlywood", weight=9]; 3894 -> 656[label="",style="solid", color="burlywood", weight=3]; 985[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3895[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 993[label="",style="solid", color="blue", weight=3]; 3896[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 994[label="",style="solid", color="blue", weight=3]; 3897[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 995[label="",style="solid", color="blue", weight=3]; 3898[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 996[label="",style="solid", color="blue", weight=3]; 3899[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 997[label="",style="solid", color="blue", weight=3]; 3900[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 998[label="",style="solid", color="blue", weight=3]; 3901[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 999[label="",style="solid", color="blue", weight=3]; 3902[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 1000[label="",style="solid", color="blue", weight=3]; 3903[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 1001[label="",style="solid", color="blue", weight=3]; 3904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 1002[label="",style="solid", color="blue", weight=3]; 3905[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 1003[label="",style="solid", color="blue", weight=3]; 3906[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 1004[label="",style="solid", color="blue", weight=3]; 3907[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 1005[label="",style="solid", color="blue", weight=3]; 3908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 1006[label="",style="solid", color="blue", weight=3]; 986[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3909[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 1007[label="",style="solid", color="blue", weight=3]; 3910[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 1008[label="",style="solid", color="blue", weight=3]; 3911[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 1009[label="",style="solid", color="blue", weight=3]; 3912[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 1010[label="",style="solid", color="blue", weight=3]; 3913[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 1011[label="",style="solid", color="blue", weight=3]; 3914[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 1012[label="",style="solid", color="blue", weight=3]; 3915[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 1013[label="",style="solid", color="blue", weight=3]; 3916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 1014[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 1015[label="",style="solid", color="blue", weight=3]; 3918[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 1016[label="",style="solid", color="blue", weight=3]; 3919[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 1017[label="",style="solid", color="blue", weight=3]; 3920[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 1018[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 1019[label="",style="solid", color="blue", weight=3]; 3922[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];986 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 1020[label="",style="solid", color="blue", weight=3]; 984[label="xuu113 && xuu114",fontsize=16,color="burlywood",shape="triangle"];3923[label="xuu113/False",fontsize=10,color="white",style="solid",shape="box"];984 -> 3923[label="",style="solid", color="burlywood", weight=9]; 3923 -> 1021[label="",style="solid", color="burlywood", weight=3]; 3924[label="xuu113/True",fontsize=10,color="white",style="solid",shape="box"];984 -> 3924[label="",style="solid", color="burlywood", weight=9]; 3924 -> 1022[label="",style="solid", color="burlywood", weight=3]; 924[label="compare2 (xuu96,xuu97) (xuu98,xuu99) False",fontsize=16,color="black",shape="box"];924 -> 1023[label="",style="solid", color="black", weight=3]; 925[label="compare2 (xuu96,xuu97) (xuu98,xuu99) True",fontsize=16,color="black",shape="box"];925 -> 1024[label="",style="solid", color="black", weight=3]; 543[label="compare1 Nothing (Just xuu3000) True",fontsize=16,color="black",shape="box"];543 -> 679[label="",style="solid", color="black", weight=3]; 544[label="compare1 (Just xuu40000) Nothing False",fontsize=16,color="black",shape="box"];544 -> 680[label="",style="solid", color="black", weight=3]; 545 -> 527[label="",style="dashed", color="red", weight=0]; 545[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];545 -> 681[label="",style="dashed", color="magenta", weight=3]; 545 -> 682[label="",style="dashed", color="magenta", weight=3]; 546 -> 528[label="",style="dashed", color="red", weight=0]; 546[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];546 -> 683[label="",style="dashed", color="magenta", weight=3]; 546 -> 684[label="",style="dashed", color="magenta", weight=3]; 547 -> 529[label="",style="dashed", color="red", weight=0]; 547[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];547 -> 685[label="",style="dashed", color="magenta", weight=3]; 547 -> 686[label="",style="dashed", color="magenta", weight=3]; 548 -> 530[label="",style="dashed", color="red", weight=0]; 548[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];548 -> 687[label="",style="dashed", color="magenta", weight=3]; 548 -> 688[label="",style="dashed", color="magenta", weight=3]; 549 -> 531[label="",style="dashed", color="red", weight=0]; 549[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];549 -> 689[label="",style="dashed", color="magenta", weight=3]; 549 -> 690[label="",style="dashed", color="magenta", weight=3]; 550 -> 532[label="",style="dashed", color="red", weight=0]; 550[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];550 -> 691[label="",style="dashed", color="magenta", weight=3]; 550 -> 692[label="",style="dashed", color="magenta", weight=3]; 551 -> 533[label="",style="dashed", color="red", weight=0]; 551[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];551 -> 693[label="",style="dashed", color="magenta", weight=3]; 551 -> 694[label="",style="dashed", color="magenta", weight=3]; 552 -> 534[label="",style="dashed", color="red", weight=0]; 552[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];552 -> 695[label="",style="dashed", color="magenta", weight=3]; 552 -> 696[label="",style="dashed", color="magenta", weight=3]; 553 -> 535[label="",style="dashed", color="red", weight=0]; 553[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];553 -> 697[label="",style="dashed", color="magenta", weight=3]; 553 -> 698[label="",style="dashed", color="magenta", weight=3]; 554 -> 536[label="",style="dashed", color="red", weight=0]; 554[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];554 -> 699[label="",style="dashed", color="magenta", weight=3]; 554 -> 700[label="",style="dashed", color="magenta", weight=3]; 555 -> 537[label="",style="dashed", color="red", weight=0]; 555[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];555 -> 701[label="",style="dashed", color="magenta", weight=3]; 555 -> 702[label="",style="dashed", color="magenta", weight=3]; 556 -> 538[label="",style="dashed", color="red", weight=0]; 556[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];556 -> 703[label="",style="dashed", color="magenta", weight=3]; 556 -> 704[label="",style="dashed", color="magenta", weight=3]; 557 -> 539[label="",style="dashed", color="red", weight=0]; 557[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];557 -> 705[label="",style="dashed", color="magenta", weight=3]; 557 -> 706[label="",style="dashed", color="magenta", weight=3]; 558 -> 540[label="",style="dashed", color="red", weight=0]; 558[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];558 -> 707[label="",style="dashed", color="magenta", weight=3]; 558 -> 708[label="",style="dashed", color="magenta", weight=3]; 559[label="compare2 (Just xuu55) (Just xuu56) False",fontsize=16,color="black",shape="box"];559 -> 709[label="",style="solid", color="black", weight=3]; 560[label="compare2 (Just xuu55) (Just xuu56) True",fontsize=16,color="black",shape="box"];560 -> 710[label="",style="solid", color="black", weight=3]; 561 -> 389[label="",style="dashed", color="red", weight=0]; 561[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];561 -> 711[label="",style="dashed", color="magenta", weight=3]; 561 -> 712[label="",style="dashed", color="magenta", weight=3]; 562 -> 389[label="",style="dashed", color="red", weight=0]; 562[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];562 -> 713[label="",style="dashed", color="magenta", weight=3]; 562 -> 714[label="",style="dashed", color="magenta", weight=3]; 563 -> 389[label="",style="dashed", color="red", weight=0]; 563[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];563 -> 715[label="",style="dashed", color="magenta", weight=3]; 563 -> 716[label="",style="dashed", color="magenta", weight=3]; 564 -> 389[label="",style="dashed", color="red", weight=0]; 564[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];564 -> 717[label="",style="dashed", color="magenta", weight=3]; 564 -> 718[label="",style="dashed", color="magenta", weight=3]; 565 -> 389[label="",style="dashed", color="red", weight=0]; 565[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];565 -> 719[label="",style="dashed", color="magenta", weight=3]; 565 -> 720[label="",style="dashed", color="magenta", weight=3]; 566 -> 389[label="",style="dashed", color="red", weight=0]; 566[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];566 -> 721[label="",style="dashed", color="magenta", weight=3]; 566 -> 722[label="",style="dashed", color="magenta", weight=3]; 567 -> 389[label="",style="dashed", color="red", weight=0]; 567[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];567 -> 723[label="",style="dashed", color="magenta", weight=3]; 567 -> 724[label="",style="dashed", color="magenta", weight=3]; 568 -> 389[label="",style="dashed", color="red", weight=0]; 568[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];568 -> 725[label="",style="dashed", color="magenta", weight=3]; 568 -> 726[label="",style="dashed", color="magenta", weight=3]; 569 -> 527[label="",style="dashed", color="red", weight=0]; 569[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];569 -> 727[label="",style="dashed", color="magenta", weight=3]; 569 -> 728[label="",style="dashed", color="magenta", weight=3]; 570 -> 528[label="",style="dashed", color="red", weight=0]; 570[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];570 -> 729[label="",style="dashed", color="magenta", weight=3]; 570 -> 730[label="",style="dashed", color="magenta", weight=3]; 571 -> 529[label="",style="dashed", color="red", weight=0]; 571[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];571 -> 731[label="",style="dashed", color="magenta", weight=3]; 571 -> 732[label="",style="dashed", color="magenta", weight=3]; 572 -> 530[label="",style="dashed", color="red", weight=0]; 572[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];572 -> 733[label="",style="dashed", color="magenta", weight=3]; 572 -> 734[label="",style="dashed", color="magenta", weight=3]; 573 -> 531[label="",style="dashed", color="red", weight=0]; 573[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];573 -> 735[label="",style="dashed", color="magenta", weight=3]; 573 -> 736[label="",style="dashed", color="magenta", weight=3]; 574 -> 532[label="",style="dashed", color="red", weight=0]; 574[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];574 -> 737[label="",style="dashed", color="magenta", weight=3]; 574 -> 738[label="",style="dashed", color="magenta", weight=3]; 575 -> 533[label="",style="dashed", color="red", weight=0]; 575[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];575 -> 739[label="",style="dashed", color="magenta", weight=3]; 575 -> 740[label="",style="dashed", color="magenta", weight=3]; 576 -> 534[label="",style="dashed", color="red", weight=0]; 576[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];576 -> 741[label="",style="dashed", color="magenta", weight=3]; 576 -> 742[label="",style="dashed", color="magenta", weight=3]; 577 -> 535[label="",style="dashed", color="red", weight=0]; 577[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];577 -> 743[label="",style="dashed", color="magenta", weight=3]; 577 -> 744[label="",style="dashed", color="magenta", weight=3]; 578 -> 536[label="",style="dashed", color="red", weight=0]; 578[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];578 -> 745[label="",style="dashed", color="magenta", weight=3]; 578 -> 746[label="",style="dashed", color="magenta", weight=3]; 579 -> 537[label="",style="dashed", color="red", weight=0]; 579[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];579 -> 747[label="",style="dashed", color="magenta", weight=3]; 579 -> 748[label="",style="dashed", color="magenta", weight=3]; 580 -> 538[label="",style="dashed", color="red", weight=0]; 580[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];580 -> 749[label="",style="dashed", color="magenta", weight=3]; 580 -> 750[label="",style="dashed", color="magenta", weight=3]; 581 -> 539[label="",style="dashed", color="red", weight=0]; 581[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];581 -> 751[label="",style="dashed", color="magenta", weight=3]; 581 -> 752[label="",style="dashed", color="magenta", weight=3]; 582 -> 540[label="",style="dashed", color="red", weight=0]; 582[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];582 -> 753[label="",style="dashed", color="magenta", weight=3]; 582 -> 754[label="",style="dashed", color="magenta", weight=3]; 583[label="compare2 (Left xuu62) (Left xuu63) False",fontsize=16,color="black",shape="box"];583 -> 755[label="",style="solid", color="black", weight=3]; 584[label="compare2 (Left xuu62) (Left xuu63) True",fontsize=16,color="black",shape="box"];584 -> 756[label="",style="solid", color="black", weight=3]; 585[label="compare1 (Left xuu40000) (Right xuu3000) True",fontsize=16,color="black",shape="box"];585 -> 757[label="",style="solid", color="black", weight=3]; 586[label="compare1 (Right xuu40000) (Left xuu3000) False",fontsize=16,color="black",shape="box"];586 -> 758[label="",style="solid", color="black", weight=3]; 587 -> 527[label="",style="dashed", color="red", weight=0]; 587[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];587 -> 759[label="",style="dashed", color="magenta", weight=3]; 587 -> 760[label="",style="dashed", color="magenta", weight=3]; 588 -> 528[label="",style="dashed", color="red", weight=0]; 588[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];588 -> 761[label="",style="dashed", color="magenta", weight=3]; 588 -> 762[label="",style="dashed", color="magenta", weight=3]; 589 -> 529[label="",style="dashed", color="red", weight=0]; 589[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];589 -> 763[label="",style="dashed", color="magenta", weight=3]; 589 -> 764[label="",style="dashed", color="magenta", weight=3]; 590 -> 530[label="",style="dashed", color="red", weight=0]; 590[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];590 -> 765[label="",style="dashed", color="magenta", weight=3]; 590 -> 766[label="",style="dashed", color="magenta", weight=3]; 591 -> 531[label="",style="dashed", color="red", weight=0]; 591[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];591 -> 767[label="",style="dashed", color="magenta", weight=3]; 591 -> 768[label="",style="dashed", color="magenta", weight=3]; 592 -> 532[label="",style="dashed", color="red", weight=0]; 592[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];592 -> 769[label="",style="dashed", color="magenta", weight=3]; 592 -> 770[label="",style="dashed", color="magenta", weight=3]; 593 -> 533[label="",style="dashed", color="red", weight=0]; 593[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];593 -> 771[label="",style="dashed", color="magenta", weight=3]; 593 -> 772[label="",style="dashed", color="magenta", weight=3]; 594 -> 534[label="",style="dashed", color="red", weight=0]; 594[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];594 -> 773[label="",style="dashed", color="magenta", weight=3]; 594 -> 774[label="",style="dashed", color="magenta", weight=3]; 595 -> 535[label="",style="dashed", color="red", weight=0]; 595[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];595 -> 775[label="",style="dashed", color="magenta", weight=3]; 595 -> 776[label="",style="dashed", color="magenta", weight=3]; 596 -> 536[label="",style="dashed", color="red", weight=0]; 596[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];596 -> 777[label="",style="dashed", color="magenta", weight=3]; 596 -> 778[label="",style="dashed", color="magenta", weight=3]; 597 -> 537[label="",style="dashed", color="red", weight=0]; 597[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];597 -> 779[label="",style="dashed", color="magenta", weight=3]; 597 -> 780[label="",style="dashed", color="magenta", weight=3]; 598 -> 538[label="",style="dashed", color="red", weight=0]; 598[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];598 -> 781[label="",style="dashed", color="magenta", weight=3]; 598 -> 782[label="",style="dashed", color="magenta", weight=3]; 599 -> 539[label="",style="dashed", color="red", weight=0]; 599[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];599 -> 783[label="",style="dashed", color="magenta", weight=3]; 599 -> 784[label="",style="dashed", color="magenta", weight=3]; 600 -> 540[label="",style="dashed", color="red", weight=0]; 600[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];600 -> 785[label="",style="dashed", color="magenta", weight=3]; 600 -> 786[label="",style="dashed", color="magenta", weight=3]; 601[label="compare2 (Right xuu69) (Right xuu70) False",fontsize=16,color="black",shape="box"];601 -> 787[label="",style="solid", color="black", weight=3]; 602[label="compare2 (Right xuu69) (Right xuu70) True",fontsize=16,color="black",shape="box"];602 -> 788[label="",style="solid", color="black", weight=3]; 603[label="Zero",fontsize=16,color="green",shape="box"];604[label="Succ xuu30000",fontsize=16,color="green",shape="box"];605[label="Succ xuu30000",fontsize=16,color="green",shape="box"];606[label="Zero",fontsize=16,color="green",shape="box"];607[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];607 -> 789[label="",style="solid", color="black", weight=3]; 608[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];608 -> 790[label="",style="solid", color="black", weight=3]; 609[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];609 -> 791[label="",style="solid", color="black", weight=3]; 610[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];610 -> 792[label="",style="solid", color="black", weight=3]; 611[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];611 -> 793[label="",style="solid", color="black", weight=3]; 612[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];612 -> 794[label="",style="solid", color="black", weight=3]; 613[label="compare1 False True True",fontsize=16,color="black",shape="box"];613 -> 795[label="",style="solid", color="black", weight=3]; 614[label="compare1 True False False",fontsize=16,color="black",shape="box"];614 -> 796[label="",style="solid", color="black", weight=3]; 987[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3925[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 1025[label="",style="solid", color="blue", weight=3]; 3926[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 1026[label="",style="solid", color="blue", weight=3]; 3927[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 1027[label="",style="solid", color="blue", weight=3]; 3928[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 1028[label="",style="solid", color="blue", weight=3]; 3929[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 1029[label="",style="solid", color="blue", weight=3]; 3930[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 1030[label="",style="solid", color="blue", weight=3]; 3931[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 1031[label="",style="solid", color="blue", weight=3]; 3932[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 1032[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 1033[label="",style="solid", color="blue", weight=3]; 3934[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 1034[label="",style="solid", color="blue", weight=3]; 3935[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 1035[label="",style="solid", color="blue", weight=3]; 3936[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 1036[label="",style="solid", color="blue", weight=3]; 3937[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 1037[label="",style="solid", color="blue", weight=3]; 3938[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 1038[label="",style="solid", color="blue", weight=3]; 988 -> 984[label="",style="dashed", color="red", weight=0]; 988[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];988 -> 1039[label="",style="dashed", color="magenta", weight=3]; 988 -> 1040[label="",style="dashed", color="magenta", weight=3]; 968[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) False",fontsize=16,color="black",shape="box"];968 -> 1041[label="",style="solid", color="black", weight=3]; 969[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) True",fontsize=16,color="black",shape="box"];969 -> 1042[label="",style="solid", color="black", weight=3]; 636 -> 389[label="",style="dashed", color="red", weight=0]; 636[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];636 -> 830[label="",style="dashed", color="magenta", weight=3]; 636 -> 831[label="",style="dashed", color="magenta", weight=3]; 637 -> 389[label="",style="dashed", color="red", weight=0]; 637[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];637 -> 832[label="",style="dashed", color="magenta", weight=3]; 637 -> 833[label="",style="dashed", color="magenta", weight=3]; 638 -> 389[label="",style="dashed", color="red", weight=0]; 638[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];638 -> 834[label="",style="dashed", color="magenta", weight=3]; 638 -> 835[label="",style="dashed", color="magenta", weight=3]; 639 -> 389[label="",style="dashed", color="red", weight=0]; 639[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];639 -> 836[label="",style="dashed", color="magenta", weight=3]; 639 -> 837[label="",style="dashed", color="magenta", weight=3]; 640 -> 389[label="",style="dashed", color="red", weight=0]; 640[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];640 -> 838[label="",style="dashed", color="magenta", weight=3]; 640 -> 839[label="",style="dashed", color="magenta", weight=3]; 641 -> 389[label="",style="dashed", color="red", weight=0]; 641[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];641 -> 840[label="",style="dashed", color="magenta", weight=3]; 641 -> 841[label="",style="dashed", color="magenta", weight=3]; 642 -> 389[label="",style="dashed", color="red", weight=0]; 642[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];642 -> 842[label="",style="dashed", color="magenta", weight=3]; 642 -> 843[label="",style="dashed", color="magenta", weight=3]; 643 -> 389[label="",style="dashed", color="red", weight=0]; 643[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];643 -> 844[label="",style="dashed", color="magenta", weight=3]; 643 -> 845[label="",style="dashed", color="magenta", weight=3]; 644 -> 376[label="",style="dashed", color="red", weight=0]; 644[label="primCmpNat xuu400000 xuu30000",fontsize=16,color="magenta"];644 -> 846[label="",style="dashed", color="magenta", weight=3]; 644 -> 847[label="",style="dashed", color="magenta", weight=3]; 645[label="GT",fontsize=16,color="green",shape="box"];646[label="LT",fontsize=16,color="green",shape="box"];647[label="EQ",fontsize=16,color="green",shape="box"];648[label="FiniteMap.Branch (xuu22 : xuu23) (FiniteMap.addListToFM0 xuu18 xuu24) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];648 -> 848[label="",style="dashed", color="green", weight=3]; 649[label="xuu21",fontsize=16,color="green",shape="box"];650[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];651[label="xuu24",fontsize=16,color="green",shape="box"];442[label="xuu401",fontsize=16,color="green",shape="box"];828[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];828 -> 849[label="",style="solid", color="black", weight=3]; 827[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu88",fontsize=16,color="burlywood",shape="triangle"];3939[label="xuu88/False",fontsize=10,color="white",style="solid",shape="box"];827 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 850[label="",style="solid", color="burlywood", weight=3]; 3940[label="xuu88/True",fontsize=10,color="white",style="solid",shape="box"];827 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 851[label="",style="solid", color="burlywood", weight=3]; 1724[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1724 -> 1734[label="",style="solid", color="black", weight=3]; 1730[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1730 -> 1745[label="",style="solid", color="black", weight=3]; 2146[label="primPlusInt (Pos xuu1940) xuu193",fontsize=16,color="burlywood",shape="box"];3941[label="xuu193/Pos xuu1930",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3941[label="",style="solid", color="burlywood", weight=9]; 3941 -> 2152[label="",style="solid", color="burlywood", weight=3]; 3942[label="xuu193/Neg xuu1930",fontsize=10,color="white",style="solid",shape="box"];2146 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 2153[label="",style="solid", color="burlywood", weight=3]; 2147[label="primPlusInt (Neg xuu1940) xuu193",fontsize=16,color="burlywood",shape="box"];3943[label="xuu193/Pos xuu1930",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 2154[label="",style="solid", color="burlywood", weight=3]; 3944[label="xuu193/Neg xuu1930",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 2155[label="",style="solid", color="burlywood", weight=3]; 3426[label="Zero",fontsize=16,color="green",shape="box"];3427[label="xuu34",fontsize=16,color="green",shape="box"];3428[label="xuu26",fontsize=16,color="green",shape="box"];3429[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3430[label="xuu31",fontsize=16,color="green",shape="box"];3425[label="FiniteMap.mkBranch (Pos (Succ xuu289)) xuu290 xuu291 xuu292 xuu293",fontsize=16,color="black",shape="triangle"];3425 -> 3596[label="",style="solid", color="black", weight=3]; 1056 -> 1723[label="",style="dashed", color="red", weight=0]; 1056[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1056 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1055[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 xuu115",fontsize=16,color="burlywood",shape="triangle"];3945[label="xuu115/False",fontsize=10,color="white",style="solid",shape="box"];1055 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 1061[label="",style="solid", color="burlywood", weight=3]; 3946[label="xuu115/True",fontsize=10,color="white",style="solid",shape="box"];1055 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 1062[label="",style="solid", color="burlywood", weight=3]; 652[label="Integer (primMulInt xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];652 -> 858[label="",style="dashed", color="green", weight=3]; 653[label="primMulInt (Pos xuu30000) (Pos xuu400010)",fontsize=16,color="black",shape="box"];653 -> 859[label="",style="solid", color="black", weight=3]; 654[label="primMulInt (Pos xuu30000) (Neg xuu400010)",fontsize=16,color="black",shape="box"];654 -> 860[label="",style="solid", color="black", weight=3]; 655[label="primMulInt (Neg xuu30000) (Pos xuu400010)",fontsize=16,color="black",shape="box"];655 -> 861[label="",style="solid", color="black", weight=3]; 656[label="primMulInt (Neg xuu30000) (Neg xuu400010)",fontsize=16,color="black",shape="box"];656 -> 862[label="",style="solid", color="black", weight=3]; 993 -> 527[label="",style="dashed", color="red", weight=0]; 993[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];994 -> 528[label="",style="dashed", color="red", weight=0]; 994[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];995 -> 529[label="",style="dashed", color="red", weight=0]; 995[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];996 -> 530[label="",style="dashed", color="red", weight=0]; 996[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];997 -> 531[label="",style="dashed", color="red", weight=0]; 997[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];998 -> 532[label="",style="dashed", color="red", weight=0]; 998[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];999 -> 533[label="",style="dashed", color="red", weight=0]; 999[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1000 -> 534[label="",style="dashed", color="red", weight=0]; 1000[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1001 -> 535[label="",style="dashed", color="red", weight=0]; 1001[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1002 -> 536[label="",style="dashed", color="red", weight=0]; 1002[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1003 -> 537[label="",style="dashed", color="red", weight=0]; 1003[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1004 -> 538[label="",style="dashed", color="red", weight=0]; 1004[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1005 -> 539[label="",style="dashed", color="red", weight=0]; 1005[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1006 -> 540[label="",style="dashed", color="red", weight=0]; 1006[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1007 -> 527[label="",style="dashed", color="red", weight=0]; 1007[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1007 -> 1063[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1064[label="",style="dashed", color="magenta", weight=3]; 1008 -> 528[label="",style="dashed", color="red", weight=0]; 1008[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1008 -> 1065[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1066[label="",style="dashed", color="magenta", weight=3]; 1009 -> 529[label="",style="dashed", color="red", weight=0]; 1009[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1009 -> 1067[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1068[label="",style="dashed", color="magenta", weight=3]; 1010 -> 530[label="",style="dashed", color="red", weight=0]; 1010[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1010 -> 1069[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1070[label="",style="dashed", color="magenta", weight=3]; 1011 -> 531[label="",style="dashed", color="red", weight=0]; 1011[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1011 -> 1071[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1072[label="",style="dashed", color="magenta", weight=3]; 1012 -> 532[label="",style="dashed", color="red", weight=0]; 1012[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1012 -> 1073[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1074[label="",style="dashed", color="magenta", weight=3]; 1013 -> 533[label="",style="dashed", color="red", weight=0]; 1013[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1013 -> 1075[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1076[label="",style="dashed", color="magenta", weight=3]; 1014 -> 534[label="",style="dashed", color="red", weight=0]; 1014[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1014 -> 1077[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1078[label="",style="dashed", color="magenta", weight=3]; 1015 -> 535[label="",style="dashed", color="red", weight=0]; 1015[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1015 -> 1079[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1080[label="",style="dashed", color="magenta", weight=3]; 1016 -> 536[label="",style="dashed", color="red", weight=0]; 1016[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1016 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1017 -> 537[label="",style="dashed", color="red", weight=0]; 1017[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1017 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1018 -> 538[label="",style="dashed", color="red", weight=0]; 1018[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1018 -> 1085[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1086[label="",style="dashed", color="magenta", weight=3]; 1019 -> 539[label="",style="dashed", color="red", weight=0]; 1019[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1019 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1020 -> 540[label="",style="dashed", color="red", weight=0]; 1020[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1020 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1021[label="False && xuu114",fontsize=16,color="black",shape="box"];1021 -> 1091[label="",style="solid", color="black", weight=3]; 1022[label="True && xuu114",fontsize=16,color="black",shape="box"];1022 -> 1092[label="",style="solid", color="black", weight=3]; 1023[label="compare1 (xuu96,xuu97) (xuu98,xuu99) ((xuu96,xuu97) <= (xuu98,xuu99))",fontsize=16,color="black",shape="box"];1023 -> 1093[label="",style="solid", color="black", weight=3]; 1024[label="EQ",fontsize=16,color="green",shape="box"];679[label="LT",fontsize=16,color="green",shape="box"];680[label="compare0 (Just xuu40000) Nothing otherwise",fontsize=16,color="black",shape="box"];680 -> 942[label="",style="solid", color="black", weight=3]; 681[label="xuu40000",fontsize=16,color="green",shape="box"];682[label="xuu3000",fontsize=16,color="green",shape="box"];527[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];527 -> 657[label="",style="solid", color="black", weight=3]; 683[label="xuu40000",fontsize=16,color="green",shape="box"];684[label="xuu3000",fontsize=16,color="green",shape="box"];528[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3947[label="xuu40000/xuu400000 : xuu400001",fontsize=10,color="white",style="solid",shape="box"];528 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 658[label="",style="solid", color="burlywood", weight=3]; 3948[label="xuu40000/[]",fontsize=10,color="white",style="solid",shape="box"];528 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 659[label="",style="solid", color="burlywood", weight=3]; 685[label="xuu40000",fontsize=16,color="green",shape="box"];686[label="xuu3000",fontsize=16,color="green",shape="box"];529[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3949[label="xuu40000/Left xuu400000",fontsize=10,color="white",style="solid",shape="box"];529 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 660[label="",style="solid", color="burlywood", weight=3]; 3950[label="xuu40000/Right xuu400000",fontsize=10,color="white",style="solid",shape="box"];529 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 661[label="",style="solid", color="burlywood", weight=3]; 687[label="xuu40000",fontsize=16,color="green",shape="box"];688[label="xuu3000",fontsize=16,color="green",shape="box"];530[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3951[label="xuu40000/Nothing",fontsize=10,color="white",style="solid",shape="box"];530 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 662[label="",style="solid", color="burlywood", weight=3]; 3952[label="xuu40000/Just xuu400000",fontsize=10,color="white",style="solid",shape="box"];530 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 663[label="",style="solid", color="burlywood", weight=3]; 689[label="xuu40000",fontsize=16,color="green",shape="box"];690[label="xuu3000",fontsize=16,color="green",shape="box"];531[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3953[label="xuu40000/(xuu400000,xuu400001,xuu400002)",fontsize=10,color="white",style="solid",shape="box"];531 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 664[label="",style="solid", color="burlywood", weight=3]; 691[label="xuu40000",fontsize=16,color="green",shape="box"];692[label="xuu3000",fontsize=16,color="green",shape="box"];532[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];532 -> 665[label="",style="solid", color="black", weight=3]; 693[label="xuu40000",fontsize=16,color="green",shape="box"];694[label="xuu3000",fontsize=16,color="green",shape="box"];533[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3954[label="xuu40000/Integer xuu400000",fontsize=10,color="white",style="solid",shape="box"];533 -> 3954[label="",style="solid", color="burlywood", weight=9]; 3954 -> 666[label="",style="solid", color="burlywood", weight=3]; 695[label="xuu40000",fontsize=16,color="green",shape="box"];696[label="xuu3000",fontsize=16,color="green",shape="box"];534[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3955[label="xuu40000/()",fontsize=10,color="white",style="solid",shape="box"];534 -> 3955[label="",style="solid", color="burlywood", weight=9]; 3955 -> 667[label="",style="solid", color="burlywood", weight=3]; 697[label="xuu40000",fontsize=16,color="green",shape="box"];698[label="xuu3000",fontsize=16,color="green",shape="box"];535[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3956[label="xuu40000/False",fontsize=10,color="white",style="solid",shape="box"];535 -> 3956[label="",style="solid", color="burlywood", weight=9]; 3956 -> 668[label="",style="solid", color="burlywood", weight=3]; 3957[label="xuu40000/True",fontsize=10,color="white",style="solid",shape="box"];535 -> 3957[label="",style="solid", color="burlywood", weight=9]; 3957 -> 669[label="",style="solid", color="burlywood", weight=3]; 699[label="xuu40000",fontsize=16,color="green",shape="box"];700[label="xuu3000",fontsize=16,color="green",shape="box"];536[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];536 -> 670[label="",style="solid", color="black", weight=3]; 701[label="xuu40000",fontsize=16,color="green",shape="box"];702[label="xuu3000",fontsize=16,color="green",shape="box"];537[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3958[label="xuu40000/(xuu400000,xuu400001)",fontsize=10,color="white",style="solid",shape="box"];537 -> 3958[label="",style="solid", color="burlywood", weight=9]; 3958 -> 671[label="",style="solid", color="burlywood", weight=3]; 703[label="xuu40000",fontsize=16,color="green",shape="box"];704[label="xuu3000",fontsize=16,color="green",shape="box"];538[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3959[label="xuu40000/xuu400000 :% xuu400001",fontsize=10,color="white",style="solid",shape="box"];538 -> 3959[label="",style="solid", color="burlywood", weight=9]; 3959 -> 672[label="",style="solid", color="burlywood", weight=3]; 705[label="xuu40000",fontsize=16,color="green",shape="box"];706[label="xuu3000",fontsize=16,color="green",shape="box"];539[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];3960[label="xuu40000/LT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3960[label="",style="solid", color="burlywood", weight=9]; 3960 -> 673[label="",style="solid", color="burlywood", weight=3]; 3961[label="xuu40000/EQ",fontsize=10,color="white",style="solid",shape="box"];539 -> 3961[label="",style="solid", color="burlywood", weight=9]; 3961 -> 674[label="",style="solid", color="burlywood", weight=3]; 3962[label="xuu40000/GT",fontsize=10,color="white",style="solid",shape="box"];539 -> 3962[label="",style="solid", color="burlywood", weight=9]; 3962 -> 675[label="",style="solid", color="burlywood", weight=3]; 707[label="xuu40000",fontsize=16,color="green",shape="box"];708[label="xuu3000",fontsize=16,color="green",shape="box"];540[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];540 -> 676[label="",style="solid", color="black", weight=3]; 709 -> 1161[label="",style="dashed", color="red", weight=0]; 709[label="compare1 (Just xuu55) (Just xuu56) (Just xuu55 <= Just xuu56)",fontsize=16,color="magenta"];709 -> 1162[label="",style="dashed", color="magenta", weight=3]; 709 -> 1163[label="",style="dashed", color="magenta", weight=3]; 709 -> 1164[label="",style="dashed", color="magenta", weight=3]; 710[label="EQ",fontsize=16,color="green",shape="box"];711[label="xuu3000",fontsize=16,color="green",shape="box"];712[label="Pos xuu400010",fontsize=16,color="green",shape="box"];713[label="Pos xuu30010",fontsize=16,color="green",shape="box"];714[label="xuu40000",fontsize=16,color="green",shape="box"];715[label="xuu3000",fontsize=16,color="green",shape="box"];716[label="Neg xuu400010",fontsize=16,color="green",shape="box"];717[label="Pos xuu30010",fontsize=16,color="green",shape="box"];718[label="xuu40000",fontsize=16,color="green",shape="box"];719[label="xuu3000",fontsize=16,color="green",shape="box"];720[label="Pos xuu400010",fontsize=16,color="green",shape="box"];721[label="Neg xuu30010",fontsize=16,color="green",shape="box"];722[label="xuu40000",fontsize=16,color="green",shape="box"];723[label="xuu3000",fontsize=16,color="green",shape="box"];724[label="Neg xuu400010",fontsize=16,color="green",shape="box"];725[label="Neg xuu30010",fontsize=16,color="green",shape="box"];726[label="xuu40000",fontsize=16,color="green",shape="box"];727[label="xuu40000",fontsize=16,color="green",shape="box"];728[label="xuu3000",fontsize=16,color="green",shape="box"];729[label="xuu40000",fontsize=16,color="green",shape="box"];730[label="xuu3000",fontsize=16,color="green",shape="box"];731[label="xuu40000",fontsize=16,color="green",shape="box"];732[label="xuu3000",fontsize=16,color="green",shape="box"];733[label="xuu40000",fontsize=16,color="green",shape="box"];734[label="xuu3000",fontsize=16,color="green",shape="box"];735[label="xuu40000",fontsize=16,color="green",shape="box"];736[label="xuu3000",fontsize=16,color="green",shape="box"];737[label="xuu40000",fontsize=16,color="green",shape="box"];738[label="xuu3000",fontsize=16,color="green",shape="box"];739[label="xuu40000",fontsize=16,color="green",shape="box"];740[label="xuu3000",fontsize=16,color="green",shape="box"];741[label="xuu40000",fontsize=16,color="green",shape="box"];742[label="xuu3000",fontsize=16,color="green",shape="box"];743[label="xuu40000",fontsize=16,color="green",shape="box"];744[label="xuu3000",fontsize=16,color="green",shape="box"];745[label="xuu40000",fontsize=16,color="green",shape="box"];746[label="xuu3000",fontsize=16,color="green",shape="box"];747[label="xuu40000",fontsize=16,color="green",shape="box"];748[label="xuu3000",fontsize=16,color="green",shape="box"];749[label="xuu40000",fontsize=16,color="green",shape="box"];750[label="xuu3000",fontsize=16,color="green",shape="box"];751[label="xuu40000",fontsize=16,color="green",shape="box"];752[label="xuu3000",fontsize=16,color="green",shape="box"];753[label="xuu40000",fontsize=16,color="green",shape="box"];754[label="xuu3000",fontsize=16,color="green",shape="box"];755 -> 1175[label="",style="dashed", color="red", weight=0]; 755[label="compare1 (Left xuu62) (Left xuu63) (Left xuu62 <= Left xuu63)",fontsize=16,color="magenta"];755 -> 1176[label="",style="dashed", color="magenta", weight=3]; 755 -> 1177[label="",style="dashed", color="magenta", weight=3]; 755 -> 1178[label="",style="dashed", color="magenta", weight=3]; 756[label="EQ",fontsize=16,color="green",shape="box"];757[label="LT",fontsize=16,color="green",shape="box"];758[label="compare0 (Right xuu40000) (Left xuu3000) otherwise",fontsize=16,color="black",shape="box"];758 -> 945[label="",style="solid", color="black", weight=3]; 759[label="xuu40000",fontsize=16,color="green",shape="box"];760[label="xuu3000",fontsize=16,color="green",shape="box"];761[label="xuu40000",fontsize=16,color="green",shape="box"];762[label="xuu3000",fontsize=16,color="green",shape="box"];763[label="xuu40000",fontsize=16,color="green",shape="box"];764[label="xuu3000",fontsize=16,color="green",shape="box"];765[label="xuu40000",fontsize=16,color="green",shape="box"];766[label="xuu3000",fontsize=16,color="green",shape="box"];767[label="xuu40000",fontsize=16,color="green",shape="box"];768[label="xuu3000",fontsize=16,color="green",shape="box"];769[label="xuu40000",fontsize=16,color="green",shape="box"];770[label="xuu3000",fontsize=16,color="green",shape="box"];771[label="xuu40000",fontsize=16,color="green",shape="box"];772[label="xuu3000",fontsize=16,color="green",shape="box"];773[label="xuu40000",fontsize=16,color="green",shape="box"];774[label="xuu3000",fontsize=16,color="green",shape="box"];775[label="xuu40000",fontsize=16,color="green",shape="box"];776[label="xuu3000",fontsize=16,color="green",shape="box"];777[label="xuu40000",fontsize=16,color="green",shape="box"];778[label="xuu3000",fontsize=16,color="green",shape="box"];779[label="xuu40000",fontsize=16,color="green",shape="box"];780[label="xuu3000",fontsize=16,color="green",shape="box"];781[label="xuu40000",fontsize=16,color="green",shape="box"];782[label="xuu3000",fontsize=16,color="green",shape="box"];783[label="xuu40000",fontsize=16,color="green",shape="box"];784[label="xuu3000",fontsize=16,color="green",shape="box"];785[label="xuu40000",fontsize=16,color="green",shape="box"];786[label="xuu3000",fontsize=16,color="green",shape="box"];787 -> 1186[label="",style="dashed", color="red", weight=0]; 787[label="compare1 (Right xuu69) (Right xuu70) (Right xuu69 <= Right xuu70)",fontsize=16,color="magenta"];787 -> 1187[label="",style="dashed", color="magenta", weight=3]; 787 -> 1188[label="",style="dashed", color="magenta", weight=3]; 787 -> 1189[label="",style="dashed", color="magenta", weight=3]; 788[label="EQ",fontsize=16,color="green",shape="box"];789[label="LT",fontsize=16,color="green",shape="box"];790[label="LT",fontsize=16,color="green",shape="box"];791[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];791 -> 947[label="",style="solid", color="black", weight=3]; 792[label="LT",fontsize=16,color="green",shape="box"];793[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];793 -> 948[label="",style="solid", color="black", weight=3]; 794[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];794 -> 949[label="",style="solid", color="black", weight=3]; 795[label="LT",fontsize=16,color="green",shape="box"];796[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];796 -> 950[label="",style="solid", color="black", weight=3]; 1025 -> 527[label="",style="dashed", color="red", weight=0]; 1025[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1025 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1026 -> 528[label="",style="dashed", color="red", weight=0]; 1026[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1026 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1027 -> 529[label="",style="dashed", color="red", weight=0]; 1027[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1027 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1028 -> 530[label="",style="dashed", color="red", weight=0]; 1028[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1028 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1029 -> 531[label="",style="dashed", color="red", weight=0]; 1029[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1029 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1030 -> 532[label="",style="dashed", color="red", weight=0]; 1030[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1030 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1031 -> 533[label="",style="dashed", color="red", weight=0]; 1031[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1031 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1032 -> 534[label="",style="dashed", color="red", weight=0]; 1032[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1032 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1109[label="",style="dashed", color="magenta", weight=3]; 1033 -> 535[label="",style="dashed", color="red", weight=0]; 1033[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1033 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1034 -> 536[label="",style="dashed", color="red", weight=0]; 1034[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1034 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1035 -> 537[label="",style="dashed", color="red", weight=0]; 1035[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1035 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1036 -> 538[label="",style="dashed", color="red", weight=0]; 1036[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1036 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1037 -> 539[label="",style="dashed", color="red", weight=0]; 1037[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1037 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1038 -> 540[label="",style="dashed", color="red", weight=0]; 1038[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1038 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1039[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3963[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 1122[label="",style="solid", color="blue", weight=3]; 3964[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 1123[label="",style="solid", color="blue", weight=3]; 3965[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 1124[label="",style="solid", color="blue", weight=3]; 3966[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 1125[label="",style="solid", color="blue", weight=3]; 3967[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 1126[label="",style="solid", color="blue", weight=3]; 3968[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 1127[label="",style="solid", color="blue", weight=3]; 3969[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 1128[label="",style="solid", color="blue", weight=3]; 3970[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 1129[label="",style="solid", color="blue", weight=3]; 3971[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 1130[label="",style="solid", color="blue", weight=3]; 3972[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 1131[label="",style="solid", color="blue", weight=3]; 3973[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 1132[label="",style="solid", color="blue", weight=3]; 3974[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 1133[label="",style="solid", color="blue", weight=3]; 3975[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 1134[label="",style="solid", color="blue", weight=3]; 3976[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 1135[label="",style="solid", color="blue", weight=3]; 1040[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];3977[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 1136[label="",style="solid", color="blue", weight=3]; 3978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 1137[label="",style="solid", color="blue", weight=3]; 3979[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 1138[label="",style="solid", color="blue", weight=3]; 3980[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 1139[label="",style="solid", color="blue", weight=3]; 3981[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 1140[label="",style="solid", color="blue", weight=3]; 3982[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 1141[label="",style="solid", color="blue", weight=3]; 3983[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 1142[label="",style="solid", color="blue", weight=3]; 3984[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 1143[label="",style="solid", color="blue", weight=3]; 3985[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 1144[label="",style="solid", color="blue", weight=3]; 3986[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 1145[label="",style="solid", color="blue", weight=3]; 3987[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 1146[label="",style="solid", color="blue", weight=3]; 3988[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 1147[label="",style="solid", color="blue", weight=3]; 3989[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 1148[label="",style="solid", color="blue", weight=3]; 3990[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1040 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 1149[label="",style="solid", color="blue", weight=3]; 1041[label="compare1 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) ((xuu80,xuu81,xuu82) <= (xuu83,xuu84,xuu85))",fontsize=16,color="black",shape="box"];1041 -> 1150[label="",style="solid", color="black", weight=3]; 1042[label="EQ",fontsize=16,color="green",shape="box"];830[label="xuu3000",fontsize=16,color="green",shape="box"];831[label="Pos xuu400010",fontsize=16,color="green",shape="box"];832[label="Pos xuu30010",fontsize=16,color="green",shape="box"];833[label="xuu40000",fontsize=16,color="green",shape="box"];834[label="xuu3000",fontsize=16,color="green",shape="box"];835[label="Neg xuu400010",fontsize=16,color="green",shape="box"];836[label="Pos xuu30010",fontsize=16,color="green",shape="box"];837[label="xuu40000",fontsize=16,color="green",shape="box"];838[label="xuu3000",fontsize=16,color="green",shape="box"];839[label="Pos xuu400010",fontsize=16,color="green",shape="box"];840[label="Neg xuu30010",fontsize=16,color="green",shape="box"];841[label="xuu40000",fontsize=16,color="green",shape="box"];842[label="xuu3000",fontsize=16,color="green",shape="box"];843[label="Neg xuu400010",fontsize=16,color="green",shape="box"];844[label="Neg xuu30010",fontsize=16,color="green",shape="box"];845[label="xuu40000",fontsize=16,color="green",shape="box"];846[label="xuu400000",fontsize=16,color="green",shape="box"];847[label="xuu30000",fontsize=16,color="green",shape="box"];848 -> 385[label="",style="dashed", color="red", weight=0]; 848[label="FiniteMap.addListToFM0 xuu18 xuu24",fontsize=16,color="magenta"];848 -> 1043[label="",style="dashed", color="magenta", weight=3]; 848 -> 1044[label="",style="dashed", color="magenta", weight=3]; 849 -> 539[label="",style="dashed", color="red", weight=0]; 849[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];849 -> 1045[label="",style="dashed", color="magenta", weight=3]; 849 -> 1046[label="",style="dashed", color="magenta", weight=3]; 850[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];850 -> 1047[label="",style="solid", color="black", weight=3]; 851[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];851 -> 1048[label="",style="solid", color="black", weight=3]; 1734[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];3991[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3991[label="",style="solid", color="burlywood", weight=9]; 3991 -> 2017[label="",style="solid", color="burlywood", weight=3]; 3992[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1734 -> 3992[label="",style="solid", color="burlywood", weight=9]; 3992 -> 2018[label="",style="solid", color="burlywood", weight=3]; 1745 -> 1734[label="",style="dashed", color="red", weight=0]; 1745[label="FiniteMap.sizeFM xuu26",fontsize=16,color="magenta"];1745 -> 2089[label="",style="dashed", color="magenta", weight=3]; 2152[label="primPlusInt (Pos xuu1940) (Pos xuu1930)",fontsize=16,color="black",shape="box"];2152 -> 2166[label="",style="solid", color="black", weight=3]; 2153[label="primPlusInt (Pos xuu1940) (Neg xuu1930)",fontsize=16,color="black",shape="box"];2153 -> 2167[label="",style="solid", color="black", weight=3]; 2154[label="primPlusInt (Neg xuu1940) (Pos xuu1930)",fontsize=16,color="black",shape="box"];2154 -> 2168[label="",style="solid", color="black", weight=3]; 2155[label="primPlusInt (Neg xuu1940) (Neg xuu1930)",fontsize=16,color="black",shape="box"];2155 -> 2169[label="",style="solid", color="black", weight=3]; 3596[label="FiniteMap.mkBranchResult xuu290 xuu291 xuu292 xuu293",fontsize=16,color="black",shape="box"];3596 -> 3649[label="",style="solid", color="black", weight=3]; 1725 -> 389[label="",style="dashed", color="red", weight=0]; 1725[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1725 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1723[label="xuu184 > xuu183",fontsize=16,color="black",shape="triangle"];1723 -> 1737[label="",style="solid", color="black", weight=3]; 1061[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="box"];1061 -> 1168[label="",style="solid", color="black", weight=3]; 1062[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];1062 -> 1169[label="",style="solid", color="black", weight=3]; 858 -> 447[label="",style="dashed", color="red", weight=0]; 858[label="primMulInt xuu30000 xuu400010",fontsize=16,color="magenta"];858 -> 1154[label="",style="dashed", color="magenta", weight=3]; 858 -> 1155[label="",style="dashed", color="magenta", weight=3]; 859[label="Pos (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];859 -> 1156[label="",style="dashed", color="green", weight=3]; 860[label="Neg (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];860 -> 1157[label="",style="dashed", color="green", weight=3]; 861[label="Neg (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];861 -> 1158[label="",style="dashed", color="green", weight=3]; 862[label="Pos (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];862 -> 1159[label="",style="dashed", color="green", weight=3]; 1063[label="xuu40001",fontsize=16,color="green",shape="box"];1064[label="xuu3001",fontsize=16,color="green",shape="box"];1065[label="xuu40001",fontsize=16,color="green",shape="box"];1066[label="xuu3001",fontsize=16,color="green",shape="box"];1067[label="xuu40001",fontsize=16,color="green",shape="box"];1068[label="xuu3001",fontsize=16,color="green",shape="box"];1069[label="xuu40001",fontsize=16,color="green",shape="box"];1070[label="xuu3001",fontsize=16,color="green",shape="box"];1071[label="xuu40001",fontsize=16,color="green",shape="box"];1072[label="xuu3001",fontsize=16,color="green",shape="box"];1073[label="xuu40001",fontsize=16,color="green",shape="box"];1074[label="xuu3001",fontsize=16,color="green",shape="box"];1075[label="xuu40001",fontsize=16,color="green",shape="box"];1076[label="xuu3001",fontsize=16,color="green",shape="box"];1077[label="xuu40001",fontsize=16,color="green",shape="box"];1078[label="xuu3001",fontsize=16,color="green",shape="box"];1079[label="xuu40001",fontsize=16,color="green",shape="box"];1080[label="xuu3001",fontsize=16,color="green",shape="box"];1081[label="xuu40001",fontsize=16,color="green",shape="box"];1082[label="xuu3001",fontsize=16,color="green",shape="box"];1083[label="xuu40001",fontsize=16,color="green",shape="box"];1084[label="xuu3001",fontsize=16,color="green",shape="box"];1085[label="xuu40001",fontsize=16,color="green",shape="box"];1086[label="xuu3001",fontsize=16,color="green",shape="box"];1087[label="xuu40001",fontsize=16,color="green",shape="box"];1088[label="xuu3001",fontsize=16,color="green",shape="box"];1089[label="xuu40001",fontsize=16,color="green",shape="box"];1090[label="xuu3001",fontsize=16,color="green",shape="box"];1091[label="False",fontsize=16,color="green",shape="box"];1092[label="xuu114",fontsize=16,color="green",shape="box"];1093 -> 1285[label="",style="dashed", color="red", weight=0]; 1093[label="compare1 (xuu96,xuu97) (xuu98,xuu99) (xuu96 < xuu98 || xuu96 == xuu98 && xuu97 <= xuu99)",fontsize=16,color="magenta"];1093 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1291[label="",style="dashed", color="magenta", weight=3]; 942[label="compare0 (Just xuu40000) Nothing True",fontsize=16,color="black",shape="box"];942 -> 1160[label="",style="solid", color="black", weight=3]; 657[label="primEqInt xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3993[label="xuu40000/Pos xuu400000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3993[label="",style="solid", color="burlywood", weight=9]; 3993 -> 863[label="",style="solid", color="burlywood", weight=3]; 3994[label="xuu40000/Neg xuu400000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3994[label="",style="solid", color="burlywood", weight=9]; 3994 -> 864[label="",style="solid", color="burlywood", weight=3]; 658[label="xuu400000 : xuu400001 == xuu3000",fontsize=16,color="burlywood",shape="box"];3995[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];658 -> 3995[label="",style="solid", color="burlywood", weight=9]; 3995 -> 865[label="",style="solid", color="burlywood", weight=3]; 3996[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];658 -> 3996[label="",style="solid", color="burlywood", weight=9]; 3996 -> 866[label="",style="solid", color="burlywood", weight=3]; 659[label="[] == xuu3000",fontsize=16,color="burlywood",shape="box"];3997[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];659 -> 3997[label="",style="solid", color="burlywood", weight=9]; 3997 -> 867[label="",style="solid", color="burlywood", weight=3]; 3998[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];659 -> 3998[label="",style="solid", color="burlywood", weight=9]; 3998 -> 868[label="",style="solid", color="burlywood", weight=3]; 660[label="Left xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];3999[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];660 -> 3999[label="",style="solid", color="burlywood", weight=9]; 3999 -> 869[label="",style="solid", color="burlywood", weight=3]; 4000[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];660 -> 4000[label="",style="solid", color="burlywood", weight=9]; 4000 -> 870[label="",style="solid", color="burlywood", weight=3]; 661[label="Right xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4001[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];661 -> 4001[label="",style="solid", color="burlywood", weight=9]; 4001 -> 871[label="",style="solid", color="burlywood", weight=3]; 4002[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];661 -> 4002[label="",style="solid", color="burlywood", weight=9]; 4002 -> 872[label="",style="solid", color="burlywood", weight=3]; 662[label="Nothing == xuu3000",fontsize=16,color="burlywood",shape="box"];4003[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];662 -> 4003[label="",style="solid", color="burlywood", weight=9]; 4003 -> 873[label="",style="solid", color="burlywood", weight=3]; 4004[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];662 -> 4004[label="",style="solid", color="burlywood", weight=9]; 4004 -> 874[label="",style="solid", color="burlywood", weight=3]; 663[label="Just xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4005[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];663 -> 4005[label="",style="solid", color="burlywood", weight=9]; 4005 -> 875[label="",style="solid", color="burlywood", weight=3]; 4006[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];663 -> 4006[label="",style="solid", color="burlywood", weight=9]; 4006 -> 876[label="",style="solid", color="burlywood", weight=3]; 664[label="(xuu400000,xuu400001,xuu400002) == xuu3000",fontsize=16,color="burlywood",shape="box"];4007[label="xuu3000/(xuu30000,xuu30001,xuu30002)",fontsize=10,color="white",style="solid",shape="box"];664 -> 4007[label="",style="solid", color="burlywood", weight=9]; 4007 -> 877[label="",style="solid", color="burlywood", weight=3]; 665[label="primEqChar xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4008[label="xuu40000/Char xuu400000",fontsize=10,color="white",style="solid",shape="box"];665 -> 4008[label="",style="solid", color="burlywood", weight=9]; 4008 -> 878[label="",style="solid", color="burlywood", weight=3]; 666[label="Integer xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4009[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4009[label="",style="solid", color="burlywood", weight=9]; 4009 -> 879[label="",style="solid", color="burlywood", weight=3]; 667[label="() == xuu3000",fontsize=16,color="burlywood",shape="box"];4010[label="xuu3000/()",fontsize=10,color="white",style="solid",shape="box"];667 -> 4010[label="",style="solid", color="burlywood", weight=9]; 4010 -> 880[label="",style="solid", color="burlywood", weight=3]; 668[label="False == xuu3000",fontsize=16,color="burlywood",shape="box"];4011[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];668 -> 4011[label="",style="solid", color="burlywood", weight=9]; 4011 -> 881[label="",style="solid", color="burlywood", weight=3]; 4012[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];668 -> 4012[label="",style="solid", color="burlywood", weight=9]; 4012 -> 882[label="",style="solid", color="burlywood", weight=3]; 669[label="True == xuu3000",fontsize=16,color="burlywood",shape="box"];4013[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];669 -> 4013[label="",style="solid", color="burlywood", weight=9]; 4013 -> 883[label="",style="solid", color="burlywood", weight=3]; 4014[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];669 -> 4014[label="",style="solid", color="burlywood", weight=9]; 4014 -> 884[label="",style="solid", color="burlywood", weight=3]; 670[label="primEqFloat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4015[label="xuu40000/Float xuu400000 xuu400001",fontsize=10,color="white",style="solid",shape="box"];670 -> 4015[label="",style="solid", color="burlywood", weight=9]; 4015 -> 885[label="",style="solid", color="burlywood", weight=3]; 671[label="(xuu400000,xuu400001) == xuu3000",fontsize=16,color="burlywood",shape="box"];4016[label="xuu3000/(xuu30000,xuu30001)",fontsize=10,color="white",style="solid",shape="box"];671 -> 4016[label="",style="solid", color="burlywood", weight=9]; 4016 -> 886[label="",style="solid", color="burlywood", weight=3]; 672[label="xuu400000 :% xuu400001 == xuu3000",fontsize=16,color="burlywood",shape="box"];4017[label="xuu3000/xuu30000 :% xuu30001",fontsize=10,color="white",style="solid",shape="box"];672 -> 4017[label="",style="solid", color="burlywood", weight=9]; 4017 -> 887[label="",style="solid", color="burlywood", weight=3]; 673[label="LT == xuu3000",fontsize=16,color="burlywood",shape="box"];4018[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];673 -> 4018[label="",style="solid", color="burlywood", weight=9]; 4018 -> 888[label="",style="solid", color="burlywood", weight=3]; 4019[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];673 -> 4019[label="",style="solid", color="burlywood", weight=9]; 4019 -> 889[label="",style="solid", color="burlywood", weight=3]; 4020[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];673 -> 4020[label="",style="solid", color="burlywood", weight=9]; 4020 -> 890[label="",style="solid", color="burlywood", weight=3]; 674[label="EQ == xuu3000",fontsize=16,color="burlywood",shape="box"];4021[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];674 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 891[label="",style="solid", color="burlywood", weight=3]; 4022[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];674 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 892[label="",style="solid", color="burlywood", weight=3]; 4023[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];674 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 893[label="",style="solid", color="burlywood", weight=3]; 675[label="GT == xuu3000",fontsize=16,color="burlywood",shape="box"];4024[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];675 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 894[label="",style="solid", color="burlywood", weight=3]; 4025[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];675 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 895[label="",style="solid", color="burlywood", weight=3]; 4026[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];675 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 896[label="",style="solid", color="burlywood", weight=3]; 676[label="primEqDouble xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4027[label="xuu40000/Double xuu400000 xuu400001",fontsize=10,color="white",style="solid",shape="box"];676 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 897[label="",style="solid", color="burlywood", weight=3]; 1162[label="Just xuu55 <= Just xuu56",fontsize=16,color="black",shape="box"];1162 -> 1172[label="",style="solid", color="black", weight=3]; 1163[label="xuu56",fontsize=16,color="green",shape="box"];1164[label="xuu55",fontsize=16,color="green",shape="box"];1161[label="compare1 (Just xuu122) (Just xuu123) xuu124",fontsize=16,color="burlywood",shape="triangle"];4028[label="xuu124/False",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 1173[label="",style="solid", color="burlywood", weight=3]; 4029[label="xuu124/True",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4029[label="",style="solid", color="burlywood", weight=9]; 4029 -> 1174[label="",style="solid", color="burlywood", weight=3]; 1176[label="xuu62",fontsize=16,color="green",shape="box"];1177[label="xuu63",fontsize=16,color="green",shape="box"];1178[label="Left xuu62 <= Left xuu63",fontsize=16,color="black",shape="box"];1178 -> 1182[label="",style="solid", color="black", weight=3]; 1175[label="compare1 (Left xuu130) (Left xuu131) xuu132",fontsize=16,color="burlywood",shape="triangle"];4030[label="xuu132/False",fontsize=10,color="white",style="solid",shape="box"];1175 -> 4030[label="",style="solid", color="burlywood", weight=9]; 4030 -> 1183[label="",style="solid", color="burlywood", weight=3]; 4031[label="xuu132/True",fontsize=10,color="white",style="solid",shape="box"];1175 -> 4031[label="",style="solid", color="burlywood", weight=9]; 4031 -> 1184[label="",style="solid", color="burlywood", weight=3]; 945[label="compare0 (Right xuu40000) (Left xuu3000) True",fontsize=16,color="black",shape="box"];945 -> 1185[label="",style="solid", color="black", weight=3]; 1187[label="xuu70",fontsize=16,color="green",shape="box"];1188[label="Right xuu69 <= Right xuu70",fontsize=16,color="black",shape="box"];1188 -> 1193[label="",style="solid", color="black", weight=3]; 1189[label="xuu69",fontsize=16,color="green",shape="box"];1186[label="compare1 (Right xuu137) (Right xuu138) xuu139",fontsize=16,color="burlywood",shape="triangle"];4032[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];1186 -> 4032[label="",style="solid", color="burlywood", weight=9]; 4032 -> 1194[label="",style="solid", color="burlywood", weight=3]; 4033[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];1186 -> 4033[label="",style="solid", color="burlywood", weight=9]; 4033 -> 1195[label="",style="solid", color="burlywood", weight=3]; 947[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];947 -> 1196[label="",style="solid", color="black", weight=3]; 948[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];948 -> 1197[label="",style="solid", color="black", weight=3]; 949[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];949 -> 1198[label="",style="solid", color="black", weight=3]; 950[label="compare0 True False True",fontsize=16,color="black",shape="box"];950 -> 1199[label="",style="solid", color="black", weight=3]; 1094[label="xuu40000",fontsize=16,color="green",shape="box"];1095[label="xuu3000",fontsize=16,color="green",shape="box"];1096[label="xuu40000",fontsize=16,color="green",shape="box"];1097[label="xuu3000",fontsize=16,color="green",shape="box"];1098[label="xuu40000",fontsize=16,color="green",shape="box"];1099[label="xuu3000",fontsize=16,color="green",shape="box"];1100[label="xuu40000",fontsize=16,color="green",shape="box"];1101[label="xuu3000",fontsize=16,color="green",shape="box"];1102[label="xuu40000",fontsize=16,color="green",shape="box"];1103[label="xuu3000",fontsize=16,color="green",shape="box"];1104[label="xuu40000",fontsize=16,color="green",shape="box"];1105[label="xuu3000",fontsize=16,color="green",shape="box"];1106[label="xuu40000",fontsize=16,color="green",shape="box"];1107[label="xuu3000",fontsize=16,color="green",shape="box"];1108[label="xuu40000",fontsize=16,color="green",shape="box"];1109[label="xuu3000",fontsize=16,color="green",shape="box"];1110[label="xuu40000",fontsize=16,color="green",shape="box"];1111[label="xuu3000",fontsize=16,color="green",shape="box"];1112[label="xuu40000",fontsize=16,color="green",shape="box"];1113[label="xuu3000",fontsize=16,color="green",shape="box"];1114[label="xuu40000",fontsize=16,color="green",shape="box"];1115[label="xuu3000",fontsize=16,color="green",shape="box"];1116[label="xuu40000",fontsize=16,color="green",shape="box"];1117[label="xuu3000",fontsize=16,color="green",shape="box"];1118[label="xuu40000",fontsize=16,color="green",shape="box"];1119[label="xuu3000",fontsize=16,color="green",shape="box"];1120[label="xuu40000",fontsize=16,color="green",shape="box"];1121[label="xuu3000",fontsize=16,color="green",shape="box"];1122 -> 527[label="",style="dashed", color="red", weight=0]; 1122[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1122 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1123 -> 528[label="",style="dashed", color="red", weight=0]; 1123[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1123 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1124 -> 529[label="",style="dashed", color="red", weight=0]; 1124[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1124 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1125 -> 530[label="",style="dashed", color="red", weight=0]; 1125[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1125 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1126 -> 531[label="",style="dashed", color="red", weight=0]; 1126[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1126 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1127 -> 532[label="",style="dashed", color="red", weight=0]; 1127[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1127 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1128 -> 533[label="",style="dashed", color="red", weight=0]; 1128[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1128 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1129 -> 534[label="",style="dashed", color="red", weight=0]; 1129[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1129 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1130 -> 535[label="",style="dashed", color="red", weight=0]; 1130[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1130 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1131 -> 536[label="",style="dashed", color="red", weight=0]; 1131[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1131 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1132 -> 537[label="",style="dashed", color="red", weight=0]; 1132[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1132 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1133 -> 538[label="",style="dashed", color="red", weight=0]; 1133[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1133 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1134 -> 539[label="",style="dashed", color="red", weight=0]; 1134[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1134 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1135 -> 540[label="",style="dashed", color="red", weight=0]; 1135[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1135 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1136 -> 527[label="",style="dashed", color="red", weight=0]; 1136[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1136 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1137 -> 528[label="",style="dashed", color="red", weight=0]; 1137[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1137 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1138 -> 529[label="",style="dashed", color="red", weight=0]; 1138[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1138 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1139 -> 530[label="",style="dashed", color="red", weight=0]; 1139[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1139 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1140 -> 531[label="",style="dashed", color="red", weight=0]; 1140[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1140 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1141 -> 532[label="",style="dashed", color="red", weight=0]; 1141[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1141 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1142 -> 533[label="",style="dashed", color="red", weight=0]; 1142[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1142 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1143 -> 534[label="",style="dashed", color="red", weight=0]; 1143[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1143 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1144 -> 535[label="",style="dashed", color="red", weight=0]; 1144[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1144 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1145 -> 536[label="",style="dashed", color="red", weight=0]; 1145[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1145 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1146 -> 537[label="",style="dashed", color="red", weight=0]; 1146[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1146 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1147 -> 538[label="",style="dashed", color="red", weight=0]; 1147[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1147 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1148 -> 539[label="",style="dashed", color="red", weight=0]; 1148[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1148 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1149 -> 540[label="",style="dashed", color="red", weight=0]; 1149[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1149 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1403[label="",style="dashed", color="red", weight=0]; 1150[label="compare1 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) (xuu80 < xuu83 || xuu80 == xuu83 && (xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85))",fontsize=16,color="magenta"];1150 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1043[label="xuu18",fontsize=16,color="green",shape="box"];1044[label="xuu24",fontsize=16,color="green",shape="box"];1045 -> 172[label="",style="dashed", color="red", weight=0]; 1045[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1045 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1046[label="LT",fontsize=16,color="green",shape="box"];1047 -> 1696[label="",style="dashed", color="red", weight=0]; 1047[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];1047 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1048 -> 3425[label="",style="dashed", color="red", weight=0]; 1048[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu31 xuu33 xuu38",fontsize=16,color="magenta"];1048 -> 3431[label="",style="dashed", color="magenta", weight=3]; 1048 -> 3432[label="",style="dashed", color="magenta", weight=3]; 1048 -> 3433[label="",style="dashed", color="magenta", weight=3]; 1048 -> 3434[label="",style="dashed", color="magenta", weight=3]; 1048 -> 3435[label="",style="dashed", color="magenta", weight=3]; 2017[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2017 -> 2085[label="",style="solid", color="black", weight=3]; 2018[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2018 -> 2086[label="",style="solid", color="black", weight=3]; 2089[label="xuu26",fontsize=16,color="green",shape="box"];2166[label="Pos (primPlusNat xuu1940 xuu1930)",fontsize=16,color="green",shape="box"];2166 -> 2172[label="",style="dashed", color="green", weight=3]; 2167[label="primMinusNat xuu1940 xuu1930",fontsize=16,color="burlywood",shape="triangle"];4034[label="xuu1940/Succ xuu19400",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4034[label="",style="solid", color="burlywood", weight=9]; 4034 -> 2173[label="",style="solid", color="burlywood", weight=3]; 4035[label="xuu1940/Zero",fontsize=10,color="white",style="solid",shape="box"];2167 -> 4035[label="",style="solid", color="burlywood", weight=9]; 4035 -> 2174[label="",style="solid", color="burlywood", weight=3]; 2168 -> 2167[label="",style="dashed", color="red", weight=0]; 2168[label="primMinusNat xuu1930 xuu1940",fontsize=16,color="magenta"];2168 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2169[label="Neg (primPlusNat xuu1940 xuu1930)",fontsize=16,color="green",shape="box"];2169 -> 2177[label="",style="dashed", color="green", weight=3]; 3649[label="FiniteMap.Branch xuu290 xuu291 (FiniteMap.mkBranchUnbox xuu292 xuu293 xuu290 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290 + FiniteMap.mkBranchRight_size xuu292 xuu293 xuu290)) xuu292 xuu293",fontsize=16,color="green",shape="box"];3649 -> 3655[label="",style="dashed", color="green", weight=3]; 1735 -> 1730[label="",style="dashed", color="red", weight=0]; 1735[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1736[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1736 -> 2019[label="",style="solid", color="black", weight=3]; 1737 -> 539[label="",style="dashed", color="red", weight=0]; 1737[label="compare xuu184 xuu183 == GT",fontsize=16,color="magenta"];1737 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1737 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1719[label="",style="dashed", color="red", weight=0]; 1168[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];1168 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1169[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 xuu34 xuu26 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4036[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 1275[label="",style="solid", color="burlywood", weight=3]; 4037[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 1276[label="",style="solid", color="burlywood", weight=3]; 1154[label="xuu400010",fontsize=16,color="green",shape="box"];1155[label="xuu30000",fontsize=16,color="green",shape="box"];1156[label="primMulNat xuu30000 xuu400010",fontsize=16,color="burlywood",shape="triangle"];4038[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 1277[label="",style="solid", color="burlywood", weight=3]; 4039[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 1278[label="",style="solid", color="burlywood", weight=3]; 1157 -> 1156[label="",style="dashed", color="red", weight=0]; 1157[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1157 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1156[label="",style="dashed", color="red", weight=0]; 1158[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1158 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1156[label="",style="dashed", color="red", weight=0]; 1159[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1159 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1286[label="xuu96",fontsize=16,color="green",shape="box"];1287[label="xuu96 < xuu98",fontsize=16,color="blue",shape="box"];4040[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 1298[label="",style="solid", color="blue", weight=3]; 4041[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 1299[label="",style="solid", color="blue", weight=3]; 4042[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 1300[label="",style="solid", color="blue", weight=3]; 4043[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 1301[label="",style="solid", color="blue", weight=3]; 4044[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 1302[label="",style="solid", color="blue", weight=3]; 4045[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 1303[label="",style="solid", color="blue", weight=3]; 4046[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 1304[label="",style="solid", color="blue", weight=3]; 4047[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 1305[label="",style="solid", color="blue", weight=3]; 4048[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 1306[label="",style="solid", color="blue", weight=3]; 4049[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 1307[label="",style="solid", color="blue", weight=3]; 4050[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 1308[label="",style="solid", color="blue", weight=3]; 4051[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 1309[label="",style="solid", color="blue", weight=3]; 4052[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 1310[label="",style="solid", color="blue", weight=3]; 4053[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 1311[label="",style="solid", color="blue", weight=3]; 1288[label="xuu99",fontsize=16,color="green",shape="box"];1289[label="xuu98",fontsize=16,color="green",shape="box"];1290[label="xuu97",fontsize=16,color="green",shape="box"];1291 -> 984[label="",style="dashed", color="red", weight=0]; 1291[label="xuu96 == xuu98 && xuu97 <= xuu99",fontsize=16,color="magenta"];1291 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1285[label="compare1 (xuu153,xuu154) (xuu155,xuu156) (xuu157 || xuu158)",fontsize=16,color="burlywood",shape="triangle"];4054[label="xuu157/False",fontsize=10,color="white",style="solid",shape="box"];1285 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 1314[label="",style="solid", color="burlywood", weight=3]; 4055[label="xuu157/True",fontsize=10,color="white",style="solid",shape="box"];1285 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1160[label="GT",fontsize=16,color="green",shape="box"];863[label="primEqInt (Pos xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4056[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];863 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 1316[label="",style="solid", color="burlywood", weight=3]; 4057[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];863 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 1317[label="",style="solid", color="burlywood", weight=3]; 864[label="primEqInt (Neg xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4058[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];864 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 1318[label="",style="solid", color="burlywood", weight=3]; 4059[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];864 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 1319[label="",style="solid", color="burlywood", weight=3]; 865[label="xuu400000 : xuu400001 == xuu30000 : xuu30001",fontsize=16,color="black",shape="box"];865 -> 1320[label="",style="solid", color="black", weight=3]; 866[label="xuu400000 : xuu400001 == []",fontsize=16,color="black",shape="box"];866 -> 1321[label="",style="solid", color="black", weight=3]; 867[label="[] == xuu30000 : xuu30001",fontsize=16,color="black",shape="box"];867 -> 1322[label="",style="solid", color="black", weight=3]; 868[label="[] == []",fontsize=16,color="black",shape="box"];868 -> 1323[label="",style="solid", color="black", weight=3]; 869[label="Left xuu400000 == Left xuu30000",fontsize=16,color="black",shape="box"];869 -> 1324[label="",style="solid", color="black", weight=3]; 870[label="Left xuu400000 == Right xuu30000",fontsize=16,color="black",shape="box"];870 -> 1325[label="",style="solid", color="black", weight=3]; 871[label="Right xuu400000 == Left xuu30000",fontsize=16,color="black",shape="box"];871 -> 1326[label="",style="solid", color="black", weight=3]; 872[label="Right xuu400000 == Right xuu30000",fontsize=16,color="black",shape="box"];872 -> 1327[label="",style="solid", color="black", weight=3]; 873[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];873 -> 1328[label="",style="solid", color="black", weight=3]; 874[label="Nothing == Just xuu30000",fontsize=16,color="black",shape="box"];874 -> 1329[label="",style="solid", color="black", weight=3]; 875[label="Just xuu400000 == Nothing",fontsize=16,color="black",shape="box"];875 -> 1330[label="",style="solid", color="black", weight=3]; 876[label="Just xuu400000 == Just xuu30000",fontsize=16,color="black",shape="box"];876 -> 1331[label="",style="solid", color="black", weight=3]; 877[label="(xuu400000,xuu400001,xuu400002) == (xuu30000,xuu30001,xuu30002)",fontsize=16,color="black",shape="box"];877 -> 1332[label="",style="solid", color="black", weight=3]; 878[label="primEqChar (Char xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4060[label="xuu3000/Char xuu30000",fontsize=10,color="white",style="solid",shape="box"];878 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 1333[label="",style="solid", color="burlywood", weight=3]; 879[label="Integer xuu400000 == Integer xuu30000",fontsize=16,color="black",shape="box"];879 -> 1334[label="",style="solid", color="black", weight=3]; 880[label="() == ()",fontsize=16,color="black",shape="box"];880 -> 1335[label="",style="solid", color="black", weight=3]; 881[label="False == False",fontsize=16,color="black",shape="box"];881 -> 1336[label="",style="solid", color="black", weight=3]; 882[label="False == True",fontsize=16,color="black",shape="box"];882 -> 1337[label="",style="solid", color="black", weight=3]; 883[label="True == False",fontsize=16,color="black",shape="box"];883 -> 1338[label="",style="solid", color="black", weight=3]; 884[label="True == True",fontsize=16,color="black",shape="box"];884 -> 1339[label="",style="solid", color="black", weight=3]; 885[label="primEqFloat (Float xuu400000 xuu400001) xuu3000",fontsize=16,color="burlywood",shape="box"];4061[label="xuu3000/Float xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];885 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 1340[label="",style="solid", color="burlywood", weight=3]; 886[label="(xuu400000,xuu400001) == (xuu30000,xuu30001)",fontsize=16,color="black",shape="box"];886 -> 1341[label="",style="solid", color="black", weight=3]; 887[label="xuu400000 :% xuu400001 == xuu30000 :% xuu30001",fontsize=16,color="black",shape="box"];887 -> 1342[label="",style="solid", color="black", weight=3]; 888[label="LT == LT",fontsize=16,color="black",shape="box"];888 -> 1343[label="",style="solid", color="black", weight=3]; 889[label="LT == EQ",fontsize=16,color="black",shape="box"];889 -> 1344[label="",style="solid", color="black", weight=3]; 890[label="LT == GT",fontsize=16,color="black",shape="box"];890 -> 1345[label="",style="solid", color="black", weight=3]; 891[label="EQ == LT",fontsize=16,color="black",shape="box"];891 -> 1346[label="",style="solid", color="black", weight=3]; 892[label="EQ == EQ",fontsize=16,color="black",shape="box"];892 -> 1347[label="",style="solid", color="black", weight=3]; 893[label="EQ == GT",fontsize=16,color="black",shape="box"];893 -> 1348[label="",style="solid", color="black", weight=3]; 894[label="GT == LT",fontsize=16,color="black",shape="box"];894 -> 1349[label="",style="solid", color="black", weight=3]; 895[label="GT == EQ",fontsize=16,color="black",shape="box"];895 -> 1350[label="",style="solid", color="black", weight=3]; 896[label="GT == GT",fontsize=16,color="black",shape="box"];896 -> 1351[label="",style="solid", color="black", weight=3]; 897[label="primEqDouble (Double xuu400000 xuu400001) xuu3000",fontsize=16,color="burlywood",shape="box"];4062[label="xuu3000/Double xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];897 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 1352[label="",style="solid", color="burlywood", weight=3]; 1172[label="xuu55 <= xuu56",fontsize=16,color="blue",shape="box"];4063[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4063[label="",style="solid", color="blue", weight=9]; 4063 -> 1353[label="",style="solid", color="blue", weight=3]; 4064[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4064[label="",style="solid", color="blue", weight=9]; 4064 -> 1354[label="",style="solid", color="blue", weight=3]; 4065[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 1355[label="",style="solid", color="blue", weight=3]; 4066[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4066[label="",style="solid", color="blue", weight=9]; 4066 -> 1356[label="",style="solid", color="blue", weight=3]; 4067[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 1357[label="",style="solid", color="blue", weight=3]; 4068[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4068[label="",style="solid", color="blue", weight=9]; 4068 -> 1358[label="",style="solid", color="blue", weight=3]; 4069[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4069[label="",style="solid", color="blue", weight=9]; 4069 -> 1359[label="",style="solid", color="blue", weight=3]; 4070[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 1360[label="",style="solid", color="blue", weight=3]; 4071[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 1361[label="",style="solid", color="blue", weight=3]; 4072[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 1362[label="",style="solid", color="blue", weight=3]; 4073[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 1363[label="",style="solid", color="blue", weight=3]; 4074[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 1364[label="",style="solid", color="blue", weight=3]; 4075[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 1365[label="",style="solid", color="blue", weight=3]; 4076[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 1366[label="",style="solid", color="blue", weight=3]; 1173[label="compare1 (Just xuu122) (Just xuu123) False",fontsize=16,color="black",shape="box"];1173 -> 1367[label="",style="solid", color="black", weight=3]; 1174[label="compare1 (Just xuu122) (Just xuu123) True",fontsize=16,color="black",shape="box"];1174 -> 1368[label="",style="solid", color="black", weight=3]; 1182[label="xuu62 <= xuu63",fontsize=16,color="blue",shape="box"];4077[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 1369[label="",style="solid", color="blue", weight=3]; 4078[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 1370[label="",style="solid", color="blue", weight=3]; 4079[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 1371[label="",style="solid", color="blue", weight=3]; 4080[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 1372[label="",style="solid", color="blue", weight=3]; 4081[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 1373[label="",style="solid", color="blue", weight=3]; 4082[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 1374[label="",style="solid", color="blue", weight=3]; 4083[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 1375[label="",style="solid", color="blue", weight=3]; 4084[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 1376[label="",style="solid", color="blue", weight=3]; 4085[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 1377[label="",style="solid", color="blue", weight=3]; 4086[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 1378[label="",style="solid", color="blue", weight=3]; 4087[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 1379[label="",style="solid", color="blue", weight=3]; 4088[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 1380[label="",style="solid", color="blue", weight=3]; 4089[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 1381[label="",style="solid", color="blue", weight=3]; 4090[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1182 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 1382[label="",style="solid", color="blue", weight=3]; 1183[label="compare1 (Left xuu130) (Left xuu131) False",fontsize=16,color="black",shape="box"];1183 -> 1383[label="",style="solid", color="black", weight=3]; 1184[label="compare1 (Left xuu130) (Left xuu131) True",fontsize=16,color="black",shape="box"];1184 -> 1384[label="",style="solid", color="black", weight=3]; 1185[label="GT",fontsize=16,color="green",shape="box"];1193[label="xuu69 <= xuu70",fontsize=16,color="blue",shape="box"];4091[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 1385[label="",style="solid", color="blue", weight=3]; 4092[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 1386[label="",style="solid", color="blue", weight=3]; 4093[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 1387[label="",style="solid", color="blue", weight=3]; 4094[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 1388[label="",style="solid", color="blue", weight=3]; 4095[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 1389[label="",style="solid", color="blue", weight=3]; 4096[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 1390[label="",style="solid", color="blue", weight=3]; 4097[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 1391[label="",style="solid", color="blue", weight=3]; 4098[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 1392[label="",style="solid", color="blue", weight=3]; 4099[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 1393[label="",style="solid", color="blue", weight=3]; 4100[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 1394[label="",style="solid", color="blue", weight=3]; 4101[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 1395[label="",style="solid", color="blue", weight=3]; 4102[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 1396[label="",style="solid", color="blue", weight=3]; 4103[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 1397[label="",style="solid", color="blue", weight=3]; 4104[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1193 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 1398[label="",style="solid", color="blue", weight=3]; 1194[label="compare1 (Right xuu137) (Right xuu138) False",fontsize=16,color="black",shape="box"];1194 -> 1399[label="",style="solid", color="black", weight=3]; 1195[label="compare1 (Right xuu137) (Right xuu138) True",fontsize=16,color="black",shape="box"];1195 -> 1400[label="",style="solid", color="black", weight=3]; 1196[label="GT",fontsize=16,color="green",shape="box"];1197[label="GT",fontsize=16,color="green",shape="box"];1198[label="GT",fontsize=16,color="green",shape="box"];1199[label="GT",fontsize=16,color="green",shape="box"];1200[label="xuu40001",fontsize=16,color="green",shape="box"];1201[label="xuu3001",fontsize=16,color="green",shape="box"];1202[label="xuu40001",fontsize=16,color="green",shape="box"];1203[label="xuu3001",fontsize=16,color="green",shape="box"];1204[label="xuu40001",fontsize=16,color="green",shape="box"];1205[label="xuu3001",fontsize=16,color="green",shape="box"];1206[label="xuu40001",fontsize=16,color="green",shape="box"];1207[label="xuu3001",fontsize=16,color="green",shape="box"];1208[label="xuu40001",fontsize=16,color="green",shape="box"];1209[label="xuu3001",fontsize=16,color="green",shape="box"];1210[label="xuu40001",fontsize=16,color="green",shape="box"];1211[label="xuu3001",fontsize=16,color="green",shape="box"];1212[label="xuu40001",fontsize=16,color="green",shape="box"];1213[label="xuu3001",fontsize=16,color="green",shape="box"];1214[label="xuu40001",fontsize=16,color="green",shape="box"];1215[label="xuu3001",fontsize=16,color="green",shape="box"];1216[label="xuu40001",fontsize=16,color="green",shape="box"];1217[label="xuu3001",fontsize=16,color="green",shape="box"];1218[label="xuu40001",fontsize=16,color="green",shape="box"];1219[label="xuu3001",fontsize=16,color="green",shape="box"];1220[label="xuu40001",fontsize=16,color="green",shape="box"];1221[label="xuu3001",fontsize=16,color="green",shape="box"];1222[label="xuu40001",fontsize=16,color="green",shape="box"];1223[label="xuu3001",fontsize=16,color="green",shape="box"];1224[label="xuu40001",fontsize=16,color="green",shape="box"];1225[label="xuu3001",fontsize=16,color="green",shape="box"];1226[label="xuu40001",fontsize=16,color="green",shape="box"];1227[label="xuu3001",fontsize=16,color="green",shape="box"];1228[label="xuu40002",fontsize=16,color="green",shape="box"];1229[label="xuu3002",fontsize=16,color="green",shape="box"];1230[label="xuu40002",fontsize=16,color="green",shape="box"];1231[label="xuu3002",fontsize=16,color="green",shape="box"];1232[label="xuu40002",fontsize=16,color="green",shape="box"];1233[label="xuu3002",fontsize=16,color="green",shape="box"];1234[label="xuu40002",fontsize=16,color="green",shape="box"];1235[label="xuu3002",fontsize=16,color="green",shape="box"];1236[label="xuu40002",fontsize=16,color="green",shape="box"];1237[label="xuu3002",fontsize=16,color="green",shape="box"];1238[label="xuu40002",fontsize=16,color="green",shape="box"];1239[label="xuu3002",fontsize=16,color="green",shape="box"];1240[label="xuu40002",fontsize=16,color="green",shape="box"];1241[label="xuu3002",fontsize=16,color="green",shape="box"];1242[label="xuu40002",fontsize=16,color="green",shape="box"];1243[label="xuu3002",fontsize=16,color="green",shape="box"];1244[label="xuu40002",fontsize=16,color="green",shape="box"];1245[label="xuu3002",fontsize=16,color="green",shape="box"];1246[label="xuu40002",fontsize=16,color="green",shape="box"];1247[label="xuu3002",fontsize=16,color="green",shape="box"];1248[label="xuu40002",fontsize=16,color="green",shape="box"];1249[label="xuu3002",fontsize=16,color="green",shape="box"];1250[label="xuu40002",fontsize=16,color="green",shape="box"];1251[label="xuu3002",fontsize=16,color="green",shape="box"];1252[label="xuu40002",fontsize=16,color="green",shape="box"];1253[label="xuu3002",fontsize=16,color="green",shape="box"];1254[label="xuu40002",fontsize=16,color="green",shape="box"];1255[label="xuu3002",fontsize=16,color="green",shape="box"];1404[label="xuu85",fontsize=16,color="green",shape="box"];1405 -> 984[label="",style="dashed", color="red", weight=0]; 1405[label="xuu80 == xuu83 && (xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85)",fontsize=16,color="magenta"];1405 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1406[label="xuu81",fontsize=16,color="green",shape="box"];1407[label="xuu82",fontsize=16,color="green",shape="box"];1408[label="xuu80 < xuu83",fontsize=16,color="blue",shape="box"];4105[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 1422[label="",style="solid", color="blue", weight=3]; 4106[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 1423[label="",style="solid", color="blue", weight=3]; 4107[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 1424[label="",style="solid", color="blue", weight=3]; 4108[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 1425[label="",style="solid", color="blue", weight=3]; 4109[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 1426[label="",style="solid", color="blue", weight=3]; 4110[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 1427[label="",style="solid", color="blue", weight=3]; 4111[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 1428[label="",style="solid", color="blue", weight=3]; 4112[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4112[label="",style="solid", color="blue", weight=9]; 4112 -> 1429[label="",style="solid", color="blue", weight=3]; 4113[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4113[label="",style="solid", color="blue", weight=9]; 4113 -> 1430[label="",style="solid", color="blue", weight=3]; 4114[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4114[label="",style="solid", color="blue", weight=9]; 4114 -> 1431[label="",style="solid", color="blue", weight=3]; 4115[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4115[label="",style="solid", color="blue", weight=9]; 4115 -> 1432[label="",style="solid", color="blue", weight=3]; 4116[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 1433[label="",style="solid", color="blue", weight=3]; 4117[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 1434[label="",style="solid", color="blue", weight=3]; 4118[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1408 -> 4118[label="",style="solid", color="blue", weight=9]; 4118 -> 1435[label="",style="solid", color="blue", weight=3]; 1409[label="xuu83",fontsize=16,color="green",shape="box"];1410[label="xuu80",fontsize=16,color="green",shape="box"];1411[label="xuu84",fontsize=16,color="green",shape="box"];1403[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) (xuu174 || xuu175)",fontsize=16,color="burlywood",shape="triangle"];4119[label="xuu174/False",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 1436[label="",style="solid", color="burlywood", weight=3]; 4120[label="xuu174/True",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 1437[label="",style="solid", color="burlywood", weight=3]; 1258[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1259[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="box"];1259 -> 1438[label="",style="solid", color="black", weight=3]; 1697 -> 1723[label="",style="dashed", color="red", weight=0]; 1697[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1697 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1696[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu177",fontsize=16,color="burlywood",shape="triangle"];4121[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];1696 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 1702[label="",style="solid", color="burlywood", weight=3]; 4122[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];1696 -> 4122[label="",style="solid", color="burlywood", weight=9]; 4122 -> 1703[label="",style="solid", color="burlywood", weight=3]; 3431[label="Zero",fontsize=16,color="green",shape="box"];3432[label="xuu38",fontsize=16,color="green",shape="box"];3433[label="xuu33",fontsize=16,color="green",shape="box"];3434[label="[]",fontsize=16,color="green",shape="box"];3435[label="xuu31",fontsize=16,color="green",shape="box"];2085[label="Pos Zero",fontsize=16,color="green",shape="box"];2086[label="xuu342",fontsize=16,color="green",shape="box"];2172[label="primPlusNat xuu1940 xuu1930",fontsize=16,color="burlywood",shape="triangle"];4123[label="xuu1940/Succ xuu19400",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4123[label="",style="solid", color="burlywood", weight=9]; 4123 -> 2501[label="",style="solid", color="burlywood", weight=3]; 4124[label="xuu1940/Zero",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4124[label="",style="solid", color="burlywood", weight=9]; 4124 -> 2502[label="",style="solid", color="burlywood", weight=3]; 2173[label="primMinusNat (Succ xuu19400) xuu1930",fontsize=16,color="burlywood",shape="box"];4125[label="xuu1930/Succ xuu19300",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4125[label="",style="solid", color="burlywood", weight=9]; 4125 -> 2503[label="",style="solid", color="burlywood", weight=3]; 4126[label="xuu1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4126[label="",style="solid", color="burlywood", weight=9]; 4126 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2174[label="primMinusNat Zero xuu1930",fontsize=16,color="burlywood",shape="box"];4127[label="xuu1930/Succ xuu19300",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4127[label="",style="solid", color="burlywood", weight=9]; 4127 -> 2505[label="",style="solid", color="burlywood", weight=3]; 4128[label="xuu1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4128[label="",style="solid", color="burlywood", weight=9]; 4128 -> 2506[label="",style="solid", color="burlywood", weight=3]; 2175[label="xuu1930",fontsize=16,color="green",shape="box"];2176[label="xuu1940",fontsize=16,color="green",shape="box"];2177 -> 2172[label="",style="dashed", color="red", weight=0]; 2177[label="primPlusNat xuu1940 xuu1930",fontsize=16,color="magenta"];2177 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2508[label="",style="dashed", color="magenta", weight=3]; 3655[label="FiniteMap.mkBranchUnbox xuu292 xuu293 xuu290 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290 + FiniteMap.mkBranchRight_size xuu292 xuu293 xuu290)",fontsize=16,color="black",shape="box"];3655 -> 3666[label="",style="solid", color="black", weight=3]; 2019[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2020 -> 172[label="",style="dashed", color="red", weight=0]; 2020[label="compare xuu184 xuu183",fontsize=16,color="magenta"];2020 -> 2087[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2088[label="",style="dashed", color="magenta", weight=3]; 2021[label="GT",fontsize=16,color="green",shape="box"];1720 -> 1723[label="",style="dashed", color="red", weight=0]; 1720[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1720 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1719[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 xuu181",fontsize=16,color="burlywood",shape="triangle"];4129[label="xuu181/False",fontsize=10,color="white",style="solid",shape="box"];1719 -> 4129[label="",style="solid", color="burlywood", weight=9]; 4129 -> 1738[label="",style="solid", color="burlywood", weight=3]; 4130[label="xuu181/True",fontsize=10,color="white",style="solid",shape="box"];1719 -> 4130[label="",style="solid", color="burlywood", weight=9]; 4130 -> 1739[label="",style="solid", color="burlywood", weight=3]; 1275[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 FiniteMap.EmptyFM xuu26 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1275 -> 1457[label="",style="solid", color="black", weight=3]; 1276[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1276 -> 1458[label="",style="solid", color="black", weight=3]; 1277[label="primMulNat (Succ xuu300000) xuu400010",fontsize=16,color="burlywood",shape="box"];4131[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1277 -> 4131[label="",style="solid", color="burlywood", weight=9]; 4131 -> 1459[label="",style="solid", color="burlywood", weight=3]; 4132[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1277 -> 4132[label="",style="solid", color="burlywood", weight=9]; 4132 -> 1460[label="",style="solid", color="burlywood", weight=3]; 1278[label="primMulNat Zero xuu400010",fontsize=16,color="burlywood",shape="box"];4133[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1278 -> 4133[label="",style="solid", color="burlywood", weight=9]; 4133 -> 1461[label="",style="solid", color="burlywood", weight=3]; 4134[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1278 -> 4134[label="",style="solid", color="burlywood", weight=9]; 4134 -> 1462[label="",style="solid", color="burlywood", weight=3]; 1279[label="xuu400010",fontsize=16,color="green",shape="box"];1280[label="xuu30000",fontsize=16,color="green",shape="box"];1281[label="xuu400010",fontsize=16,color="green",shape="box"];1282[label="xuu30000",fontsize=16,color="green",shape="box"];1298[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1298 -> 1463[label="",style="solid", color="black", weight=3]; 1299[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1299 -> 1464[label="",style="solid", color="black", weight=3]; 1300[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1300 -> 1465[label="",style="solid", color="black", weight=3]; 1301[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1301 -> 1466[label="",style="solid", color="black", weight=3]; 1302[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1302 -> 1467[label="",style="solid", color="black", weight=3]; 1303[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1303 -> 1468[label="",style="solid", color="black", weight=3]; 1304[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1304 -> 1469[label="",style="solid", color="black", weight=3]; 1305[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1305 -> 1470[label="",style="solid", color="black", weight=3]; 1306[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1306 -> 1471[label="",style="solid", color="black", weight=3]; 1307[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1307 -> 1472[label="",style="solid", color="black", weight=3]; 1308[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1308 -> 1473[label="",style="solid", color="black", weight=3]; 1309[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1309 -> 1474[label="",style="solid", color="black", weight=3]; 1310[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1310 -> 1475[label="",style="solid", color="black", weight=3]; 1311[label="xuu96 < xuu98",fontsize=16,color="black",shape="triangle"];1311 -> 1476[label="",style="solid", color="black", weight=3]; 1312[label="xuu96 == xuu98",fontsize=16,color="blue",shape="box"];4135[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 1477[label="",style="solid", color="blue", weight=3]; 4136[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 1478[label="",style="solid", color="blue", weight=3]; 4137[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 1479[label="",style="solid", color="blue", weight=3]; 4138[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 1480[label="",style="solid", color="blue", weight=3]; 4139[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 1481[label="",style="solid", color="blue", weight=3]; 4140[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 1482[label="",style="solid", color="blue", weight=3]; 4141[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 1483[label="",style="solid", color="blue", weight=3]; 4142[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 1484[label="",style="solid", color="blue", weight=3]; 4143[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 1485[label="",style="solid", color="blue", weight=3]; 4144[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 1486[label="",style="solid", color="blue", weight=3]; 4145[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 1487[label="",style="solid", color="blue", weight=3]; 4146[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1488[label="",style="solid", color="blue", weight=3]; 4147[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1489[label="",style="solid", color="blue", weight=3]; 4148[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1312 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1490[label="",style="solid", color="blue", weight=3]; 1313[label="xuu97 <= xuu99",fontsize=16,color="blue",shape="box"];4149[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1491[label="",style="solid", color="blue", weight=3]; 4150[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 1492[label="",style="solid", color="blue", weight=3]; 4151[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 1493[label="",style="solid", color="blue", weight=3]; 4152[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 1494[label="",style="solid", color="blue", weight=3]; 4153[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 1495[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 1496[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 1497[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 1498[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 1499[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 1500[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 1501[label="",style="solid", color="blue", weight=3]; 4160[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 1502[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 1503[label="",style="solid", color="blue", weight=3]; 4162[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 1504[label="",style="solid", color="blue", weight=3]; 1314[label="compare1 (xuu153,xuu154) (xuu155,xuu156) (False || xuu158)",fontsize=16,color="black",shape="box"];1314 -> 1505[label="",style="solid", color="black", weight=3]; 1315[label="compare1 (xuu153,xuu154) (xuu155,xuu156) (True || xuu158)",fontsize=16,color="black",shape="box"];1315 -> 1506[label="",style="solid", color="black", weight=3]; 1316[label="primEqInt (Pos (Succ xuu4000000)) xuu3000",fontsize=16,color="burlywood",shape="box"];4163[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1316 -> 4163[label="",style="solid", color="burlywood", weight=9]; 4163 -> 1507[label="",style="solid", color="burlywood", weight=3]; 4164[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1316 -> 4164[label="",style="solid", color="burlywood", weight=9]; 4164 -> 1508[label="",style="solid", color="burlywood", weight=3]; 1317[label="primEqInt (Pos Zero) xuu3000",fontsize=16,color="burlywood",shape="box"];4165[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1317 -> 4165[label="",style="solid", color="burlywood", weight=9]; 4165 -> 1509[label="",style="solid", color="burlywood", weight=3]; 4166[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1317 -> 4166[label="",style="solid", color="burlywood", weight=9]; 4166 -> 1510[label="",style="solid", color="burlywood", weight=3]; 1318[label="primEqInt (Neg (Succ xuu4000000)) xuu3000",fontsize=16,color="burlywood",shape="box"];4167[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4167[label="",style="solid", color="burlywood", weight=9]; 4167 -> 1511[label="",style="solid", color="burlywood", weight=3]; 4168[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4168[label="",style="solid", color="burlywood", weight=9]; 4168 -> 1512[label="",style="solid", color="burlywood", weight=3]; 1319[label="primEqInt (Neg Zero) xuu3000",fontsize=16,color="burlywood",shape="box"];4169[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1319 -> 4169[label="",style="solid", color="burlywood", weight=9]; 4169 -> 1513[label="",style="solid", color="burlywood", weight=3]; 4170[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1319 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 1514[label="",style="solid", color="burlywood", weight=3]; 1320 -> 984[label="",style="dashed", color="red", weight=0]; 1320[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1320 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1321[label="False",fontsize=16,color="green",shape="box"];1322[label="False",fontsize=16,color="green",shape="box"];1323[label="True",fontsize=16,color="green",shape="box"];1324[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4171[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1517[label="",style="solid", color="blue", weight=3]; 4172[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 1518[label="",style="solid", color="blue", weight=3]; 4173[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 1519[label="",style="solid", color="blue", weight=3]; 4174[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 1520[label="",style="solid", color="blue", weight=3]; 4175[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 1521[label="",style="solid", color="blue", weight=3]; 4176[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 1522[label="",style="solid", color="blue", weight=3]; 4177[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 1523[label="",style="solid", color="blue", weight=3]; 4178[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 1524[label="",style="solid", color="blue", weight=3]; 4179[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 1525[label="",style="solid", color="blue", weight=3]; 4180[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 1526[label="",style="solid", color="blue", weight=3]; 4181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 1527[label="",style="solid", color="blue", weight=3]; 4182[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 1528[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 1529[label="",style="solid", color="blue", weight=3]; 4184[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1324 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 1530[label="",style="solid", color="blue", weight=3]; 1325[label="False",fontsize=16,color="green",shape="box"];1326[label="False",fontsize=16,color="green",shape="box"];1327[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4185[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 1531[label="",style="solid", color="blue", weight=3]; 4186[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 1532[label="",style="solid", color="blue", weight=3]; 4187[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 1533[label="",style="solid", color="blue", weight=3]; 4188[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 1534[label="",style="solid", color="blue", weight=3]; 4189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 1535[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 1536[label="",style="solid", color="blue", weight=3]; 4191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 1537[label="",style="solid", color="blue", weight=3]; 4192[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 1538[label="",style="solid", color="blue", weight=3]; 4193[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 1539[label="",style="solid", color="blue", weight=3]; 4194[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 1540[label="",style="solid", color="blue", weight=3]; 4195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 1541[label="",style="solid", color="blue", weight=3]; 4196[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 1542[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 1543[label="",style="solid", color="blue", weight=3]; 4198[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 1544[label="",style="solid", color="blue", weight=3]; 1328[label="True",fontsize=16,color="green",shape="box"];1329[label="False",fontsize=16,color="green",shape="box"];1330[label="False",fontsize=16,color="green",shape="box"];1331[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4199[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 1545[label="",style="solid", color="blue", weight=3]; 4200[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 1546[label="",style="solid", color="blue", weight=3]; 4201[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 1547[label="",style="solid", color="blue", weight=3]; 4202[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 1548[label="",style="solid", color="blue", weight=3]; 4203[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 1549[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 1550[label="",style="solid", color="blue", weight=3]; 4205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 1551[label="",style="solid", color="blue", weight=3]; 4206[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 1552[label="",style="solid", color="blue", weight=3]; 4207[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 1553[label="",style="solid", color="blue", weight=3]; 4208[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 1554[label="",style="solid", color="blue", weight=3]; 4209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 1555[label="",style="solid", color="blue", weight=3]; 4210[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 1556[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 1557[label="",style="solid", color="blue", weight=3]; 4212[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 1558[label="",style="solid", color="blue", weight=3]; 1332 -> 984[label="",style="dashed", color="red", weight=0]; 1332[label="xuu400000 == xuu30000 && xuu400001 == xuu30001 && xuu400002 == xuu30002",fontsize=16,color="magenta"];1332 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1333[label="primEqChar (Char xuu400000) (Char xuu30000)",fontsize=16,color="black",shape="box"];1333 -> 1561[label="",style="solid", color="black", weight=3]; 1334 -> 657[label="",style="dashed", color="red", weight=0]; 1334[label="primEqInt xuu400000 xuu30000",fontsize=16,color="magenta"];1334 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1335[label="True",fontsize=16,color="green",shape="box"];1336[label="True",fontsize=16,color="green",shape="box"];1337[label="False",fontsize=16,color="green",shape="box"];1338[label="False",fontsize=16,color="green",shape="box"];1339[label="True",fontsize=16,color="green",shape="box"];1340[label="primEqFloat (Float xuu400000 xuu400001) (Float xuu30000 xuu30001)",fontsize=16,color="black",shape="box"];1340 -> 1564[label="",style="solid", color="black", weight=3]; 1341 -> 984[label="",style="dashed", color="red", weight=0]; 1341[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1341 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1342 -> 984[label="",style="dashed", color="red", weight=0]; 1342[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1342 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1343[label="True",fontsize=16,color="green",shape="box"];1344[label="False",fontsize=16,color="green",shape="box"];1345[label="False",fontsize=16,color="green",shape="box"];1346[label="False",fontsize=16,color="green",shape="box"];1347[label="True",fontsize=16,color="green",shape="box"];1348[label="False",fontsize=16,color="green",shape="box"];1349[label="False",fontsize=16,color="green",shape="box"];1350[label="False",fontsize=16,color="green",shape="box"];1351[label="True",fontsize=16,color="green",shape="box"];1352[label="primEqDouble (Double xuu400000 xuu400001) (Double xuu30000 xuu30001)",fontsize=16,color="black",shape="box"];1352 -> 1569[label="",style="solid", color="black", weight=3]; 1353[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1353 -> 1570[label="",style="solid", color="black", weight=3]; 1354[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1354 -> 1571[label="",style="solid", color="black", weight=3]; 1355[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1355 -> 1572[label="",style="solid", color="black", weight=3]; 1356[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4213[label="xuu55/(xuu550,xuu551)",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 1573[label="",style="solid", color="burlywood", weight=3]; 1357[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4214[label="xuu55/Nothing",fontsize=10,color="white",style="solid",shape="box"];1357 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 1574[label="",style="solid", color="burlywood", weight=3]; 4215[label="xuu55/Just xuu550",fontsize=10,color="white",style="solid",shape="box"];1357 -> 4215[label="",style="solid", color="burlywood", weight=9]; 4215 -> 1575[label="",style="solid", color="burlywood", weight=3]; 1358[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1358 -> 1576[label="",style="solid", color="black", weight=3]; 1359[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1359 -> 1577[label="",style="solid", color="black", weight=3]; 1360[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4216[label="xuu55/Left xuu550",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4216[label="",style="solid", color="burlywood", weight=9]; 4216 -> 1578[label="",style="solid", color="burlywood", weight=3]; 4217[label="xuu55/Right xuu550",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4217[label="",style="solid", color="burlywood", weight=9]; 4217 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1361[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1361 -> 1580[label="",style="solid", color="black", weight=3]; 1362[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4218[label="xuu55/LT",fontsize=10,color="white",style="solid",shape="box"];1362 -> 4218[label="",style="solid", color="burlywood", weight=9]; 4218 -> 1581[label="",style="solid", color="burlywood", weight=3]; 4219[label="xuu55/EQ",fontsize=10,color="white",style="solid",shape="box"];1362 -> 4219[label="",style="solid", color="burlywood", weight=9]; 4219 -> 1582[label="",style="solid", color="burlywood", weight=3]; 4220[label="xuu55/GT",fontsize=10,color="white",style="solid",shape="box"];1362 -> 4220[label="",style="solid", color="burlywood", weight=9]; 4220 -> 1583[label="",style="solid", color="burlywood", weight=3]; 1363[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4221[label="xuu55/False",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4221[label="",style="solid", color="burlywood", weight=9]; 4221 -> 1584[label="",style="solid", color="burlywood", weight=3]; 4222[label="xuu55/True",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4222[label="",style="solid", color="burlywood", weight=9]; 4222 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1364[label="xuu55 <= xuu56",fontsize=16,color="burlywood",shape="triangle"];4223[label="xuu55/(xuu550,xuu551,xuu552)",fontsize=10,color="white",style="solid",shape="box"];1364 -> 4223[label="",style="solid", color="burlywood", weight=9]; 4223 -> 1586[label="",style="solid", color="burlywood", weight=3]; 1365[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1365 -> 1587[label="",style="solid", color="black", weight=3]; 1366[label="xuu55 <= xuu56",fontsize=16,color="black",shape="triangle"];1366 -> 1588[label="",style="solid", color="black", weight=3]; 1367[label="compare0 (Just xuu122) (Just xuu123) otherwise",fontsize=16,color="black",shape="box"];1367 -> 1589[label="",style="solid", color="black", weight=3]; 1368[label="LT",fontsize=16,color="green",shape="box"];1369 -> 1353[label="",style="dashed", color="red", weight=0]; 1369[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1369 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1354[label="",style="dashed", color="red", weight=0]; 1370[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1370 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1355[label="",style="dashed", color="red", weight=0]; 1371[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1371 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1356[label="",style="dashed", color="red", weight=0]; 1372[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1372 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1357[label="",style="dashed", color="red", weight=0]; 1373[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1373 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1358[label="",style="dashed", color="red", weight=0]; 1374[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1374 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1359[label="",style="dashed", color="red", weight=0]; 1375[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1375 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1360[label="",style="dashed", color="red", weight=0]; 1376[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1376 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1361[label="",style="dashed", color="red", weight=0]; 1377[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1377 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1362[label="",style="dashed", color="red", weight=0]; 1378[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1378 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1363[label="",style="dashed", color="red", weight=0]; 1379[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1379 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1364[label="",style="dashed", color="red", weight=0]; 1380[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1380 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1365[label="",style="dashed", color="red", weight=0]; 1381[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1381 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1366[label="",style="dashed", color="red", weight=0]; 1382[label="xuu62 <= xuu63",fontsize=16,color="magenta"];1382 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1383[label="compare0 (Left xuu130) (Left xuu131) otherwise",fontsize=16,color="black",shape="box"];1383 -> 1618[label="",style="solid", color="black", weight=3]; 1384[label="LT",fontsize=16,color="green",shape="box"];1385 -> 1353[label="",style="dashed", color="red", weight=0]; 1385[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1385 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1354[label="",style="dashed", color="red", weight=0]; 1386[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1386 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1355[label="",style="dashed", color="red", weight=0]; 1387[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1387 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1356[label="",style="dashed", color="red", weight=0]; 1388[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1388 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1357[label="",style="dashed", color="red", weight=0]; 1389[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1389 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1358[label="",style="dashed", color="red", weight=0]; 1390[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1390 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1359[label="",style="dashed", color="red", weight=0]; 1391[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1391 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1360[label="",style="dashed", color="red", weight=0]; 1392[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1392 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1361[label="",style="dashed", color="red", weight=0]; 1393[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1393 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1362[label="",style="dashed", color="red", weight=0]; 1394[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1394 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1363[label="",style="dashed", color="red", weight=0]; 1395[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1395 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1364[label="",style="dashed", color="red", weight=0]; 1396[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1396 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1365[label="",style="dashed", color="red", weight=0]; 1397[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1397 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1366[label="",style="dashed", color="red", weight=0]; 1398[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1398 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1399[label="compare0 (Right xuu137) (Right xuu138) otherwise",fontsize=16,color="black",shape="box"];1399 -> 1647[label="",style="solid", color="black", weight=3]; 1400[label="LT",fontsize=16,color="green",shape="box"];1420[label="xuu80 == xuu83",fontsize=16,color="blue",shape="box"];4224[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 1648[label="",style="solid", color="blue", weight=3]; 4225[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 1649[label="",style="solid", color="blue", weight=3]; 4226[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 1650[label="",style="solid", color="blue", weight=3]; 4227[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 1651[label="",style="solid", color="blue", weight=3]; 4228[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 1652[label="",style="solid", color="blue", weight=3]; 4229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 1653[label="",style="solid", color="blue", weight=3]; 4230[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 1654[label="",style="solid", color="blue", weight=3]; 4231[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 1655[label="",style="solid", color="blue", weight=3]; 4232[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 1656[label="",style="solid", color="blue", weight=3]; 4233[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 1657[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 1658[label="",style="solid", color="blue", weight=3]; 4235[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 1659[label="",style="solid", color="blue", weight=3]; 4236[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 1660[label="",style="solid", color="blue", weight=3]; 4237[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 1661[label="",style="solid", color="blue", weight=3]; 1421 -> 2080[label="",style="dashed", color="red", weight=0]; 1421[label="xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85",fontsize=16,color="magenta"];1421 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1421 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1298[label="",style="dashed", color="red", weight=0]; 1422[label="xuu80 < xuu83",fontsize=16,color="magenta"];1422 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1299[label="",style="dashed", color="red", weight=0]; 1423[label="xuu80 < xuu83",fontsize=16,color="magenta"];1423 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1300[label="",style="dashed", color="red", weight=0]; 1424[label="xuu80 < xuu83",fontsize=16,color="magenta"];1424 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1301[label="",style="dashed", color="red", weight=0]; 1425[label="xuu80 < xuu83",fontsize=16,color="magenta"];1425 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1302[label="",style="dashed", color="red", weight=0]; 1426[label="xuu80 < xuu83",fontsize=16,color="magenta"];1426 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1303[label="",style="dashed", color="red", weight=0]; 1427[label="xuu80 < xuu83",fontsize=16,color="magenta"];1427 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1304[label="",style="dashed", color="red", weight=0]; 1428[label="xuu80 < xuu83",fontsize=16,color="magenta"];1428 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1305[label="",style="dashed", color="red", weight=0]; 1429[label="xuu80 < xuu83",fontsize=16,color="magenta"];1429 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1306[label="",style="dashed", color="red", weight=0]; 1430[label="xuu80 < xuu83",fontsize=16,color="magenta"];1430 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1307[label="",style="dashed", color="red", weight=0]; 1431[label="xuu80 < xuu83",fontsize=16,color="magenta"];1431 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1308[label="",style="dashed", color="red", weight=0]; 1432[label="xuu80 < xuu83",fontsize=16,color="magenta"];1432 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1309[label="",style="dashed", color="red", weight=0]; 1433[label="xuu80 < xuu83",fontsize=16,color="magenta"];1433 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1310[label="",style="dashed", color="red", weight=0]; 1434[label="xuu80 < xuu83",fontsize=16,color="magenta"];1434 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1311[label="",style="dashed", color="red", weight=0]; 1435[label="xuu80 < xuu83",fontsize=16,color="magenta"];1435 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1436[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) (False || xuu175)",fontsize=16,color="black",shape="box"];1436 -> 1692[label="",style="solid", color="black", weight=3]; 1437[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) (True || xuu175)",fontsize=16,color="black",shape="box"];1437 -> 1693[label="",style="solid", color="black", weight=3]; 1438 -> 2111[label="",style="dashed", color="red", weight=0]; 1438[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38) (FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];1438 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1438 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1728[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="triangle"];1728 -> 1740[label="",style="solid", color="black", weight=3]; 1729 -> 389[label="",style="dashed", color="red", weight=0]; 1729[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1729 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1702[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];1702 -> 1743[label="",style="solid", color="black", weight=3]; 1703[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];1703 -> 1744[label="",style="solid", color="black", weight=3]; 2501[label="primPlusNat (Succ xuu19400) xuu1930",fontsize=16,color="burlywood",shape="box"];4238[label="xuu1930/Succ xuu19300",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4238[label="",style="solid", color="burlywood", weight=9]; 4238 -> 2576[label="",style="solid", color="burlywood", weight=3]; 4239[label="xuu1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4239[label="",style="solid", color="burlywood", weight=9]; 4239 -> 2577[label="",style="solid", color="burlywood", weight=3]; 2502[label="primPlusNat Zero xuu1930",fontsize=16,color="burlywood",shape="box"];4240[label="xuu1930/Succ xuu19300",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4240[label="",style="solid", color="burlywood", weight=9]; 4240 -> 2578[label="",style="solid", color="burlywood", weight=3]; 4241[label="xuu1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4241[label="",style="solid", color="burlywood", weight=9]; 4241 -> 2579[label="",style="solid", color="burlywood", weight=3]; 2503[label="primMinusNat (Succ xuu19400) (Succ xuu19300)",fontsize=16,color="black",shape="box"];2503 -> 2580[label="",style="solid", color="black", weight=3]; 2504[label="primMinusNat (Succ xuu19400) Zero",fontsize=16,color="black",shape="box"];2504 -> 2581[label="",style="solid", color="black", weight=3]; 2505[label="primMinusNat Zero (Succ xuu19300)",fontsize=16,color="black",shape="box"];2505 -> 2582[label="",style="solid", color="black", weight=3]; 2506[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2506 -> 2583[label="",style="solid", color="black", weight=3]; 2507[label="xuu1940",fontsize=16,color="green",shape="box"];2508[label="xuu1930",fontsize=16,color="green",shape="box"];3666[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290 + FiniteMap.mkBranchRight_size xuu292 xuu293 xuu290",fontsize=16,color="black",shape="box"];3666 -> 3667[label="",style="solid", color="black", weight=3]; 2087[label="xuu183",fontsize=16,color="green",shape="box"];2088[label="xuu184",fontsize=16,color="green",shape="box"];1731 -> 389[label="",style="dashed", color="red", weight=0]; 1731[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1731 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1738[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="box"];1738 -> 2022[label="",style="solid", color="black", weight=3]; 1739[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];1739 -> 2023[label="",style="solid", color="black", weight=3]; 1457[label="error []",fontsize=16,color="red",shape="box"];1458[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1458 -> 1748[label="",style="solid", color="black", weight=3]; 1459[label="primMulNat (Succ xuu300000) (Succ xuu4000100)",fontsize=16,color="black",shape="box"];1459 -> 1749[label="",style="solid", color="black", weight=3]; 1460[label="primMulNat (Succ xuu300000) Zero",fontsize=16,color="black",shape="box"];1460 -> 1750[label="",style="solid", color="black", weight=3]; 1461[label="primMulNat Zero (Succ xuu4000100)",fontsize=16,color="black",shape="box"];1461 -> 1751[label="",style="solid", color="black", weight=3]; 1462[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1462 -> 1752[label="",style="solid", color="black", weight=3]; 1463 -> 539[label="",style="dashed", color="red", weight=0]; 1463[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1463 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1464 -> 539[label="",style="dashed", color="red", weight=0]; 1464[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1464 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1465 -> 539[label="",style="dashed", color="red", weight=0]; 1465[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1465 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1466 -> 539[label="",style="dashed", color="red", weight=0]; 1466[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1466 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1467 -> 539[label="",style="dashed", color="red", weight=0]; 1467[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1467 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1468 -> 539[label="",style="dashed", color="red", weight=0]; 1468[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1468 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1469 -> 539[label="",style="dashed", color="red", weight=0]; 1469[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1469 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1470 -> 539[label="",style="dashed", color="red", weight=0]; 1470[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1470 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1471 -> 539[label="",style="dashed", color="red", weight=0]; 1471[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1471 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1472 -> 539[label="",style="dashed", color="red", weight=0]; 1472[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1472 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1473 -> 539[label="",style="dashed", color="red", weight=0]; 1473[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1473 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1474 -> 539[label="",style="dashed", color="red", weight=0]; 1474[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1474 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1475 -> 539[label="",style="dashed", color="red", weight=0]; 1475[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1475 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1476 -> 539[label="",style="dashed", color="red", weight=0]; 1476[label="compare xuu96 xuu98 == LT",fontsize=16,color="magenta"];1476 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1477 -> 534[label="",style="dashed", color="red", weight=0]; 1477[label="xuu96 == xuu98",fontsize=16,color="magenta"];1477 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1478 -> 528[label="",style="dashed", color="red", weight=0]; 1478[label="xuu96 == xuu98",fontsize=16,color="magenta"];1478 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1479 -> 538[label="",style="dashed", color="red", weight=0]; 1479[label="xuu96 == xuu98",fontsize=16,color="magenta"];1479 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1480 -> 537[label="",style="dashed", color="red", weight=0]; 1480[label="xuu96 == xuu98",fontsize=16,color="magenta"];1480 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1481 -> 530[label="",style="dashed", color="red", weight=0]; 1481[label="xuu96 == xuu98",fontsize=16,color="magenta"];1481 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1482 -> 536[label="",style="dashed", color="red", weight=0]; 1482[label="xuu96 == xuu98",fontsize=16,color="magenta"];1482 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1483 -> 533[label="",style="dashed", color="red", weight=0]; 1483[label="xuu96 == xuu98",fontsize=16,color="magenta"];1483 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1484 -> 529[label="",style="dashed", color="red", weight=0]; 1484[label="xuu96 == xuu98",fontsize=16,color="magenta"];1484 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1485 -> 527[label="",style="dashed", color="red", weight=0]; 1485[label="xuu96 == xuu98",fontsize=16,color="magenta"];1485 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1486 -> 539[label="",style="dashed", color="red", weight=0]; 1486[label="xuu96 == xuu98",fontsize=16,color="magenta"];1486 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1487 -> 535[label="",style="dashed", color="red", weight=0]; 1487[label="xuu96 == xuu98",fontsize=16,color="magenta"];1487 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1488 -> 531[label="",style="dashed", color="red", weight=0]; 1488[label="xuu96 == xuu98",fontsize=16,color="magenta"];1488 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1489 -> 540[label="",style="dashed", color="red", weight=0]; 1489[label="xuu96 == xuu98",fontsize=16,color="magenta"];1489 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1490 -> 532[label="",style="dashed", color="red", weight=0]; 1490[label="xuu96 == xuu98",fontsize=16,color="magenta"];1490 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1353[label="",style="dashed", color="red", weight=0]; 1491[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1491 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1354[label="",style="dashed", color="red", weight=0]; 1492[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1492 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1355[label="",style="dashed", color="red", weight=0]; 1493[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1493 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1356[label="",style="dashed", color="red", weight=0]; 1494[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1494 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1357[label="",style="dashed", color="red", weight=0]; 1495[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1495 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1358[label="",style="dashed", color="red", weight=0]; 1496[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1496 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1359[label="",style="dashed", color="red", weight=0]; 1497[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1497 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1360[label="",style="dashed", color="red", weight=0]; 1498[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1498 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1361[label="",style="dashed", color="red", weight=0]; 1499[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1499 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1362[label="",style="dashed", color="red", weight=0]; 1500[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1500 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1363[label="",style="dashed", color="red", weight=0]; 1501[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1501 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1364[label="",style="dashed", color="red", weight=0]; 1502[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1502 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1365[label="",style="dashed", color="red", weight=0]; 1503[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1503 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1366[label="",style="dashed", color="red", weight=0]; 1504[label="xuu97 <= xuu99",fontsize=16,color="magenta"];1504 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1505[label="compare1 (xuu153,xuu154) (xuu155,xuu156) xuu158",fontsize=16,color="burlywood",shape="triangle"];4242[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];1505 -> 4242[label="",style="solid", color="burlywood", weight=9]; 4242 -> 1837[label="",style="solid", color="burlywood", weight=3]; 4243[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];1505 -> 4243[label="",style="solid", color="burlywood", weight=9]; 4243 -> 1838[label="",style="solid", color="burlywood", weight=3]; 1506 -> 1505[label="",style="dashed", color="red", weight=0]; 1506[label="compare1 (xuu153,xuu154) (xuu155,xuu156) True",fontsize=16,color="magenta"];1506 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1507[label="primEqInt (Pos (Succ xuu4000000)) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4244[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4244[label="",style="solid", color="burlywood", weight=9]; 4244 -> 1840[label="",style="solid", color="burlywood", weight=3]; 4245[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1507 -> 4245[label="",style="solid", color="burlywood", weight=9]; 4245 -> 1841[label="",style="solid", color="burlywood", weight=3]; 1508[label="primEqInt (Pos (Succ xuu4000000)) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1508 -> 1842[label="",style="solid", color="black", weight=3]; 1509[label="primEqInt (Pos Zero) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4246[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1509 -> 4246[label="",style="solid", color="burlywood", weight=9]; 4246 -> 1843[label="",style="solid", color="burlywood", weight=3]; 4247[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1509 -> 4247[label="",style="solid", color="burlywood", weight=9]; 4247 -> 1844[label="",style="solid", color="burlywood", weight=3]; 1510[label="primEqInt (Pos Zero) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4248[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1510 -> 4248[label="",style="solid", color="burlywood", weight=9]; 4248 -> 1845[label="",style="solid", color="burlywood", weight=3]; 4249[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1510 -> 4249[label="",style="solid", color="burlywood", weight=9]; 4249 -> 1846[label="",style="solid", color="burlywood", weight=3]; 1511[label="primEqInt (Neg (Succ xuu4000000)) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1511 -> 1847[label="",style="solid", color="black", weight=3]; 1512[label="primEqInt (Neg (Succ xuu4000000)) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4250[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1512 -> 4250[label="",style="solid", color="burlywood", weight=9]; 4250 -> 1848[label="",style="solid", color="burlywood", weight=3]; 4251[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1512 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 1849[label="",style="solid", color="burlywood", weight=3]; 1513[label="primEqInt (Neg Zero) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4252[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 1850[label="",style="solid", color="burlywood", weight=3]; 4253[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1513 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 1851[label="",style="solid", color="burlywood", weight=3]; 1514[label="primEqInt (Neg Zero) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4254[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1514 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 1852[label="",style="solid", color="burlywood", weight=3]; 4255[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1514 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 1853[label="",style="solid", color="burlywood", weight=3]; 1515[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4256[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 1854[label="",style="solid", color="blue", weight=3]; 4257[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 1855[label="",style="solid", color="blue", weight=3]; 4258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 1856[label="",style="solid", color="blue", weight=3]; 4259[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 1857[label="",style="solid", color="blue", weight=3]; 4260[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 1858[label="",style="solid", color="blue", weight=3]; 4261[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 1859[label="",style="solid", color="blue", weight=3]; 4262[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 1860[label="",style="solid", color="blue", weight=3]; 4263[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 1861[label="",style="solid", color="blue", weight=3]; 4264[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 1862[label="",style="solid", color="blue", weight=3]; 4265[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 1863[label="",style="solid", color="blue", weight=3]; 4266[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 1864[label="",style="solid", color="blue", weight=3]; 4267[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 1865[label="",style="solid", color="blue", weight=3]; 4268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 1866[label="",style="solid", color="blue", weight=3]; 4269[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1515 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 1867[label="",style="solid", color="blue", weight=3]; 1516 -> 528[label="",style="dashed", color="red", weight=0]; 1516[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1516 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1517 -> 527[label="",style="dashed", color="red", weight=0]; 1517[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1517 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1518 -> 528[label="",style="dashed", color="red", weight=0]; 1518[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1518 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1519 -> 529[label="",style="dashed", color="red", weight=0]; 1519[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1519 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1520 -> 530[label="",style="dashed", color="red", weight=0]; 1520[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1520 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1521 -> 531[label="",style="dashed", color="red", weight=0]; 1521[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1521 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1522 -> 532[label="",style="dashed", color="red", weight=0]; 1522[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1522 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1523 -> 533[label="",style="dashed", color="red", weight=0]; 1523[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1523 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1524 -> 534[label="",style="dashed", color="red", weight=0]; 1524[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1524 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1525 -> 535[label="",style="dashed", color="red", weight=0]; 1525[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1525 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1526 -> 536[label="",style="dashed", color="red", weight=0]; 1526[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1526 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1527 -> 537[label="",style="dashed", color="red", weight=0]; 1527[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1527 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1528 -> 538[label="",style="dashed", color="red", weight=0]; 1528[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1528 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1529 -> 539[label="",style="dashed", color="red", weight=0]; 1529[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1529 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1530 -> 540[label="",style="dashed", color="red", weight=0]; 1530[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1530 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1531 -> 527[label="",style="dashed", color="red", weight=0]; 1531[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1531 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1532 -> 528[label="",style="dashed", color="red", weight=0]; 1532[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1532 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1533 -> 529[label="",style="dashed", color="red", weight=0]; 1533[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1533 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1534 -> 530[label="",style="dashed", color="red", weight=0]; 1534[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1534 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1535 -> 531[label="",style="dashed", color="red", weight=0]; 1535[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1535 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1536 -> 532[label="",style="dashed", color="red", weight=0]; 1536[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1536 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1537 -> 533[label="",style="dashed", color="red", weight=0]; 1537[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1537 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1538 -> 534[label="",style="dashed", color="red", weight=0]; 1538[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1538 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1539 -> 535[label="",style="dashed", color="red", weight=0]; 1539[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1539 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1540 -> 536[label="",style="dashed", color="red", weight=0]; 1540[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1540 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1541 -> 537[label="",style="dashed", color="red", weight=0]; 1541[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1541 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1542 -> 538[label="",style="dashed", color="red", weight=0]; 1542[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1542 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1543 -> 539[label="",style="dashed", color="red", weight=0]; 1543[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1543 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1544 -> 540[label="",style="dashed", color="red", weight=0]; 1544[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1544 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1545 -> 527[label="",style="dashed", color="red", weight=0]; 1545[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1545 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1546 -> 528[label="",style="dashed", color="red", weight=0]; 1546[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1546 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1547 -> 529[label="",style="dashed", color="red", weight=0]; 1547[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1547 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1548 -> 530[label="",style="dashed", color="red", weight=0]; 1548[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1548 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1549 -> 531[label="",style="dashed", color="red", weight=0]; 1549[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1549 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1550 -> 532[label="",style="dashed", color="red", weight=0]; 1550[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1550 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1551 -> 533[label="",style="dashed", color="red", weight=0]; 1551[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1551 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1552 -> 534[label="",style="dashed", color="red", weight=0]; 1552[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1552 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1553 -> 535[label="",style="dashed", color="red", weight=0]; 1553[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1553 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1554 -> 536[label="",style="dashed", color="red", weight=0]; 1554[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1554 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1555 -> 537[label="",style="dashed", color="red", weight=0]; 1555[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1555 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1556 -> 538[label="",style="dashed", color="red", weight=0]; 1556[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1556 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1557 -> 539[label="",style="dashed", color="red", weight=0]; 1557[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1557 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1558 -> 540[label="",style="dashed", color="red", weight=0]; 1558[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1558 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1559[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4270[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 1954[label="",style="solid", color="blue", weight=3]; 4271[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 1955[label="",style="solid", color="blue", weight=3]; 4272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 1956[label="",style="solid", color="blue", weight=3]; 4273[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 1957[label="",style="solid", color="blue", weight=3]; 4274[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 1958[label="",style="solid", color="blue", weight=3]; 4275[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 1959[label="",style="solid", color="blue", weight=3]; 4276[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 1960[label="",style="solid", color="blue", weight=3]; 4277[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 1961[label="",style="solid", color="blue", weight=3]; 4278[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 1962[label="",style="solid", color="blue", weight=3]; 4279[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 1963[label="",style="solid", color="blue", weight=3]; 4280[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 1964[label="",style="solid", color="blue", weight=3]; 4281[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 1965[label="",style="solid", color="blue", weight=3]; 4282[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 1966[label="",style="solid", color="blue", weight=3]; 4283[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1559 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 1967[label="",style="solid", color="blue", weight=3]; 1560 -> 984[label="",style="dashed", color="red", weight=0]; 1560[label="xuu400001 == xuu30001 && xuu400002 == xuu30002",fontsize=16,color="magenta"];1560 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1561[label="primEqNat xuu400000 xuu30000",fontsize=16,color="burlywood",shape="triangle"];4284[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 1970[label="",style="solid", color="burlywood", weight=3]; 4285[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1561 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 1971[label="",style="solid", color="burlywood", weight=3]; 1562[label="xuu400000",fontsize=16,color="green",shape="box"];1563[label="xuu30000",fontsize=16,color="green",shape="box"];1564 -> 527[label="",style="dashed", color="red", weight=0]; 1564[label="xuu400000 * xuu30001 == xuu400001 * xuu30000",fontsize=16,color="magenta"];1564 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1565[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4286[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 1974[label="",style="solid", color="blue", weight=3]; 4287[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 1975[label="",style="solid", color="blue", weight=3]; 4288[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 1976[label="",style="solid", color="blue", weight=3]; 4289[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 1977[label="",style="solid", color="blue", weight=3]; 4290[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 1978[label="",style="solid", color="blue", weight=3]; 4291[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 1979[label="",style="solid", color="blue", weight=3]; 4292[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 1980[label="",style="solid", color="blue", weight=3]; 4293[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 1981[label="",style="solid", color="blue", weight=3]; 4294[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 1982[label="",style="solid", color="blue", weight=3]; 4295[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 1983[label="",style="solid", color="blue", weight=3]; 4296[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 1984[label="",style="solid", color="blue", weight=3]; 4297[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 1985[label="",style="solid", color="blue", weight=3]; 4298[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 1986[label="",style="solid", color="blue", weight=3]; 4299[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 1987[label="",style="solid", color="blue", weight=3]; 1566[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4300[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 1988[label="",style="solid", color="blue", weight=3]; 4301[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 1989[label="",style="solid", color="blue", weight=3]; 4302[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 1990[label="",style="solid", color="blue", weight=3]; 4303[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 1991[label="",style="solid", color="blue", weight=3]; 4304[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 1992[label="",style="solid", color="blue", weight=3]; 4305[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 1993[label="",style="solid", color="blue", weight=3]; 4306[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 1994[label="",style="solid", color="blue", weight=3]; 4307[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 1995[label="",style="solid", color="blue", weight=3]; 4308[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 1996[label="",style="solid", color="blue", weight=3]; 4309[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 1997[label="",style="solid", color="blue", weight=3]; 4310[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 1998[label="",style="solid", color="blue", weight=3]; 4311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 1999[label="",style="solid", color="blue", weight=3]; 4312[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 2000[label="",style="solid", color="blue", weight=3]; 4313[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1566 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 2001[label="",style="solid", color="blue", weight=3]; 1567[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4314[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 2002[label="",style="solid", color="blue", weight=3]; 4315[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1567 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 2003[label="",style="solid", color="blue", weight=3]; 1568[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4316[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1568 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 2004[label="",style="solid", color="blue", weight=3]; 4317[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1568 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 2005[label="",style="solid", color="blue", weight=3]; 1569 -> 527[label="",style="dashed", color="red", weight=0]; 1569[label="xuu400000 * xuu30001 == xuu400001 * xuu30000",fontsize=16,color="magenta"];1569 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1569 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1570 -> 2008[label="",style="dashed", color="red", weight=0]; 1570[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1570 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1571 -> 2008[label="",style="dashed", color="red", weight=0]; 1571[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1571 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1572 -> 2008[label="",style="dashed", color="red", weight=0]; 1572[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1572 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1573[label="(xuu550,xuu551) <= xuu56",fontsize=16,color="burlywood",shape="box"];4318[label="xuu56/(xuu560,xuu561)",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4318[label="",style="solid", color="burlywood", weight=9]; 4318 -> 2024[label="",style="solid", color="burlywood", weight=3]; 1574[label="Nothing <= xuu56",fontsize=16,color="burlywood",shape="box"];4319[label="xuu56/Nothing",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4319[label="",style="solid", color="burlywood", weight=9]; 4319 -> 2025[label="",style="solid", color="burlywood", weight=3]; 4320[label="xuu56/Just xuu560",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4320[label="",style="solid", color="burlywood", weight=9]; 4320 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1575[label="Just xuu550 <= xuu56",fontsize=16,color="burlywood",shape="box"];4321[label="xuu56/Nothing",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4321[label="",style="solid", color="burlywood", weight=9]; 4321 -> 2027[label="",style="solid", color="burlywood", weight=3]; 4322[label="xuu56/Just xuu560",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4322[label="",style="solid", color="burlywood", weight=9]; 4322 -> 2028[label="",style="solid", color="burlywood", weight=3]; 1576 -> 2008[label="",style="dashed", color="red", weight=0]; 1576[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1576 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1577 -> 2008[label="",style="dashed", color="red", weight=0]; 1577[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1577 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1578[label="Left xuu550 <= xuu56",fontsize=16,color="burlywood",shape="box"];4323[label="xuu56/Left xuu560",fontsize=10,color="white",style="solid",shape="box"];1578 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 2029[label="",style="solid", color="burlywood", weight=3]; 4324[label="xuu56/Right xuu560",fontsize=10,color="white",style="solid",shape="box"];1578 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 2030[label="",style="solid", color="burlywood", weight=3]; 1579[label="Right xuu550 <= xuu56",fontsize=16,color="burlywood",shape="box"];4325[label="xuu56/Left xuu560",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4325[label="",style="solid", color="burlywood", weight=9]; 4325 -> 2031[label="",style="solid", color="burlywood", weight=3]; 4326[label="xuu56/Right xuu560",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 2032[label="",style="solid", color="burlywood", weight=3]; 1580 -> 2008[label="",style="dashed", color="red", weight=0]; 1580[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1580 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1581[label="LT <= xuu56",fontsize=16,color="burlywood",shape="box"];4327[label="xuu56/LT",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 2033[label="",style="solid", color="burlywood", weight=3]; 4328[label="xuu56/EQ",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 2034[label="",style="solid", color="burlywood", weight=3]; 4329[label="xuu56/GT",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 2035[label="",style="solid", color="burlywood", weight=3]; 1582[label="EQ <= xuu56",fontsize=16,color="burlywood",shape="box"];4330[label="xuu56/LT",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 2036[label="",style="solid", color="burlywood", weight=3]; 4331[label="xuu56/EQ",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 2037[label="",style="solid", color="burlywood", weight=3]; 4332[label="xuu56/GT",fontsize=10,color="white",style="solid",shape="box"];1582 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1583[label="GT <= xuu56",fontsize=16,color="burlywood",shape="box"];4333[label="xuu56/LT",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 2039[label="",style="solid", color="burlywood", weight=3]; 4334[label="xuu56/EQ",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 2040[label="",style="solid", color="burlywood", weight=3]; 4335[label="xuu56/GT",fontsize=10,color="white",style="solid",shape="box"];1583 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 2041[label="",style="solid", color="burlywood", weight=3]; 1584[label="False <= xuu56",fontsize=16,color="burlywood",shape="box"];4336[label="xuu56/False",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 2042[label="",style="solid", color="burlywood", weight=3]; 4337[label="xuu56/True",fontsize=10,color="white",style="solid",shape="box"];1584 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 2043[label="",style="solid", color="burlywood", weight=3]; 1585[label="True <= xuu56",fontsize=16,color="burlywood",shape="box"];4338[label="xuu56/False",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 2044[label="",style="solid", color="burlywood", weight=3]; 4339[label="xuu56/True",fontsize=10,color="white",style="solid",shape="box"];1585 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 2045[label="",style="solid", color="burlywood", weight=3]; 1586[label="(xuu550,xuu551,xuu552) <= xuu56",fontsize=16,color="burlywood",shape="box"];4340[label="xuu56/(xuu560,xuu561,xuu562)",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 2046[label="",style="solid", color="burlywood", weight=3]; 1587 -> 2008[label="",style="dashed", color="red", weight=0]; 1587[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1587 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1588 -> 2008[label="",style="dashed", color="red", weight=0]; 1588[label="compare xuu55 xuu56 /= GT",fontsize=16,color="magenta"];1588 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1589[label="compare0 (Just xuu122) (Just xuu123) True",fontsize=16,color="black",shape="box"];1589 -> 2047[label="",style="solid", color="black", weight=3]; 1590[label="xuu63",fontsize=16,color="green",shape="box"];1591[label="xuu62",fontsize=16,color="green",shape="box"];1592[label="xuu63",fontsize=16,color="green",shape="box"];1593[label="xuu62",fontsize=16,color="green",shape="box"];1594[label="xuu63",fontsize=16,color="green",shape="box"];1595[label="xuu62",fontsize=16,color="green",shape="box"];1596[label="xuu63",fontsize=16,color="green",shape="box"];1597[label="xuu62",fontsize=16,color="green",shape="box"];1598[label="xuu63",fontsize=16,color="green",shape="box"];1599[label="xuu62",fontsize=16,color="green",shape="box"];1600[label="xuu63",fontsize=16,color="green",shape="box"];1601[label="xuu62",fontsize=16,color="green",shape="box"];1602[label="xuu63",fontsize=16,color="green",shape="box"];1603[label="xuu62",fontsize=16,color="green",shape="box"];1604[label="xuu63",fontsize=16,color="green",shape="box"];1605[label="xuu62",fontsize=16,color="green",shape="box"];1606[label="xuu63",fontsize=16,color="green",shape="box"];1607[label="xuu62",fontsize=16,color="green",shape="box"];1608[label="xuu63",fontsize=16,color="green",shape="box"];1609[label="xuu62",fontsize=16,color="green",shape="box"];1610[label="xuu63",fontsize=16,color="green",shape="box"];1611[label="xuu62",fontsize=16,color="green",shape="box"];1612[label="xuu63",fontsize=16,color="green",shape="box"];1613[label="xuu62",fontsize=16,color="green",shape="box"];1614[label="xuu63",fontsize=16,color="green",shape="box"];1615[label="xuu62",fontsize=16,color="green",shape="box"];1616[label="xuu63",fontsize=16,color="green",shape="box"];1617[label="xuu62",fontsize=16,color="green",shape="box"];1618[label="compare0 (Left xuu130) (Left xuu131) True",fontsize=16,color="black",shape="box"];1618 -> 2048[label="",style="solid", color="black", weight=3]; 1619[label="xuu70",fontsize=16,color="green",shape="box"];1620[label="xuu69",fontsize=16,color="green",shape="box"];1621[label="xuu70",fontsize=16,color="green",shape="box"];1622[label="xuu69",fontsize=16,color="green",shape="box"];1623[label="xuu70",fontsize=16,color="green",shape="box"];1624[label="xuu69",fontsize=16,color="green",shape="box"];1625[label="xuu70",fontsize=16,color="green",shape="box"];1626[label="xuu69",fontsize=16,color="green",shape="box"];1627[label="xuu70",fontsize=16,color="green",shape="box"];1628[label="xuu69",fontsize=16,color="green",shape="box"];1629[label="xuu70",fontsize=16,color="green",shape="box"];1630[label="xuu69",fontsize=16,color="green",shape="box"];1631[label="xuu70",fontsize=16,color="green",shape="box"];1632[label="xuu69",fontsize=16,color="green",shape="box"];1633[label="xuu70",fontsize=16,color="green",shape="box"];1634[label="xuu69",fontsize=16,color="green",shape="box"];1635[label="xuu70",fontsize=16,color="green",shape="box"];1636[label="xuu69",fontsize=16,color="green",shape="box"];1637[label="xuu70",fontsize=16,color="green",shape="box"];1638[label="xuu69",fontsize=16,color="green",shape="box"];1639[label="xuu70",fontsize=16,color="green",shape="box"];1640[label="xuu69",fontsize=16,color="green",shape="box"];1641[label="xuu70",fontsize=16,color="green",shape="box"];1642[label="xuu69",fontsize=16,color="green",shape="box"];1643[label="xuu70",fontsize=16,color="green",shape="box"];1644[label="xuu69",fontsize=16,color="green",shape="box"];1645[label="xuu70",fontsize=16,color="green",shape="box"];1646[label="xuu69",fontsize=16,color="green",shape="box"];1647[label="compare0 (Right xuu137) (Right xuu138) True",fontsize=16,color="black",shape="box"];1647 -> 2049[label="",style="solid", color="black", weight=3]; 1648 -> 534[label="",style="dashed", color="red", weight=0]; 1648[label="xuu80 == xuu83",fontsize=16,color="magenta"];1648 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1648 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1649 -> 528[label="",style="dashed", color="red", weight=0]; 1649[label="xuu80 == xuu83",fontsize=16,color="magenta"];1649 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1649 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1650 -> 538[label="",style="dashed", color="red", weight=0]; 1650[label="xuu80 == xuu83",fontsize=16,color="magenta"];1650 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1650 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1651 -> 537[label="",style="dashed", color="red", weight=0]; 1651[label="xuu80 == xuu83",fontsize=16,color="magenta"];1651 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1651 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1652 -> 530[label="",style="dashed", color="red", weight=0]; 1652[label="xuu80 == xuu83",fontsize=16,color="magenta"];1652 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1652 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1653 -> 536[label="",style="dashed", color="red", weight=0]; 1653[label="xuu80 == xuu83",fontsize=16,color="magenta"];1653 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1653 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1654 -> 533[label="",style="dashed", color="red", weight=0]; 1654[label="xuu80 == xuu83",fontsize=16,color="magenta"];1654 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1654 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1655 -> 529[label="",style="dashed", color="red", weight=0]; 1655[label="xuu80 == xuu83",fontsize=16,color="magenta"];1655 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1655 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1656 -> 527[label="",style="dashed", color="red", weight=0]; 1656[label="xuu80 == xuu83",fontsize=16,color="magenta"];1656 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1656 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1657 -> 539[label="",style="dashed", color="red", weight=0]; 1657[label="xuu80 == xuu83",fontsize=16,color="magenta"];1657 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1657 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1658 -> 535[label="",style="dashed", color="red", weight=0]; 1658[label="xuu80 == xuu83",fontsize=16,color="magenta"];1658 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1658 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1659 -> 531[label="",style="dashed", color="red", weight=0]; 1659[label="xuu80 == xuu83",fontsize=16,color="magenta"];1659 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1659 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1660 -> 540[label="",style="dashed", color="red", weight=0]; 1660[label="xuu80 == xuu83",fontsize=16,color="magenta"];1660 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1660 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1661 -> 532[label="",style="dashed", color="red", weight=0]; 1661[label="xuu80 == xuu83",fontsize=16,color="magenta"];1661 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1661 -> 2077[label="",style="dashed", color="magenta", weight=3]; 2081 -> 984[label="",style="dashed", color="red", weight=0]; 2081[label="xuu81 == xuu84 && xuu82 <= xuu85",fontsize=16,color="magenta"];2081 -> 2090[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2091[label="",style="dashed", color="magenta", weight=3]; 2082[label="xuu81 < xuu84",fontsize=16,color="blue",shape="box"];4341[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4341[label="",style="solid", color="blue", weight=9]; 4341 -> 2092[label="",style="solid", color="blue", weight=3]; 4342[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4342[label="",style="solid", color="blue", weight=9]; 4342 -> 2093[label="",style="solid", color="blue", weight=3]; 4343[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4343[label="",style="solid", color="blue", weight=9]; 4343 -> 2094[label="",style="solid", color="blue", weight=3]; 4344[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4344[label="",style="solid", color="blue", weight=9]; 4344 -> 2095[label="",style="solid", color="blue", weight=3]; 4345[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4345[label="",style="solid", color="blue", weight=9]; 4345 -> 2096[label="",style="solid", color="blue", weight=3]; 4346[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4346[label="",style="solid", color="blue", weight=9]; 4346 -> 2097[label="",style="solid", color="blue", weight=3]; 4347[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4347[label="",style="solid", color="blue", weight=9]; 4347 -> 2098[label="",style="solid", color="blue", weight=3]; 4348[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4348[label="",style="solid", color="blue", weight=9]; 4348 -> 2099[label="",style="solid", color="blue", weight=3]; 4349[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 2100[label="",style="solid", color="blue", weight=3]; 4350[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 2101[label="",style="solid", color="blue", weight=3]; 4351[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 2102[label="",style="solid", color="blue", weight=3]; 4352[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 2103[label="",style="solid", color="blue", weight=3]; 4353[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4353[label="",style="solid", color="blue", weight=9]; 4353 -> 2104[label="",style="solid", color="blue", weight=3]; 4354[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 2105[label="",style="solid", color="blue", weight=3]; 2080[label="xuu191 || xuu192",fontsize=16,color="burlywood",shape="triangle"];4355[label="xuu191/False",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 2106[label="",style="solid", color="burlywood", weight=3]; 4356[label="xuu191/True",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4356[label="",style="solid", color="burlywood", weight=9]; 4356 -> 2107[label="",style="solid", color="burlywood", weight=3]; 1664[label="xuu83",fontsize=16,color="green",shape="box"];1665[label="xuu80",fontsize=16,color="green",shape="box"];1666[label="xuu83",fontsize=16,color="green",shape="box"];1667[label="xuu80",fontsize=16,color="green",shape="box"];1668[label="xuu83",fontsize=16,color="green",shape="box"];1669[label="xuu80",fontsize=16,color="green",shape="box"];1670[label="xuu83",fontsize=16,color="green",shape="box"];1671[label="xuu80",fontsize=16,color="green",shape="box"];1672[label="xuu83",fontsize=16,color="green",shape="box"];1673[label="xuu80",fontsize=16,color="green",shape="box"];1674[label="xuu83",fontsize=16,color="green",shape="box"];1675[label="xuu80",fontsize=16,color="green",shape="box"];1676[label="xuu83",fontsize=16,color="green",shape="box"];1677[label="xuu80",fontsize=16,color="green",shape="box"];1678[label="xuu83",fontsize=16,color="green",shape="box"];1679[label="xuu80",fontsize=16,color="green",shape="box"];1680[label="xuu83",fontsize=16,color="green",shape="box"];1681[label="xuu80",fontsize=16,color="green",shape="box"];1682[label="xuu83",fontsize=16,color="green",shape="box"];1683[label="xuu80",fontsize=16,color="green",shape="box"];1684[label="xuu83",fontsize=16,color="green",shape="box"];1685[label="xuu80",fontsize=16,color="green",shape="box"];1686[label="xuu83",fontsize=16,color="green",shape="box"];1687[label="xuu80",fontsize=16,color="green",shape="box"];1688[label="xuu83",fontsize=16,color="green",shape="box"];1689[label="xuu80",fontsize=16,color="green",shape="box"];1690[label="xuu83",fontsize=16,color="green",shape="box"];1691[label="xuu80",fontsize=16,color="green",shape="box"];1692[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) xuu175",fontsize=16,color="burlywood",shape="triangle"];4357[label="xuu175/False",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4357[label="",style="solid", color="burlywood", weight=9]; 4357 -> 2108[label="",style="solid", color="burlywood", weight=3]; 4358[label="xuu175/True",fontsize=10,color="white",style="solid",shape="box"];1692 -> 4358[label="",style="solid", color="burlywood", weight=9]; 4358 -> 2109[label="",style="solid", color="burlywood", weight=3]; 1693 -> 1692[label="",style="dashed", color="red", weight=0]; 1693[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) True",fontsize=16,color="magenta"];1693 -> 2110[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1728[label="",style="dashed", color="red", weight=0]; 2126[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2127[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="triangle"];2127 -> 2148[label="",style="solid", color="black", weight=3]; 1740 -> 1734[label="",style="dashed", color="red", weight=0]; 1740[label="FiniteMap.sizeFM xuu38",fontsize=16,color="magenta"];1740 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1741 -> 2127[label="",style="dashed", color="red", weight=0]; 1741[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1742 -> 1736[label="",style="dashed", color="red", weight=0]; 1742[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1743 -> 2150[label="",style="dashed", color="red", weight=0]; 1743[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];1743 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1744[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 xuu38 xuu33 xuu38 xuu38",fontsize=16,color="burlywood",shape="box"];4359[label="xuu38/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1744 -> 4359[label="",style="solid", color="burlywood", weight=9]; 4359 -> 2156[label="",style="solid", color="burlywood", weight=3]; 4360[label="xuu38/FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384",fontsize=10,color="white",style="solid",shape="box"];1744 -> 4360[label="",style="solid", color="burlywood", weight=9]; 4360 -> 2157[label="",style="solid", color="burlywood", weight=3]; 2576[label="primPlusNat (Succ xuu19400) (Succ xuu19300)",fontsize=16,color="black",shape="box"];2576 -> 2711[label="",style="solid", color="black", weight=3]; 2577[label="primPlusNat (Succ xuu19400) Zero",fontsize=16,color="black",shape="box"];2577 -> 2712[label="",style="solid", color="black", weight=3]; 2578[label="primPlusNat Zero (Succ xuu19300)",fontsize=16,color="black",shape="box"];2578 -> 2713[label="",style="solid", color="black", weight=3]; 2579[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2579 -> 2714[label="",style="solid", color="black", weight=3]; 2580 -> 2167[label="",style="dashed", color="red", weight=0]; 2580[label="primMinusNat xuu19400 xuu19300",fontsize=16,color="magenta"];2580 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2581[label="Pos (Succ xuu19400)",fontsize=16,color="green",shape="box"];2582[label="Neg (Succ xuu19300)",fontsize=16,color="green",shape="box"];2583[label="Pos Zero",fontsize=16,color="green",shape="box"];3667 -> 2111[label="",style="dashed", color="red", weight=0]; 3667[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290) (FiniteMap.mkBranchRight_size xuu292 xuu293 xuu290)",fontsize=16,color="magenta"];3667 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3667 -> 3669[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1724[label="",style="dashed", color="red", weight=0]; 1746[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1747 -> 1736[label="",style="dashed", color="red", weight=0]; 1747[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2022[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 otherwise",fontsize=16,color="black",shape="box"];2022 -> 2161[label="",style="solid", color="black", weight=3]; 2023[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu26 (xuu300 : xuu301) xuu31 xuu34 xuu26 xuu34 xuu26",fontsize=16,color="burlywood",shape="box"];4361[label="xuu26/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4361[label="",style="solid", color="burlywood", weight=9]; 4361 -> 2162[label="",style="solid", color="burlywood", weight=3]; 4362[label="xuu26/FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4362[label="",style="solid", color="burlywood", weight=9]; 4362 -> 2163[label="",style="solid", color="burlywood", weight=3]; 1748 -> 2164[label="",style="dashed", color="red", weight=0]; 1748[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1748 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1749 -> 2170[label="",style="dashed", color="red", weight=0]; 1749[label="primPlusNat (primMulNat xuu300000 (Succ xuu4000100)) (Succ xuu4000100)",fontsize=16,color="magenta"];1749 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1750[label="Zero",fontsize=16,color="green",shape="box"];1751[label="Zero",fontsize=16,color="green",shape="box"];1752[label="Zero",fontsize=16,color="green",shape="box"];1753 -> 164[label="",style="dashed", color="red", weight=0]; 1753[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1753 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1753 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1754[label="LT",fontsize=16,color="green",shape="box"];1755 -> 165[label="",style="dashed", color="red", weight=0]; 1755[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1755 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1755 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1756[label="LT",fontsize=16,color="green",shape="box"];1757 -> 166[label="",style="dashed", color="red", weight=0]; 1757[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1757 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1757 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1758[label="LT",fontsize=16,color="green",shape="box"];1759 -> 167[label="",style="dashed", color="red", weight=0]; 1759[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1759 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1759 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1760[label="LT",fontsize=16,color="green",shape="box"];1761 -> 168[label="",style="dashed", color="red", weight=0]; 1761[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1761 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1762[label="LT",fontsize=16,color="green",shape="box"];1763 -> 169[label="",style="dashed", color="red", weight=0]; 1763[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1763 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1763 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1764[label="LT",fontsize=16,color="green",shape="box"];1765 -> 170[label="",style="dashed", color="red", weight=0]; 1765[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1765 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1765 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1766[label="LT",fontsize=16,color="green",shape="box"];1767 -> 171[label="",style="dashed", color="red", weight=0]; 1767[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1767 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1767 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1768[label="LT",fontsize=16,color="green",shape="box"];1769 -> 172[label="",style="dashed", color="red", weight=0]; 1769[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1769 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1770[label="LT",fontsize=16,color="green",shape="box"];1771 -> 173[label="",style="dashed", color="red", weight=0]; 1771[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1771 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1772[label="LT",fontsize=16,color="green",shape="box"];1773 -> 174[label="",style="dashed", color="red", weight=0]; 1773[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1773 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1774[label="LT",fontsize=16,color="green",shape="box"];1775 -> 175[label="",style="dashed", color="red", weight=0]; 1775[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1775 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1776[label="LT",fontsize=16,color="green",shape="box"];1777 -> 176[label="",style="dashed", color="red", weight=0]; 1777[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1777 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1777 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1778[label="LT",fontsize=16,color="green",shape="box"];1779 -> 177[label="",style="dashed", color="red", weight=0]; 1779[label="compare xuu96 xuu98",fontsize=16,color="magenta"];1779 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1779 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1780[label="LT",fontsize=16,color="green",shape="box"];1781[label="xuu96",fontsize=16,color="green",shape="box"];1782[label="xuu98",fontsize=16,color="green",shape="box"];1783[label="xuu96",fontsize=16,color="green",shape="box"];1784[label="xuu98",fontsize=16,color="green",shape="box"];1785[label="xuu96",fontsize=16,color="green",shape="box"];1786[label="xuu98",fontsize=16,color="green",shape="box"];1787[label="xuu96",fontsize=16,color="green",shape="box"];1788[label="xuu98",fontsize=16,color="green",shape="box"];1789[label="xuu96",fontsize=16,color="green",shape="box"];1790[label="xuu98",fontsize=16,color="green",shape="box"];1791[label="xuu96",fontsize=16,color="green",shape="box"];1792[label="xuu98",fontsize=16,color="green",shape="box"];1793[label="xuu96",fontsize=16,color="green",shape="box"];1794[label="xuu98",fontsize=16,color="green",shape="box"];1795[label="xuu96",fontsize=16,color="green",shape="box"];1796[label="xuu98",fontsize=16,color="green",shape="box"];1797[label="xuu96",fontsize=16,color="green",shape="box"];1798[label="xuu98",fontsize=16,color="green",shape="box"];1799[label="xuu96",fontsize=16,color="green",shape="box"];1800[label="xuu98",fontsize=16,color="green",shape="box"];1801[label="xuu96",fontsize=16,color="green",shape="box"];1802[label="xuu98",fontsize=16,color="green",shape="box"];1803[label="xuu96",fontsize=16,color="green",shape="box"];1804[label="xuu98",fontsize=16,color="green",shape="box"];1805[label="xuu96",fontsize=16,color="green",shape="box"];1806[label="xuu98",fontsize=16,color="green",shape="box"];1807[label="xuu96",fontsize=16,color="green",shape="box"];1808[label="xuu98",fontsize=16,color="green",shape="box"];1809[label="xuu99",fontsize=16,color="green",shape="box"];1810[label="xuu97",fontsize=16,color="green",shape="box"];1811[label="xuu99",fontsize=16,color="green",shape="box"];1812[label="xuu97",fontsize=16,color="green",shape="box"];1813[label="xuu99",fontsize=16,color="green",shape="box"];1814[label="xuu97",fontsize=16,color="green",shape="box"];1815[label="xuu99",fontsize=16,color="green",shape="box"];1816[label="xuu97",fontsize=16,color="green",shape="box"];1817[label="xuu99",fontsize=16,color="green",shape="box"];1818[label="xuu97",fontsize=16,color="green",shape="box"];1819[label="xuu99",fontsize=16,color="green",shape="box"];1820[label="xuu97",fontsize=16,color="green",shape="box"];1821[label="xuu99",fontsize=16,color="green",shape="box"];1822[label="xuu97",fontsize=16,color="green",shape="box"];1823[label="xuu99",fontsize=16,color="green",shape="box"];1824[label="xuu97",fontsize=16,color="green",shape="box"];1825[label="xuu99",fontsize=16,color="green",shape="box"];1826[label="xuu97",fontsize=16,color="green",shape="box"];1827[label="xuu99",fontsize=16,color="green",shape="box"];1828[label="xuu97",fontsize=16,color="green",shape="box"];1829[label="xuu99",fontsize=16,color="green",shape="box"];1830[label="xuu97",fontsize=16,color="green",shape="box"];1831[label="xuu99",fontsize=16,color="green",shape="box"];1832[label="xuu97",fontsize=16,color="green",shape="box"];1833[label="xuu99",fontsize=16,color="green",shape="box"];1834[label="xuu97",fontsize=16,color="green",shape="box"];1835[label="xuu99",fontsize=16,color="green",shape="box"];1836[label="xuu97",fontsize=16,color="green",shape="box"];1837[label="compare1 (xuu153,xuu154) (xuu155,xuu156) False",fontsize=16,color="black",shape="box"];1837 -> 2206[label="",style="solid", color="black", weight=3]; 1838[label="compare1 (xuu153,xuu154) (xuu155,xuu156) True",fontsize=16,color="black",shape="box"];1838 -> 2207[label="",style="solid", color="black", weight=3]; 1839[label="True",fontsize=16,color="green",shape="box"];1840[label="primEqInt (Pos (Succ xuu4000000)) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1840 -> 2208[label="",style="solid", color="black", weight=3]; 1841[label="primEqInt (Pos (Succ xuu4000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1841 -> 2209[label="",style="solid", color="black", weight=3]; 1842[label="False",fontsize=16,color="green",shape="box"];1843[label="primEqInt (Pos Zero) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1843 -> 2210[label="",style="solid", color="black", weight=3]; 1844[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1844 -> 2211[label="",style="solid", color="black", weight=3]; 1845[label="primEqInt (Pos Zero) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1845 -> 2212[label="",style="solid", color="black", weight=3]; 1846[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1846 -> 2213[label="",style="solid", color="black", weight=3]; 1847[label="False",fontsize=16,color="green",shape="box"];1848[label="primEqInt (Neg (Succ xuu4000000)) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1848 -> 2214[label="",style="solid", color="black", weight=3]; 1849[label="primEqInt (Neg (Succ xuu4000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1849 -> 2215[label="",style="solid", color="black", weight=3]; 1850[label="primEqInt (Neg Zero) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1850 -> 2216[label="",style="solid", color="black", weight=3]; 1851[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1851 -> 2217[label="",style="solid", color="black", weight=3]; 1852[label="primEqInt (Neg Zero) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1852 -> 2218[label="",style="solid", color="black", weight=3]; 1853[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1853 -> 2219[label="",style="solid", color="black", weight=3]; 1854 -> 527[label="",style="dashed", color="red", weight=0]; 1854[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1854 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1854 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1855 -> 528[label="",style="dashed", color="red", weight=0]; 1855[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1855 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1856 -> 529[label="",style="dashed", color="red", weight=0]; 1856[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1856 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1856 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1857 -> 530[label="",style="dashed", color="red", weight=0]; 1857[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1857 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1858 -> 531[label="",style="dashed", color="red", weight=0]; 1858[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1858 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1858 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1859 -> 532[label="",style="dashed", color="red", weight=0]; 1859[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1859 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1860 -> 533[label="",style="dashed", color="red", weight=0]; 1860[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1860 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1861 -> 534[label="",style="dashed", color="red", weight=0]; 1861[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1861 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1862 -> 535[label="",style="dashed", color="red", weight=0]; 1862[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1862 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1863 -> 536[label="",style="dashed", color="red", weight=0]; 1863[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1863 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1864 -> 537[label="",style="dashed", color="red", weight=0]; 1864[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1864 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1865 -> 538[label="",style="dashed", color="red", weight=0]; 1865[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1865 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1866 -> 539[label="",style="dashed", color="red", weight=0]; 1866[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1866 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1867 -> 540[label="",style="dashed", color="red", weight=0]; 1867[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1867 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1868[label="xuu400001",fontsize=16,color="green",shape="box"];1869[label="xuu30001",fontsize=16,color="green",shape="box"];1870[label="xuu400000",fontsize=16,color="green",shape="box"];1871[label="xuu30000",fontsize=16,color="green",shape="box"];1872[label="xuu400000",fontsize=16,color="green",shape="box"];1873[label="xuu30000",fontsize=16,color="green",shape="box"];1874[label="xuu400000",fontsize=16,color="green",shape="box"];1875[label="xuu30000",fontsize=16,color="green",shape="box"];1876[label="xuu400000",fontsize=16,color="green",shape="box"];1877[label="xuu30000",fontsize=16,color="green",shape="box"];1878[label="xuu400000",fontsize=16,color="green",shape="box"];1879[label="xuu30000",fontsize=16,color="green",shape="box"];1880[label="xuu400000",fontsize=16,color="green",shape="box"];1881[label="xuu30000",fontsize=16,color="green",shape="box"];1882[label="xuu400000",fontsize=16,color="green",shape="box"];1883[label="xuu30000",fontsize=16,color="green",shape="box"];1884[label="xuu400000",fontsize=16,color="green",shape="box"];1885[label="xuu30000",fontsize=16,color="green",shape="box"];1886[label="xuu400000",fontsize=16,color="green",shape="box"];1887[label="xuu30000",fontsize=16,color="green",shape="box"];1888[label="xuu400000",fontsize=16,color="green",shape="box"];1889[label="xuu30000",fontsize=16,color="green",shape="box"];1890[label="xuu400000",fontsize=16,color="green",shape="box"];1891[label="xuu30000",fontsize=16,color="green",shape="box"];1892[label="xuu400000",fontsize=16,color="green",shape="box"];1893[label="xuu30000",fontsize=16,color="green",shape="box"];1894[label="xuu400000",fontsize=16,color="green",shape="box"];1895[label="xuu30000",fontsize=16,color="green",shape="box"];1896[label="xuu400000",fontsize=16,color="green",shape="box"];1897[label="xuu30000",fontsize=16,color="green",shape="box"];1898[label="xuu400000",fontsize=16,color="green",shape="box"];1899[label="xuu30000",fontsize=16,color="green",shape="box"];1900[label="xuu400000",fontsize=16,color="green",shape="box"];1901[label="xuu30000",fontsize=16,color="green",shape="box"];1902[label="xuu400000",fontsize=16,color="green",shape="box"];1903[label="xuu30000",fontsize=16,color="green",shape="box"];1904[label="xuu400000",fontsize=16,color="green",shape="box"];1905[label="xuu30000",fontsize=16,color="green",shape="box"];1906[label="xuu400000",fontsize=16,color="green",shape="box"];1907[label="xuu30000",fontsize=16,color="green",shape="box"];1908[label="xuu400000",fontsize=16,color="green",shape="box"];1909[label="xuu30000",fontsize=16,color="green",shape="box"];1910[label="xuu400000",fontsize=16,color="green",shape="box"];1911[label="xuu30000",fontsize=16,color="green",shape="box"];1912[label="xuu400000",fontsize=16,color="green",shape="box"];1913[label="xuu30000",fontsize=16,color="green",shape="box"];1914[label="xuu400000",fontsize=16,color="green",shape="box"];1915[label="xuu30000",fontsize=16,color="green",shape="box"];1916[label="xuu400000",fontsize=16,color="green",shape="box"];1917[label="xuu30000",fontsize=16,color="green",shape="box"];1918[label="xuu400000",fontsize=16,color="green",shape="box"];1919[label="xuu30000",fontsize=16,color="green",shape="box"];1920[label="xuu400000",fontsize=16,color="green",shape="box"];1921[label="xuu30000",fontsize=16,color="green",shape="box"];1922[label="xuu400000",fontsize=16,color="green",shape="box"];1923[label="xuu30000",fontsize=16,color="green",shape="box"];1924[label="xuu400000",fontsize=16,color="green",shape="box"];1925[label="xuu30000",fontsize=16,color="green",shape="box"];1926[label="xuu400000",fontsize=16,color="green",shape="box"];1927[label="xuu30000",fontsize=16,color="green",shape="box"];1928[label="xuu400000",fontsize=16,color="green",shape="box"];1929[label="xuu30000",fontsize=16,color="green",shape="box"];1930[label="xuu400000",fontsize=16,color="green",shape="box"];1931[label="xuu30000",fontsize=16,color="green",shape="box"];1932[label="xuu400000",fontsize=16,color="green",shape="box"];1933[label="xuu30000",fontsize=16,color="green",shape="box"];1934[label="xuu400000",fontsize=16,color="green",shape="box"];1935[label="xuu30000",fontsize=16,color="green",shape="box"];1936[label="xuu400000",fontsize=16,color="green",shape="box"];1937[label="xuu30000",fontsize=16,color="green",shape="box"];1938[label="xuu400000",fontsize=16,color="green",shape="box"];1939[label="xuu30000",fontsize=16,color="green",shape="box"];1940[label="xuu400000",fontsize=16,color="green",shape="box"];1941[label="xuu30000",fontsize=16,color="green",shape="box"];1942[label="xuu400000",fontsize=16,color="green",shape="box"];1943[label="xuu30000",fontsize=16,color="green",shape="box"];1944[label="xuu400000",fontsize=16,color="green",shape="box"];1945[label="xuu30000",fontsize=16,color="green",shape="box"];1946[label="xuu400000",fontsize=16,color="green",shape="box"];1947[label="xuu30000",fontsize=16,color="green",shape="box"];1948[label="xuu400000",fontsize=16,color="green",shape="box"];1949[label="xuu30000",fontsize=16,color="green",shape="box"];1950[label="xuu400000",fontsize=16,color="green",shape="box"];1951[label="xuu30000",fontsize=16,color="green",shape="box"];1952[label="xuu400000",fontsize=16,color="green",shape="box"];1953[label="xuu30000",fontsize=16,color="green",shape="box"];1954 -> 527[label="",style="dashed", color="red", weight=0]; 1954[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1954 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1955 -> 528[label="",style="dashed", color="red", weight=0]; 1955[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1955 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1956 -> 529[label="",style="dashed", color="red", weight=0]; 1956[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1956 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1957 -> 530[label="",style="dashed", color="red", weight=0]; 1957[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1957 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1958 -> 531[label="",style="dashed", color="red", weight=0]; 1958[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1958 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1959 -> 532[label="",style="dashed", color="red", weight=0]; 1959[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1959 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1960 -> 533[label="",style="dashed", color="red", weight=0]; 1960[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1960 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1961 -> 534[label="",style="dashed", color="red", weight=0]; 1961[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1961 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1962 -> 535[label="",style="dashed", color="red", weight=0]; 1962[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1962 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1963 -> 536[label="",style="dashed", color="red", weight=0]; 1963[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1963 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1964 -> 537[label="",style="dashed", color="red", weight=0]; 1964[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1964 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1965 -> 538[label="",style="dashed", color="red", weight=0]; 1965[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1965 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1966 -> 539[label="",style="dashed", color="red", weight=0]; 1966[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1966 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1967 -> 540[label="",style="dashed", color="red", weight=0]; 1967[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1967 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1968[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4363[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 2276[label="",style="solid", color="blue", weight=3]; 4364[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 2277[label="",style="solid", color="blue", weight=3]; 4365[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 2278[label="",style="solid", color="blue", weight=3]; 4366[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 2279[label="",style="solid", color="blue", weight=3]; 4367[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 2280[label="",style="solid", color="blue", weight=3]; 4368[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 2281[label="",style="solid", color="blue", weight=3]; 4369[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 2282[label="",style="solid", color="blue", weight=3]; 4370[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4370[label="",style="solid", color="blue", weight=9]; 4370 -> 2283[label="",style="solid", color="blue", weight=3]; 4371[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4371[label="",style="solid", color="blue", weight=9]; 4371 -> 2284[label="",style="solid", color="blue", weight=3]; 4372[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4372[label="",style="solid", color="blue", weight=9]; 4372 -> 2285[label="",style="solid", color="blue", weight=3]; 4373[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 2286[label="",style="solid", color="blue", weight=3]; 4374[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 2287[label="",style="solid", color="blue", weight=3]; 4375[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 2288[label="",style="solid", color="blue", weight=3]; 4376[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 2289[label="",style="solid", color="blue", weight=3]; 1969[label="xuu400002 == xuu30002",fontsize=16,color="blue",shape="box"];4377[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 2290[label="",style="solid", color="blue", weight=3]; 4378[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4378[label="",style="solid", color="blue", weight=9]; 4378 -> 2291[label="",style="solid", color="blue", weight=3]; 4379[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 2292[label="",style="solid", color="blue", weight=3]; 4380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 2293[label="",style="solid", color="blue", weight=3]; 4381[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 2294[label="",style="solid", color="blue", weight=3]; 4382[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 2295[label="",style="solid", color="blue", weight=3]; 4383[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 2296[label="",style="solid", color="blue", weight=3]; 4384[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 2297[label="",style="solid", color="blue", weight=3]; 4385[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 2298[label="",style="solid", color="blue", weight=3]; 4386[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 2299[label="",style="solid", color="blue", weight=3]; 4387[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 2300[label="",style="solid", color="blue", weight=3]; 4388[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 2301[label="",style="solid", color="blue", weight=3]; 4389[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 2302[label="",style="solid", color="blue", weight=3]; 4390[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 2303[label="",style="solid", color="blue", weight=3]; 1970[label="primEqNat (Succ xuu4000000) xuu30000",fontsize=16,color="burlywood",shape="box"];4391[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1970 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 2304[label="",style="solid", color="burlywood", weight=3]; 4392[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1970 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 2305[label="",style="solid", color="burlywood", weight=3]; 1971[label="primEqNat Zero xuu30000",fontsize=16,color="burlywood",shape="box"];4393[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1971 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 2306[label="",style="solid", color="burlywood", weight=3]; 4394[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1971 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 2307[label="",style="solid", color="burlywood", weight=3]; 1972 -> 389[label="",style="dashed", color="red", weight=0]; 1972[label="xuu400000 * xuu30001",fontsize=16,color="magenta"];1972 -> 2308[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2309[label="",style="dashed", color="magenta", weight=3]; 1973 -> 389[label="",style="dashed", color="red", weight=0]; 1973[label="xuu400001 * xuu30000",fontsize=16,color="magenta"];1973 -> 2310[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2311[label="",style="dashed", color="magenta", weight=3]; 1974 -> 527[label="",style="dashed", color="red", weight=0]; 1974[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1974 -> 2312[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2313[label="",style="dashed", color="magenta", weight=3]; 1975 -> 528[label="",style="dashed", color="red", weight=0]; 1975[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1975 -> 2314[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2315[label="",style="dashed", color="magenta", weight=3]; 1976 -> 529[label="",style="dashed", color="red", weight=0]; 1976[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1976 -> 2316[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2317[label="",style="dashed", color="magenta", weight=3]; 1977 -> 530[label="",style="dashed", color="red", weight=0]; 1977[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1977 -> 2318[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2319[label="",style="dashed", color="magenta", weight=3]; 1978 -> 531[label="",style="dashed", color="red", weight=0]; 1978[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1978 -> 2320[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2321[label="",style="dashed", color="magenta", weight=3]; 1979 -> 532[label="",style="dashed", color="red", weight=0]; 1979[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1979 -> 2322[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2323[label="",style="dashed", color="magenta", weight=3]; 1980 -> 533[label="",style="dashed", color="red", weight=0]; 1980[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1980 -> 2324[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2325[label="",style="dashed", color="magenta", weight=3]; 1981 -> 534[label="",style="dashed", color="red", weight=0]; 1981[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1981 -> 2326[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2327[label="",style="dashed", color="magenta", weight=3]; 1982 -> 535[label="",style="dashed", color="red", weight=0]; 1982[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1982 -> 2328[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2329[label="",style="dashed", color="magenta", weight=3]; 1983 -> 536[label="",style="dashed", color="red", weight=0]; 1983[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1983 -> 2330[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2331[label="",style="dashed", color="magenta", weight=3]; 1984 -> 537[label="",style="dashed", color="red", weight=0]; 1984[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1984 -> 2332[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2333[label="",style="dashed", color="magenta", weight=3]; 1985 -> 538[label="",style="dashed", color="red", weight=0]; 1985[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1985 -> 2334[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2335[label="",style="dashed", color="magenta", weight=3]; 1986 -> 539[label="",style="dashed", color="red", weight=0]; 1986[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1986 -> 2336[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2337[label="",style="dashed", color="magenta", weight=3]; 1987 -> 540[label="",style="dashed", color="red", weight=0]; 1987[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1987 -> 2338[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2339[label="",style="dashed", color="magenta", weight=3]; 1988 -> 527[label="",style="dashed", color="red", weight=0]; 1988[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1988 -> 2340[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2341[label="",style="dashed", color="magenta", weight=3]; 1989 -> 528[label="",style="dashed", color="red", weight=0]; 1989[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1989 -> 2342[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2343[label="",style="dashed", color="magenta", weight=3]; 1990 -> 529[label="",style="dashed", color="red", weight=0]; 1990[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1990 -> 2344[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2345[label="",style="dashed", color="magenta", weight=3]; 1991 -> 530[label="",style="dashed", color="red", weight=0]; 1991[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1991 -> 2346[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2347[label="",style="dashed", color="magenta", weight=3]; 1992 -> 531[label="",style="dashed", color="red", weight=0]; 1992[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1992 -> 2348[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1993 -> 532[label="",style="dashed", color="red", weight=0]; 1993[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1993 -> 2350[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2351[label="",style="dashed", color="magenta", weight=3]; 1994 -> 533[label="",style="dashed", color="red", weight=0]; 1994[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1994 -> 2352[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2353[label="",style="dashed", color="magenta", weight=3]; 1995 -> 534[label="",style="dashed", color="red", weight=0]; 1995[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1995 -> 2354[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2355[label="",style="dashed", color="magenta", weight=3]; 1996 -> 535[label="",style="dashed", color="red", weight=0]; 1996[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1996 -> 2356[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2357[label="",style="dashed", color="magenta", weight=3]; 1997 -> 536[label="",style="dashed", color="red", weight=0]; 1997[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1997 -> 2358[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2359[label="",style="dashed", color="magenta", weight=3]; 1998 -> 537[label="",style="dashed", color="red", weight=0]; 1998[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1998 -> 2360[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2361[label="",style="dashed", color="magenta", weight=3]; 1999 -> 538[label="",style="dashed", color="red", weight=0]; 1999[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1999 -> 2362[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2000 -> 539[label="",style="dashed", color="red", weight=0]; 2000[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2000 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2001 -> 540[label="",style="dashed", color="red", weight=0]; 2001[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2001 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2002 -> 527[label="",style="dashed", color="red", weight=0]; 2002[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2002 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2003 -> 533[label="",style="dashed", color="red", weight=0]; 2003[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2003 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2004 -> 527[label="",style="dashed", color="red", weight=0]; 2004[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2004 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2005 -> 533[label="",style="dashed", color="red", weight=0]; 2005[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2005 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2006 -> 389[label="",style="dashed", color="red", weight=0]; 2006[label="xuu400000 * xuu30001",fontsize=16,color="magenta"];2006 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2007 -> 389[label="",style="dashed", color="red", weight=0]; 2007[label="xuu400001 * xuu30000",fontsize=16,color="magenta"];2007 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2009 -> 164[label="",style="dashed", color="red", weight=0]; 2009[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2009 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2008[label="xuu187 /= GT",fontsize=16,color="black",shape="triangle"];2008 -> 2382[label="",style="solid", color="black", weight=3]; 2010 -> 165[label="",style="dashed", color="red", weight=0]; 2010[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2010 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2011 -> 166[label="",style="dashed", color="red", weight=0]; 2011[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2011 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2024[label="(xuu550,xuu551) <= (xuu560,xuu561)",fontsize=16,color="black",shape="box"];2024 -> 2387[label="",style="solid", color="black", weight=3]; 2025[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2025 -> 2388[label="",style="solid", color="black", weight=3]; 2026[label="Nothing <= Just xuu560",fontsize=16,color="black",shape="box"];2026 -> 2389[label="",style="solid", color="black", weight=3]; 2027[label="Just xuu550 <= Nothing",fontsize=16,color="black",shape="box"];2027 -> 2390[label="",style="solid", color="black", weight=3]; 2028[label="Just xuu550 <= Just xuu560",fontsize=16,color="black",shape="box"];2028 -> 2391[label="",style="solid", color="black", weight=3]; 2012 -> 169[label="",style="dashed", color="red", weight=0]; 2012[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2012 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2013 -> 170[label="",style="dashed", color="red", weight=0]; 2013[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2013 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2029[label="Left xuu550 <= Left xuu560",fontsize=16,color="black",shape="box"];2029 -> 2396[label="",style="solid", color="black", weight=3]; 2030[label="Left xuu550 <= Right xuu560",fontsize=16,color="black",shape="box"];2030 -> 2397[label="",style="solid", color="black", weight=3]; 2031[label="Right xuu550 <= Left xuu560",fontsize=16,color="black",shape="box"];2031 -> 2398[label="",style="solid", color="black", weight=3]; 2032[label="Right xuu550 <= Right xuu560",fontsize=16,color="black",shape="box"];2032 -> 2399[label="",style="solid", color="black", weight=3]; 2014 -> 172[label="",style="dashed", color="red", weight=0]; 2014[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2014 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2033[label="LT <= LT",fontsize=16,color="black",shape="box"];2033 -> 2402[label="",style="solid", color="black", weight=3]; 2034[label="LT <= EQ",fontsize=16,color="black",shape="box"];2034 -> 2403[label="",style="solid", color="black", weight=3]; 2035[label="LT <= GT",fontsize=16,color="black",shape="box"];2035 -> 2404[label="",style="solid", color="black", weight=3]; 2036[label="EQ <= LT",fontsize=16,color="black",shape="box"];2036 -> 2405[label="",style="solid", color="black", weight=3]; 2037[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2037 -> 2406[label="",style="solid", color="black", weight=3]; 2038[label="EQ <= GT",fontsize=16,color="black",shape="box"];2038 -> 2407[label="",style="solid", color="black", weight=3]; 2039[label="GT <= LT",fontsize=16,color="black",shape="box"];2039 -> 2408[label="",style="solid", color="black", weight=3]; 2040[label="GT <= EQ",fontsize=16,color="black",shape="box"];2040 -> 2409[label="",style="solid", color="black", weight=3]; 2041[label="GT <= GT",fontsize=16,color="black",shape="box"];2041 -> 2410[label="",style="solid", color="black", weight=3]; 2042[label="False <= False",fontsize=16,color="black",shape="box"];2042 -> 2411[label="",style="solid", color="black", weight=3]; 2043[label="False <= True",fontsize=16,color="black",shape="box"];2043 -> 2412[label="",style="solid", color="black", weight=3]; 2044[label="True <= False",fontsize=16,color="black",shape="box"];2044 -> 2413[label="",style="solid", color="black", weight=3]; 2045[label="True <= True",fontsize=16,color="black",shape="box"];2045 -> 2414[label="",style="solid", color="black", weight=3]; 2046[label="(xuu550,xuu551,xuu552) <= (xuu560,xuu561,xuu562)",fontsize=16,color="black",shape="box"];2046 -> 2415[label="",style="solid", color="black", weight=3]; 2015 -> 176[label="",style="dashed", color="red", weight=0]; 2015[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2015 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2016 -> 177[label="",style="dashed", color="red", weight=0]; 2016[label="compare xuu55 xuu56",fontsize=16,color="magenta"];2016 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2047[label="GT",fontsize=16,color="green",shape="box"];2048[label="GT",fontsize=16,color="green",shape="box"];2049[label="GT",fontsize=16,color="green",shape="box"];2050[label="xuu80",fontsize=16,color="green",shape="box"];2051[label="xuu83",fontsize=16,color="green",shape="box"];2052[label="xuu80",fontsize=16,color="green",shape="box"];2053[label="xuu83",fontsize=16,color="green",shape="box"];2054[label="xuu80",fontsize=16,color="green",shape="box"];2055[label="xuu83",fontsize=16,color="green",shape="box"];2056[label="xuu80",fontsize=16,color="green",shape="box"];2057[label="xuu83",fontsize=16,color="green",shape="box"];2058[label="xuu80",fontsize=16,color="green",shape="box"];2059[label="xuu83",fontsize=16,color="green",shape="box"];2060[label="xuu80",fontsize=16,color="green",shape="box"];2061[label="xuu83",fontsize=16,color="green",shape="box"];2062[label="xuu80",fontsize=16,color="green",shape="box"];2063[label="xuu83",fontsize=16,color="green",shape="box"];2064[label="xuu80",fontsize=16,color="green",shape="box"];2065[label="xuu83",fontsize=16,color="green",shape="box"];2066[label="xuu80",fontsize=16,color="green",shape="box"];2067[label="xuu83",fontsize=16,color="green",shape="box"];2068[label="xuu80",fontsize=16,color="green",shape="box"];2069[label="xuu83",fontsize=16,color="green",shape="box"];2070[label="xuu80",fontsize=16,color="green",shape="box"];2071[label="xuu83",fontsize=16,color="green",shape="box"];2072[label="xuu80",fontsize=16,color="green",shape="box"];2073[label="xuu83",fontsize=16,color="green",shape="box"];2074[label="xuu80",fontsize=16,color="green",shape="box"];2075[label="xuu83",fontsize=16,color="green",shape="box"];2076[label="xuu80",fontsize=16,color="green",shape="box"];2077[label="xuu83",fontsize=16,color="green",shape="box"];2090[label="xuu81 == xuu84",fontsize=16,color="blue",shape="box"];4395[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 2420[label="",style="solid", color="blue", weight=3]; 4396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 2421[label="",style="solid", color="blue", weight=3]; 4397[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 2422[label="",style="solid", color="blue", weight=3]; 4398[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 2423[label="",style="solid", color="blue", weight=3]; 4399[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 2424[label="",style="solid", color="blue", weight=3]; 4400[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 2425[label="",style="solid", color="blue", weight=3]; 4401[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2426[label="",style="solid", color="blue", weight=3]; 4402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2427[label="",style="solid", color="blue", weight=3]; 4403[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2428[label="",style="solid", color="blue", weight=3]; 4404[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2429[label="",style="solid", color="blue", weight=3]; 4405[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2430[label="",style="solid", color="blue", weight=3]; 4406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2431[label="",style="solid", color="blue", weight=3]; 4407[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2432[label="",style="solid", color="blue", weight=3]; 4408[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2433[label="",style="solid", color="blue", weight=3]; 2091[label="xuu82 <= xuu85",fontsize=16,color="blue",shape="box"];4409[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2434[label="",style="solid", color="blue", weight=3]; 4410[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2435[label="",style="solid", color="blue", weight=3]; 4411[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2436[label="",style="solid", color="blue", weight=3]; 4412[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2437[label="",style="solid", color="blue", weight=3]; 4413[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2438[label="",style="solid", color="blue", weight=3]; 4414[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2439[label="",style="solid", color="blue", weight=3]; 4415[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2440[label="",style="solid", color="blue", weight=3]; 4416[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2441[label="",style="solid", color="blue", weight=3]; 4417[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2442[label="",style="solid", color="blue", weight=3]; 4418[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2443[label="",style="solid", color="blue", weight=3]; 4419[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2444[label="",style="solid", color="blue", weight=3]; 4420[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2445[label="",style="solid", color="blue", weight=3]; 4421[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2446[label="",style="solid", color="blue", weight=3]; 4422[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2447[label="",style="solid", color="blue", weight=3]; 2092 -> 1298[label="",style="dashed", color="red", weight=0]; 2092[label="xuu81 < xuu84",fontsize=16,color="magenta"];2092 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1299[label="",style="dashed", color="red", weight=0]; 2093[label="xuu81 < xuu84",fontsize=16,color="magenta"];2093 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2094 -> 1300[label="",style="dashed", color="red", weight=0]; 2094[label="xuu81 < xuu84",fontsize=16,color="magenta"];2094 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2095 -> 1301[label="",style="dashed", color="red", weight=0]; 2095[label="xuu81 < xuu84",fontsize=16,color="magenta"];2095 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2096 -> 1302[label="",style="dashed", color="red", weight=0]; 2096[label="xuu81 < xuu84",fontsize=16,color="magenta"];2096 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2097 -> 1303[label="",style="dashed", color="red", weight=0]; 2097[label="xuu81 < xuu84",fontsize=16,color="magenta"];2097 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2098 -> 1304[label="",style="dashed", color="red", weight=0]; 2098[label="xuu81 < xuu84",fontsize=16,color="magenta"];2098 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2099 -> 1305[label="",style="dashed", color="red", weight=0]; 2099[label="xuu81 < xuu84",fontsize=16,color="magenta"];2099 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2100 -> 1306[label="",style="dashed", color="red", weight=0]; 2100[label="xuu81 < xuu84",fontsize=16,color="magenta"];2100 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2101 -> 1307[label="",style="dashed", color="red", weight=0]; 2101[label="xuu81 < xuu84",fontsize=16,color="magenta"];2101 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2102 -> 1308[label="",style="dashed", color="red", weight=0]; 2102[label="xuu81 < xuu84",fontsize=16,color="magenta"];2102 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2103 -> 1309[label="",style="dashed", color="red", weight=0]; 2103[label="xuu81 < xuu84",fontsize=16,color="magenta"];2103 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2104 -> 1310[label="",style="dashed", color="red", weight=0]; 2104[label="xuu81 < xuu84",fontsize=16,color="magenta"];2104 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1311[label="",style="dashed", color="red", weight=0]; 2105[label="xuu81 < xuu84",fontsize=16,color="magenta"];2105 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2106[label="False || xuu192",fontsize=16,color="black",shape="box"];2106 -> 2476[label="",style="solid", color="black", weight=3]; 2107[label="True || xuu192",fontsize=16,color="black",shape="box"];2107 -> 2477[label="",style="solid", color="black", weight=3]; 2108[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) False",fontsize=16,color="black",shape="box"];2108 -> 2478[label="",style="solid", color="black", weight=3]; 2109[label="compare1 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) True",fontsize=16,color="black",shape="box"];2109 -> 2479[label="",style="solid", color="black", weight=3]; 2110[label="True",fontsize=16,color="green",shape="box"];2148 -> 1734[label="",style="dashed", color="red", weight=0]; 2148[label="FiniteMap.sizeFM xuu33",fontsize=16,color="magenta"];2148 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2149[label="xuu38",fontsize=16,color="green",shape="box"];2151 -> 1723[label="",style="dashed", color="red", weight=0]; 2151[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2151 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2150[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu195",fontsize=16,color="burlywood",shape="triangle"];4423[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4423[label="",style="solid", color="burlywood", weight=9]; 4423 -> 2483[label="",style="solid", color="burlywood", weight=3]; 4424[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];2150 -> 4424[label="",style="solid", color="burlywood", weight=9]; 4424 -> 2484[label="",style="solid", color="burlywood", weight=3]; 2156[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 FiniteMap.EmptyFM xuu33 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2156 -> 2485[label="",style="solid", color="black", weight=3]; 2157[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];2157 -> 2486[label="",style="solid", color="black", weight=3]; 2711[label="Succ (Succ (primPlusNat xuu19400 xuu19300))",fontsize=16,color="green",shape="box"];2711 -> 2839[label="",style="dashed", color="green", weight=3]; 2712[label="Succ xuu19400",fontsize=16,color="green",shape="box"];2713[label="Succ xuu19300",fontsize=16,color="green",shape="box"];2714[label="Zero",fontsize=16,color="green",shape="box"];2715[label="xuu19400",fontsize=16,color="green",shape="box"];2716[label="xuu19300",fontsize=16,color="green",shape="box"];3668[label="FiniteMap.mkBranchRight_size xuu292 xuu293 xuu290",fontsize=16,color="black",shape="box"];3668 -> 3670[label="",style="solid", color="black", weight=3]; 3669[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290",fontsize=16,color="black",shape="box"];3669 -> 3671[label="",style="solid", color="black", weight=3]; 2161[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];2161 -> 2490[label="",style="solid", color="black", weight=3]; 2162[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM (xuu300 : xuu301) xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2162 -> 2491[label="",style="solid", color="black", weight=3]; 2163[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264)",fontsize=16,color="black",shape="box"];2163 -> 2492[label="",style="solid", color="black", weight=3]; 2165 -> 1306[label="",style="dashed", color="red", weight=0]; 2165[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2165 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2164[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu200",fontsize=16,color="burlywood",shape="triangle"];4425[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4425[label="",style="solid", color="burlywood", weight=9]; 4425 -> 2495[label="",style="solid", color="burlywood", weight=3]; 4426[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4426[label="",style="solid", color="burlywood", weight=9]; 4426 -> 2496[label="",style="solid", color="burlywood", weight=3]; 2171 -> 1156[label="",style="dashed", color="red", weight=0]; 2171[label="primMulNat xuu300000 (Succ xuu4000100)",fontsize=16,color="magenta"];2171 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2170[label="primPlusNat xuu204 (Succ xuu4000100)",fontsize=16,color="burlywood",shape="triangle"];4427[label="xuu204/Succ xuu2040",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4427[label="",style="solid", color="burlywood", weight=9]; 4427 -> 2499[label="",style="solid", color="burlywood", weight=3]; 4428[label="xuu204/Zero",fontsize=10,color="white",style="solid",shape="box"];2170 -> 4428[label="",style="solid", color="burlywood", weight=9]; 4428 -> 2500[label="",style="solid", color="burlywood", weight=3]; 2178[label="xuu98",fontsize=16,color="green",shape="box"];2179[label="xuu96",fontsize=16,color="green",shape="box"];2180[label="xuu98",fontsize=16,color="green",shape="box"];2181[label="xuu96",fontsize=16,color="green",shape="box"];2182[label="xuu98",fontsize=16,color="green",shape="box"];2183[label="xuu96",fontsize=16,color="green",shape="box"];2184[label="xuu98",fontsize=16,color="green",shape="box"];2185[label="xuu96",fontsize=16,color="green",shape="box"];2186[label="xuu98",fontsize=16,color="green",shape="box"];2187[label="xuu96",fontsize=16,color="green",shape="box"];2188[label="xuu98",fontsize=16,color="green",shape="box"];2189[label="xuu96",fontsize=16,color="green",shape="box"];2190[label="xuu98",fontsize=16,color="green",shape="box"];2191[label="xuu96",fontsize=16,color="green",shape="box"];2192[label="xuu98",fontsize=16,color="green",shape="box"];2193[label="xuu96",fontsize=16,color="green",shape="box"];2194[label="xuu98",fontsize=16,color="green",shape="box"];2195[label="xuu96",fontsize=16,color="green",shape="box"];2196[label="xuu98",fontsize=16,color="green",shape="box"];2197[label="xuu96",fontsize=16,color="green",shape="box"];2198[label="xuu98",fontsize=16,color="green",shape="box"];2199[label="xuu96",fontsize=16,color="green",shape="box"];2200[label="xuu98",fontsize=16,color="green",shape="box"];2201[label="xuu96",fontsize=16,color="green",shape="box"];2202[label="xuu98",fontsize=16,color="green",shape="box"];2203[label="xuu96",fontsize=16,color="green",shape="box"];2204[label="xuu98",fontsize=16,color="green",shape="box"];2205[label="xuu96",fontsize=16,color="green",shape="box"];2206[label="compare0 (xuu153,xuu154) (xuu155,xuu156) otherwise",fontsize=16,color="black",shape="box"];2206 -> 2509[label="",style="solid", color="black", weight=3]; 2207[label="LT",fontsize=16,color="green",shape="box"];2208 -> 1561[label="",style="dashed", color="red", weight=0]; 2208[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2208 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2209[label="False",fontsize=16,color="green",shape="box"];2210[label="False",fontsize=16,color="green",shape="box"];2211[label="True",fontsize=16,color="green",shape="box"];2212[label="False",fontsize=16,color="green",shape="box"];2213[label="True",fontsize=16,color="green",shape="box"];2214 -> 1561[label="",style="dashed", color="red", weight=0]; 2214[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2214 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2215[label="False",fontsize=16,color="green",shape="box"];2216[label="False",fontsize=16,color="green",shape="box"];2217[label="True",fontsize=16,color="green",shape="box"];2218[label="False",fontsize=16,color="green",shape="box"];2219[label="True",fontsize=16,color="green",shape="box"];2220[label="xuu400000",fontsize=16,color="green",shape="box"];2221[label="xuu30000",fontsize=16,color="green",shape="box"];2222[label="xuu400000",fontsize=16,color="green",shape="box"];2223[label="xuu30000",fontsize=16,color="green",shape="box"];2224[label="xuu400000",fontsize=16,color="green",shape="box"];2225[label="xuu30000",fontsize=16,color="green",shape="box"];2226[label="xuu400000",fontsize=16,color="green",shape="box"];2227[label="xuu30000",fontsize=16,color="green",shape="box"];2228[label="xuu400000",fontsize=16,color="green",shape="box"];2229[label="xuu30000",fontsize=16,color="green",shape="box"];2230[label="xuu400000",fontsize=16,color="green",shape="box"];2231[label="xuu30000",fontsize=16,color="green",shape="box"];2232[label="xuu400000",fontsize=16,color="green",shape="box"];2233[label="xuu30000",fontsize=16,color="green",shape="box"];2234[label="xuu400000",fontsize=16,color="green",shape="box"];2235[label="xuu30000",fontsize=16,color="green",shape="box"];2236[label="xuu400000",fontsize=16,color="green",shape="box"];2237[label="xuu30000",fontsize=16,color="green",shape="box"];2238[label="xuu400000",fontsize=16,color="green",shape="box"];2239[label="xuu30000",fontsize=16,color="green",shape="box"];2240[label="xuu400000",fontsize=16,color="green",shape="box"];2241[label="xuu30000",fontsize=16,color="green",shape="box"];2242[label="xuu400000",fontsize=16,color="green",shape="box"];2243[label="xuu30000",fontsize=16,color="green",shape="box"];2244[label="xuu400000",fontsize=16,color="green",shape="box"];2245[label="xuu30000",fontsize=16,color="green",shape="box"];2246[label="xuu400000",fontsize=16,color="green",shape="box"];2247[label="xuu30000",fontsize=16,color="green",shape="box"];2248[label="xuu400000",fontsize=16,color="green",shape="box"];2249[label="xuu30000",fontsize=16,color="green",shape="box"];2250[label="xuu400000",fontsize=16,color="green",shape="box"];2251[label="xuu30000",fontsize=16,color="green",shape="box"];2252[label="xuu400000",fontsize=16,color="green",shape="box"];2253[label="xuu30000",fontsize=16,color="green",shape="box"];2254[label="xuu400000",fontsize=16,color="green",shape="box"];2255[label="xuu30000",fontsize=16,color="green",shape="box"];2256[label="xuu400000",fontsize=16,color="green",shape="box"];2257[label="xuu30000",fontsize=16,color="green",shape="box"];2258[label="xuu400000",fontsize=16,color="green",shape="box"];2259[label="xuu30000",fontsize=16,color="green",shape="box"];2260[label="xuu400000",fontsize=16,color="green",shape="box"];2261[label="xuu30000",fontsize=16,color="green",shape="box"];2262[label="xuu400000",fontsize=16,color="green",shape="box"];2263[label="xuu30000",fontsize=16,color="green",shape="box"];2264[label="xuu400000",fontsize=16,color="green",shape="box"];2265[label="xuu30000",fontsize=16,color="green",shape="box"];2266[label="xuu400000",fontsize=16,color="green",shape="box"];2267[label="xuu30000",fontsize=16,color="green",shape="box"];2268[label="xuu400000",fontsize=16,color="green",shape="box"];2269[label="xuu30000",fontsize=16,color="green",shape="box"];2270[label="xuu400000",fontsize=16,color="green",shape="box"];2271[label="xuu30000",fontsize=16,color="green",shape="box"];2272[label="xuu400000",fontsize=16,color="green",shape="box"];2273[label="xuu30000",fontsize=16,color="green",shape="box"];2274[label="xuu400000",fontsize=16,color="green",shape="box"];2275[label="xuu30000",fontsize=16,color="green",shape="box"];2276 -> 527[label="",style="dashed", color="red", weight=0]; 2276[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2276 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2277 -> 528[label="",style="dashed", color="red", weight=0]; 2277[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2277 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2278 -> 529[label="",style="dashed", color="red", weight=0]; 2278[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2278 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2279 -> 530[label="",style="dashed", color="red", weight=0]; 2279[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2279 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2280 -> 531[label="",style="dashed", color="red", weight=0]; 2280[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2280 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2281 -> 532[label="",style="dashed", color="red", weight=0]; 2281[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2281 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2282 -> 533[label="",style="dashed", color="red", weight=0]; 2282[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2282 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2283 -> 534[label="",style="dashed", color="red", weight=0]; 2283[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2283 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2284 -> 535[label="",style="dashed", color="red", weight=0]; 2284[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2284 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2285 -> 536[label="",style="dashed", color="red", weight=0]; 2285[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2285 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2286 -> 537[label="",style="dashed", color="red", weight=0]; 2286[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2286 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2287 -> 538[label="",style="dashed", color="red", weight=0]; 2287[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2287 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2288 -> 539[label="",style="dashed", color="red", weight=0]; 2288[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2288 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2289 -> 540[label="",style="dashed", color="red", weight=0]; 2289[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2289 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2290 -> 527[label="",style="dashed", color="red", weight=0]; 2290[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2290 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2291 -> 528[label="",style="dashed", color="red", weight=0]; 2291[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2291 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2292 -> 529[label="",style="dashed", color="red", weight=0]; 2292[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2292 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2293 -> 530[label="",style="dashed", color="red", weight=0]; 2293[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2293 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2294 -> 531[label="",style="dashed", color="red", weight=0]; 2294[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2294 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2295 -> 532[label="",style="dashed", color="red", weight=0]; 2295[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2295 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2296 -> 533[label="",style="dashed", color="red", weight=0]; 2296[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2296 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2297 -> 534[label="",style="dashed", color="red", weight=0]; 2297[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2297 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2298 -> 535[label="",style="dashed", color="red", weight=0]; 2298[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2298 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2299 -> 536[label="",style="dashed", color="red", weight=0]; 2299[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2299 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2300 -> 537[label="",style="dashed", color="red", weight=0]; 2300[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2300 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2301 -> 538[label="",style="dashed", color="red", weight=0]; 2301[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2301 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2302 -> 539[label="",style="dashed", color="red", weight=0]; 2302[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2302 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2303 -> 540[label="",style="dashed", color="red", weight=0]; 2303[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2303 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2304[label="primEqNat (Succ xuu4000000) (Succ xuu300000)",fontsize=16,color="black",shape="box"];2304 -> 2570[label="",style="solid", color="black", weight=3]; 2305[label="primEqNat (Succ xuu4000000) Zero",fontsize=16,color="black",shape="box"];2305 -> 2571[label="",style="solid", color="black", weight=3]; 2306[label="primEqNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];2306 -> 2572[label="",style="solid", color="black", weight=3]; 2307[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2307 -> 2573[label="",style="solid", color="black", weight=3]; 2308[label="xuu30001",fontsize=16,color="green",shape="box"];2309[label="xuu400000",fontsize=16,color="green",shape="box"];2310[label="xuu30000",fontsize=16,color="green",shape="box"];2311[label="xuu400001",fontsize=16,color="green",shape="box"];2312[label="xuu400000",fontsize=16,color="green",shape="box"];2313[label="xuu30000",fontsize=16,color="green",shape="box"];2314[label="xuu400000",fontsize=16,color="green",shape="box"];2315[label="xuu30000",fontsize=16,color="green",shape="box"];2316[label="xuu400000",fontsize=16,color="green",shape="box"];2317[label="xuu30000",fontsize=16,color="green",shape="box"];2318[label="xuu400000",fontsize=16,color="green",shape="box"];2319[label="xuu30000",fontsize=16,color="green",shape="box"];2320[label="xuu400000",fontsize=16,color="green",shape="box"];2321[label="xuu30000",fontsize=16,color="green",shape="box"];2322[label="xuu400000",fontsize=16,color="green",shape="box"];2323[label="xuu30000",fontsize=16,color="green",shape="box"];2324[label="xuu400000",fontsize=16,color="green",shape="box"];2325[label="xuu30000",fontsize=16,color="green",shape="box"];2326[label="xuu400000",fontsize=16,color="green",shape="box"];2327[label="xuu30000",fontsize=16,color="green",shape="box"];2328[label="xuu400000",fontsize=16,color="green",shape="box"];2329[label="xuu30000",fontsize=16,color="green",shape="box"];2330[label="xuu400000",fontsize=16,color="green",shape="box"];2331[label="xuu30000",fontsize=16,color="green",shape="box"];2332[label="xuu400000",fontsize=16,color="green",shape="box"];2333[label="xuu30000",fontsize=16,color="green",shape="box"];2334[label="xuu400000",fontsize=16,color="green",shape="box"];2335[label="xuu30000",fontsize=16,color="green",shape="box"];2336[label="xuu400000",fontsize=16,color="green",shape="box"];2337[label="xuu30000",fontsize=16,color="green",shape="box"];2338[label="xuu400000",fontsize=16,color="green",shape="box"];2339[label="xuu30000",fontsize=16,color="green",shape="box"];2340[label="xuu400001",fontsize=16,color="green",shape="box"];2341[label="xuu30001",fontsize=16,color="green",shape="box"];2342[label="xuu400001",fontsize=16,color="green",shape="box"];2343[label="xuu30001",fontsize=16,color="green",shape="box"];2344[label="xuu400001",fontsize=16,color="green",shape="box"];2345[label="xuu30001",fontsize=16,color="green",shape="box"];2346[label="xuu400001",fontsize=16,color="green",shape="box"];2347[label="xuu30001",fontsize=16,color="green",shape="box"];2348[label="xuu400001",fontsize=16,color="green",shape="box"];2349[label="xuu30001",fontsize=16,color="green",shape="box"];2350[label="xuu400001",fontsize=16,color="green",shape="box"];2351[label="xuu30001",fontsize=16,color="green",shape="box"];2352[label="xuu400001",fontsize=16,color="green",shape="box"];2353[label="xuu30001",fontsize=16,color="green",shape="box"];2354[label="xuu400001",fontsize=16,color="green",shape="box"];2355[label="xuu30001",fontsize=16,color="green",shape="box"];2356[label="xuu400001",fontsize=16,color="green",shape="box"];2357[label="xuu30001",fontsize=16,color="green",shape="box"];2358[label="xuu400001",fontsize=16,color="green",shape="box"];2359[label="xuu30001",fontsize=16,color="green",shape="box"];2360[label="xuu400001",fontsize=16,color="green",shape="box"];2361[label="xuu30001",fontsize=16,color="green",shape="box"];2362[label="xuu400001",fontsize=16,color="green",shape="box"];2363[label="xuu30001",fontsize=16,color="green",shape="box"];2364[label="xuu400001",fontsize=16,color="green",shape="box"];2365[label="xuu30001",fontsize=16,color="green",shape="box"];2366[label="xuu400001",fontsize=16,color="green",shape="box"];2367[label="xuu30001",fontsize=16,color="green",shape="box"];2368[label="xuu400000",fontsize=16,color="green",shape="box"];2369[label="xuu30000",fontsize=16,color="green",shape="box"];2370[label="xuu400000",fontsize=16,color="green",shape="box"];2371[label="xuu30000",fontsize=16,color="green",shape="box"];2372[label="xuu400001",fontsize=16,color="green",shape="box"];2373[label="xuu30001",fontsize=16,color="green",shape="box"];2374[label="xuu400001",fontsize=16,color="green",shape="box"];2375[label="xuu30001",fontsize=16,color="green",shape="box"];2376[label="xuu30001",fontsize=16,color="green",shape="box"];2377[label="xuu400000",fontsize=16,color="green",shape="box"];2378[label="xuu30000",fontsize=16,color="green",shape="box"];2379[label="xuu400001",fontsize=16,color="green",shape="box"];2380[label="xuu56",fontsize=16,color="green",shape="box"];2381[label="xuu55",fontsize=16,color="green",shape="box"];2382 -> 2574[label="",style="dashed", color="red", weight=0]; 2382[label="not (xuu187 == GT)",fontsize=16,color="magenta"];2382 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2383[label="xuu56",fontsize=16,color="green",shape="box"];2384[label="xuu55",fontsize=16,color="green",shape="box"];2385[label="xuu56",fontsize=16,color="green",shape="box"];2386[label="xuu55",fontsize=16,color="green",shape="box"];2387 -> 2080[label="",style="dashed", color="red", weight=0]; 2387[label="xuu550 < xuu560 || xuu550 == xuu560 && xuu551 <= xuu561",fontsize=16,color="magenta"];2387 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2388[label="True",fontsize=16,color="green",shape="box"];2389[label="True",fontsize=16,color="green",shape="box"];2390[label="False",fontsize=16,color="green",shape="box"];2391[label="xuu550 <= xuu560",fontsize=16,color="blue",shape="box"];4429[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2586[label="",style="solid", color="blue", weight=3]; 4430[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2587[label="",style="solid", color="blue", weight=3]; 4431[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2588[label="",style="solid", color="blue", weight=3]; 4432[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2589[label="",style="solid", color="blue", weight=3]; 4433[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2590[label="",style="solid", color="blue", weight=3]; 4434[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2591[label="",style="solid", color="blue", weight=3]; 4435[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2592[label="",style="solid", color="blue", weight=3]; 4436[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2593[label="",style="solid", color="blue", weight=3]; 4437[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2594[label="",style="solid", color="blue", weight=3]; 4438[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2595[label="",style="solid", color="blue", weight=3]; 4439[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2596[label="",style="solid", color="blue", weight=3]; 4440[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2597[label="",style="solid", color="blue", weight=3]; 4441[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2598[label="",style="solid", color="blue", weight=3]; 4442[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2391 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2599[label="",style="solid", color="blue", weight=3]; 2392[label="xuu56",fontsize=16,color="green",shape="box"];2393[label="xuu55",fontsize=16,color="green",shape="box"];2394[label="xuu56",fontsize=16,color="green",shape="box"];2395[label="xuu55",fontsize=16,color="green",shape="box"];2396[label="xuu550 <= xuu560",fontsize=16,color="blue",shape="box"];4443[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2600[label="",style="solid", color="blue", weight=3]; 4444[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2601[label="",style="solid", color="blue", weight=3]; 4445[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2602[label="",style="solid", color="blue", weight=3]; 4446[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2603[label="",style="solid", color="blue", weight=3]; 4447[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2604[label="",style="solid", color="blue", weight=3]; 4448[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2605[label="",style="solid", color="blue", weight=3]; 4449[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2606[label="",style="solid", color="blue", weight=3]; 4450[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2607[label="",style="solid", color="blue", weight=3]; 4451[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2608[label="",style="solid", color="blue", weight=3]; 4452[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2609[label="",style="solid", color="blue", weight=3]; 4453[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2610[label="",style="solid", color="blue", weight=3]; 4454[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2611[label="",style="solid", color="blue", weight=3]; 4455[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2612[label="",style="solid", color="blue", weight=3]; 4456[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2613[label="",style="solid", color="blue", weight=3]; 2397[label="True",fontsize=16,color="green",shape="box"];2398[label="False",fontsize=16,color="green",shape="box"];2399[label="xuu550 <= xuu560",fontsize=16,color="blue",shape="box"];4457[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2614[label="",style="solid", color="blue", weight=3]; 4458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 2615[label="",style="solid", color="blue", weight=3]; 4459[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 2616[label="",style="solid", color="blue", weight=3]; 4460[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 2617[label="",style="solid", color="blue", weight=3]; 4461[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 2618[label="",style="solid", color="blue", weight=3]; 4462[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 2619[label="",style="solid", color="blue", weight=3]; 4463[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 2620[label="",style="solid", color="blue", weight=3]; 4464[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 2621[label="",style="solid", color="blue", weight=3]; 4465[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 2622[label="",style="solid", color="blue", weight=3]; 4466[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 2623[label="",style="solid", color="blue", weight=3]; 4467[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 2624[label="",style="solid", color="blue", weight=3]; 4468[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 2625[label="",style="solid", color="blue", weight=3]; 4469[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 2626[label="",style="solid", color="blue", weight=3]; 4470[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2399 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 2627[label="",style="solid", color="blue", weight=3]; 2400[label="xuu56",fontsize=16,color="green",shape="box"];2401[label="xuu55",fontsize=16,color="green",shape="box"];2402[label="True",fontsize=16,color="green",shape="box"];2403[label="True",fontsize=16,color="green",shape="box"];2404[label="True",fontsize=16,color="green",shape="box"];2405[label="False",fontsize=16,color="green",shape="box"];2406[label="True",fontsize=16,color="green",shape="box"];2407[label="True",fontsize=16,color="green",shape="box"];2408[label="False",fontsize=16,color="green",shape="box"];2409[label="False",fontsize=16,color="green",shape="box"];2410[label="True",fontsize=16,color="green",shape="box"];2411[label="True",fontsize=16,color="green",shape="box"];2412[label="True",fontsize=16,color="green",shape="box"];2413[label="False",fontsize=16,color="green",shape="box"];2414[label="True",fontsize=16,color="green",shape="box"];2415 -> 2080[label="",style="dashed", color="red", weight=0]; 2415[label="xuu550 < xuu560 || xuu550 == xuu560 && (xuu551 < xuu561 || xuu551 == xuu561 && xuu552 <= xuu562)",fontsize=16,color="magenta"];2415 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2416[label="xuu56",fontsize=16,color="green",shape="box"];2417[label="xuu55",fontsize=16,color="green",shape="box"];2418[label="xuu56",fontsize=16,color="green",shape="box"];2419[label="xuu55",fontsize=16,color="green",shape="box"];2420 -> 534[label="",style="dashed", color="red", weight=0]; 2420[label="xuu81 == xuu84",fontsize=16,color="magenta"];2420 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2421 -> 528[label="",style="dashed", color="red", weight=0]; 2421[label="xuu81 == xuu84",fontsize=16,color="magenta"];2421 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2422 -> 538[label="",style="dashed", color="red", weight=0]; 2422[label="xuu81 == xuu84",fontsize=16,color="magenta"];2422 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2423 -> 537[label="",style="dashed", color="red", weight=0]; 2423[label="xuu81 == xuu84",fontsize=16,color="magenta"];2423 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2424 -> 530[label="",style="dashed", color="red", weight=0]; 2424[label="xuu81 == xuu84",fontsize=16,color="magenta"];2424 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2425 -> 536[label="",style="dashed", color="red", weight=0]; 2425[label="xuu81 == xuu84",fontsize=16,color="magenta"];2425 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2426 -> 533[label="",style="dashed", color="red", weight=0]; 2426[label="xuu81 == xuu84",fontsize=16,color="magenta"];2426 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2427 -> 529[label="",style="dashed", color="red", weight=0]; 2427[label="xuu81 == xuu84",fontsize=16,color="magenta"];2427 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2428 -> 527[label="",style="dashed", color="red", weight=0]; 2428[label="xuu81 == xuu84",fontsize=16,color="magenta"];2428 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2429 -> 539[label="",style="dashed", color="red", weight=0]; 2429[label="xuu81 == xuu84",fontsize=16,color="magenta"];2429 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2430 -> 535[label="",style="dashed", color="red", weight=0]; 2430[label="xuu81 == xuu84",fontsize=16,color="magenta"];2430 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2431 -> 531[label="",style="dashed", color="red", weight=0]; 2431[label="xuu81 == xuu84",fontsize=16,color="magenta"];2431 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2432 -> 540[label="",style="dashed", color="red", weight=0]; 2432[label="xuu81 == xuu84",fontsize=16,color="magenta"];2432 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2433 -> 532[label="",style="dashed", color="red", weight=0]; 2433[label="xuu81 == xuu84",fontsize=16,color="magenta"];2433 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1353[label="",style="dashed", color="red", weight=0]; 2434[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2434 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1354[label="",style="dashed", color="red", weight=0]; 2435[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2435 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1355[label="",style="dashed", color="red", weight=0]; 2436[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2436 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1356[label="",style="dashed", color="red", weight=0]; 2437[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2437 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1357[label="",style="dashed", color="red", weight=0]; 2438[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2438 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1358[label="",style="dashed", color="red", weight=0]; 2439[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2439 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1359[label="",style="dashed", color="red", weight=0]; 2440[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2440 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1360[label="",style="dashed", color="red", weight=0]; 2441[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2441 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1361[label="",style="dashed", color="red", weight=0]; 2442[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2442 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1362[label="",style="dashed", color="red", weight=0]; 2443[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2443 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1363[label="",style="dashed", color="red", weight=0]; 2444[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2444 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2445 -> 1364[label="",style="dashed", color="red", weight=0]; 2445[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2445 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2446 -> 1365[label="",style="dashed", color="red", weight=0]; 2446[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2446 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2447 -> 1366[label="",style="dashed", color="red", weight=0]; 2447[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2447 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2448[label="xuu84",fontsize=16,color="green",shape="box"];2449[label="xuu81",fontsize=16,color="green",shape="box"];2450[label="xuu84",fontsize=16,color="green",shape="box"];2451[label="xuu81",fontsize=16,color="green",shape="box"];2452[label="xuu84",fontsize=16,color="green",shape="box"];2453[label="xuu81",fontsize=16,color="green",shape="box"];2454[label="xuu84",fontsize=16,color="green",shape="box"];2455[label="xuu81",fontsize=16,color="green",shape="box"];2456[label="xuu84",fontsize=16,color="green",shape="box"];2457[label="xuu81",fontsize=16,color="green",shape="box"];2458[label="xuu84",fontsize=16,color="green",shape="box"];2459[label="xuu81",fontsize=16,color="green",shape="box"];2460[label="xuu84",fontsize=16,color="green",shape="box"];2461[label="xuu81",fontsize=16,color="green",shape="box"];2462[label="xuu84",fontsize=16,color="green",shape="box"];2463[label="xuu81",fontsize=16,color="green",shape="box"];2464[label="xuu84",fontsize=16,color="green",shape="box"];2465[label="xuu81",fontsize=16,color="green",shape="box"];2466[label="xuu84",fontsize=16,color="green",shape="box"];2467[label="xuu81",fontsize=16,color="green",shape="box"];2468[label="xuu84",fontsize=16,color="green",shape="box"];2469[label="xuu81",fontsize=16,color="green",shape="box"];2470[label="xuu84",fontsize=16,color="green",shape="box"];2471[label="xuu81",fontsize=16,color="green",shape="box"];2472[label="xuu84",fontsize=16,color="green",shape="box"];2473[label="xuu81",fontsize=16,color="green",shape="box"];2474[label="xuu84",fontsize=16,color="green",shape="box"];2475[label="xuu81",fontsize=16,color="green",shape="box"];2476[label="xuu192",fontsize=16,color="green",shape="box"];2477[label="True",fontsize=16,color="green",shape="box"];2478[label="compare0 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) otherwise",fontsize=16,color="black",shape="box"];2478 -> 2686[label="",style="solid", color="black", weight=3]; 2479[label="LT",fontsize=16,color="green",shape="box"];2480[label="xuu33",fontsize=16,color="green",shape="box"];2481 -> 2127[label="",style="dashed", color="red", weight=0]; 2481[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2482 -> 389[label="",style="dashed", color="red", weight=0]; 2482[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2482 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2483[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];2483 -> 2689[label="",style="solid", color="black", weight=3]; 2484[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];2484 -> 2690[label="",style="solid", color="black", weight=3]; 2485[label="error []",fontsize=16,color="red",shape="box"];2486[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];2486 -> 2691[label="",style="solid", color="black", weight=3]; 2839 -> 2172[label="",style="dashed", color="red", weight=0]; 2839[label="primPlusNat xuu19400 xuu19300",fontsize=16,color="magenta"];2839 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2846[label="",style="dashed", color="magenta", weight=3]; 3670[label="FiniteMap.sizeFM xuu293",fontsize=16,color="burlywood",shape="triangle"];4471[label="xuu293/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3670 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 3672[label="",style="solid", color="burlywood", weight=3]; 4472[label="xuu293/FiniteMap.Branch xuu2930 xuu2931 xuu2932 xuu2933 xuu2934",fontsize=10,color="white",style="solid",shape="box"];3670 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 3673[label="",style="solid", color="burlywood", weight=3]; 3671 -> 2111[label="",style="dashed", color="red", weight=0]; 3671[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290)",fontsize=16,color="magenta"];3671 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3671 -> 3675[label="",style="dashed", color="magenta", weight=3]; 2490 -> 3425[label="",style="dashed", color="red", weight=0]; 2490[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="magenta"];2490 -> 3436[label="",style="dashed", color="magenta", weight=3]; 2490 -> 3437[label="",style="dashed", color="magenta", weight=3]; 2490 -> 3438[label="",style="dashed", color="magenta", weight=3]; 2490 -> 3439[label="",style="dashed", color="magenta", weight=3]; 2490 -> 3440[label="",style="dashed", color="magenta", weight=3]; 2491[label="error []",fontsize=16,color="red",shape="box"];2492[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264)",fontsize=16,color="black",shape="box"];2492 -> 2696[label="",style="solid", color="black", weight=3]; 2493 -> 389[label="",style="dashed", color="red", weight=0]; 2493[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2493 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2494 -> 1734[label="",style="dashed", color="red", weight=0]; 2494[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2494 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2495[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2495 -> 2700[label="",style="solid", color="black", weight=3]; 2496[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2496 -> 2701[label="",style="solid", color="black", weight=3]; 2497[label="Succ xuu4000100",fontsize=16,color="green",shape="box"];2498[label="xuu300000",fontsize=16,color="green",shape="box"];2499[label="primPlusNat (Succ xuu2040) (Succ xuu4000100)",fontsize=16,color="black",shape="box"];2499 -> 2702[label="",style="solid", color="black", weight=3]; 2500[label="primPlusNat Zero (Succ xuu4000100)",fontsize=16,color="black",shape="box"];2500 -> 2703[label="",style="solid", color="black", weight=3]; 2509[label="compare0 (xuu153,xuu154) (xuu155,xuu156) True",fontsize=16,color="black",shape="box"];2509 -> 2704[label="",style="solid", color="black", weight=3]; 2510[label="xuu4000000",fontsize=16,color="green",shape="box"];2511[label="xuu300000",fontsize=16,color="green",shape="box"];2512[label="xuu4000000",fontsize=16,color="green",shape="box"];2513[label="xuu300000",fontsize=16,color="green",shape="box"];2514[label="xuu400001",fontsize=16,color="green",shape="box"];2515[label="xuu30001",fontsize=16,color="green",shape="box"];2516[label="xuu400001",fontsize=16,color="green",shape="box"];2517[label="xuu30001",fontsize=16,color="green",shape="box"];2518[label="xuu400001",fontsize=16,color="green",shape="box"];2519[label="xuu30001",fontsize=16,color="green",shape="box"];2520[label="xuu400001",fontsize=16,color="green",shape="box"];2521[label="xuu30001",fontsize=16,color="green",shape="box"];2522[label="xuu400001",fontsize=16,color="green",shape="box"];2523[label="xuu30001",fontsize=16,color="green",shape="box"];2524[label="xuu400001",fontsize=16,color="green",shape="box"];2525[label="xuu30001",fontsize=16,color="green",shape="box"];2526[label="xuu400001",fontsize=16,color="green",shape="box"];2527[label="xuu30001",fontsize=16,color="green",shape="box"];2528[label="xuu400001",fontsize=16,color="green",shape="box"];2529[label="xuu30001",fontsize=16,color="green",shape="box"];2530[label="xuu400001",fontsize=16,color="green",shape="box"];2531[label="xuu30001",fontsize=16,color="green",shape="box"];2532[label="xuu400001",fontsize=16,color="green",shape="box"];2533[label="xuu30001",fontsize=16,color="green",shape="box"];2534[label="xuu400001",fontsize=16,color="green",shape="box"];2535[label="xuu30001",fontsize=16,color="green",shape="box"];2536[label="xuu400001",fontsize=16,color="green",shape="box"];2537[label="xuu30001",fontsize=16,color="green",shape="box"];2538[label="xuu400001",fontsize=16,color="green",shape="box"];2539[label="xuu30001",fontsize=16,color="green",shape="box"];2540[label="xuu400001",fontsize=16,color="green",shape="box"];2541[label="xuu30001",fontsize=16,color="green",shape="box"];2542[label="xuu400002",fontsize=16,color="green",shape="box"];2543[label="xuu30002",fontsize=16,color="green",shape="box"];2544[label="xuu400002",fontsize=16,color="green",shape="box"];2545[label="xuu30002",fontsize=16,color="green",shape="box"];2546[label="xuu400002",fontsize=16,color="green",shape="box"];2547[label="xuu30002",fontsize=16,color="green",shape="box"];2548[label="xuu400002",fontsize=16,color="green",shape="box"];2549[label="xuu30002",fontsize=16,color="green",shape="box"];2550[label="xuu400002",fontsize=16,color="green",shape="box"];2551[label="xuu30002",fontsize=16,color="green",shape="box"];2552[label="xuu400002",fontsize=16,color="green",shape="box"];2553[label="xuu30002",fontsize=16,color="green",shape="box"];2554[label="xuu400002",fontsize=16,color="green",shape="box"];2555[label="xuu30002",fontsize=16,color="green",shape="box"];2556[label="xuu400002",fontsize=16,color="green",shape="box"];2557[label="xuu30002",fontsize=16,color="green",shape="box"];2558[label="xuu400002",fontsize=16,color="green",shape="box"];2559[label="xuu30002",fontsize=16,color="green",shape="box"];2560[label="xuu400002",fontsize=16,color="green",shape="box"];2561[label="xuu30002",fontsize=16,color="green",shape="box"];2562[label="xuu400002",fontsize=16,color="green",shape="box"];2563[label="xuu30002",fontsize=16,color="green",shape="box"];2564[label="xuu400002",fontsize=16,color="green",shape="box"];2565[label="xuu30002",fontsize=16,color="green",shape="box"];2566[label="xuu400002",fontsize=16,color="green",shape="box"];2567[label="xuu30002",fontsize=16,color="green",shape="box"];2568[label="xuu400002",fontsize=16,color="green",shape="box"];2569[label="xuu30002",fontsize=16,color="green",shape="box"];2570 -> 1561[label="",style="dashed", color="red", weight=0]; 2570[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2570 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2571[label="False",fontsize=16,color="green",shape="box"];2572[label="False",fontsize=16,color="green",shape="box"];2573[label="True",fontsize=16,color="green",shape="box"];2575 -> 539[label="",style="dashed", color="red", weight=0]; 2575[label="xuu187 == GT",fontsize=16,color="magenta"];2575 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2574[label="not xuu205",fontsize=16,color="burlywood",shape="triangle"];4473[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];2574 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2709[label="",style="solid", color="burlywood", weight=3]; 4474[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];2574 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2584 -> 984[label="",style="dashed", color="red", weight=0]; 2584[label="xuu550 == xuu560 && xuu551 <= xuu561",fontsize=16,color="magenta"];2584 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2585[label="xuu550 < xuu560",fontsize=16,color="blue",shape="box"];4475[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4475[label="",style="solid", color="blue", weight=9]; 4475 -> 2719[label="",style="solid", color="blue", weight=3]; 4476[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 2720[label="",style="solid", color="blue", weight=3]; 4477[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 2721[label="",style="solid", color="blue", weight=3]; 4478[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 2722[label="",style="solid", color="blue", weight=3]; 4479[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 2723[label="",style="solid", color="blue", weight=3]; 4480[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 2724[label="",style="solid", color="blue", weight=3]; 4481[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 2725[label="",style="solid", color="blue", weight=3]; 4482[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 2726[label="",style="solid", color="blue", weight=3]; 4483[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 2727[label="",style="solid", color="blue", weight=3]; 4484[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 2728[label="",style="solid", color="blue", weight=3]; 4485[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 2729[label="",style="solid", color="blue", weight=3]; 4486[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 2730[label="",style="solid", color="blue", weight=3]; 4487[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 2731[label="",style="solid", color="blue", weight=3]; 4488[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 2732[label="",style="solid", color="blue", weight=3]; 2586 -> 1353[label="",style="dashed", color="red", weight=0]; 2586[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2586 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2587 -> 1354[label="",style="dashed", color="red", weight=0]; 2587[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2587 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2588 -> 1355[label="",style="dashed", color="red", weight=0]; 2588[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2588 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2589 -> 1356[label="",style="dashed", color="red", weight=0]; 2589[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2589 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2590 -> 1357[label="",style="dashed", color="red", weight=0]; 2590[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2590 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2590 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2591 -> 1358[label="",style="dashed", color="red", weight=0]; 2591[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2591 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2591 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2592 -> 1359[label="",style="dashed", color="red", weight=0]; 2592[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2592 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2592 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2593 -> 1360[label="",style="dashed", color="red", weight=0]; 2593[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2593 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2594 -> 1361[label="",style="dashed", color="red", weight=0]; 2594[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2594 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2595 -> 1362[label="",style="dashed", color="red", weight=0]; 2595[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2595 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2596 -> 1363[label="",style="dashed", color="red", weight=0]; 2596[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2596 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1364[label="",style="dashed", color="red", weight=0]; 2597[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2597 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1365[label="",style="dashed", color="red", weight=0]; 2598[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2598 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1366[label="",style="dashed", color="red", weight=0]; 2599[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2599 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2600 -> 1353[label="",style="dashed", color="red", weight=0]; 2600[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2600 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2601 -> 1354[label="",style="dashed", color="red", weight=0]; 2601[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2601 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1355[label="",style="dashed", color="red", weight=0]; 2602[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2602 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2603 -> 1356[label="",style="dashed", color="red", weight=0]; 2603[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2603 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1357[label="",style="dashed", color="red", weight=0]; 2604[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2604 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1358[label="",style="dashed", color="red", weight=0]; 2605[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2605 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2606 -> 1359[label="",style="dashed", color="red", weight=0]; 2606[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2606 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2607 -> 1360[label="",style="dashed", color="red", weight=0]; 2607[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2607 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2608 -> 1361[label="",style="dashed", color="red", weight=0]; 2608[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2608 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2609 -> 1362[label="",style="dashed", color="red", weight=0]; 2609[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2609 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2610 -> 1363[label="",style="dashed", color="red", weight=0]; 2610[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2610 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2611 -> 1364[label="",style="dashed", color="red", weight=0]; 2611[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2611 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2612 -> 1365[label="",style="dashed", color="red", weight=0]; 2612[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2612 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2613 -> 1366[label="",style="dashed", color="red", weight=0]; 2613[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2613 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2614 -> 1353[label="",style="dashed", color="red", weight=0]; 2614[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2614 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2615 -> 1354[label="",style="dashed", color="red", weight=0]; 2615[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2615 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2616 -> 1355[label="",style="dashed", color="red", weight=0]; 2616[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2616 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2617 -> 1356[label="",style="dashed", color="red", weight=0]; 2617[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2617 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2618 -> 1357[label="",style="dashed", color="red", weight=0]; 2618[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2618 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2619 -> 1358[label="",style="dashed", color="red", weight=0]; 2619[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2619 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1359[label="",style="dashed", color="red", weight=0]; 2620[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2620 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1360[label="",style="dashed", color="red", weight=0]; 2621[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2621 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1361[label="",style="dashed", color="red", weight=0]; 2622[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2622 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1362[label="",style="dashed", color="red", weight=0]; 2623[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2623 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2624 -> 1363[label="",style="dashed", color="red", weight=0]; 2624[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2624 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2625 -> 1364[label="",style="dashed", color="red", weight=0]; 2625[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2625 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2626 -> 1365[label="",style="dashed", color="red", weight=0]; 2626[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2626 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2627 -> 1366[label="",style="dashed", color="red", weight=0]; 2627[label="xuu550 <= xuu560",fontsize=16,color="magenta"];2627 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2628 -> 984[label="",style="dashed", color="red", weight=0]; 2628[label="xuu550 == xuu560 && (xuu551 < xuu561 || xuu551 == xuu561 && xuu552 <= xuu562)",fontsize=16,color="magenta"];2628 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2629[label="xuu550 < xuu560",fontsize=16,color="blue",shape="box"];4489[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 2819[label="",style="solid", color="blue", weight=3]; 4490[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 2820[label="",style="solid", color="blue", weight=3]; 4491[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 2821[label="",style="solid", color="blue", weight=3]; 4492[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 2822[label="",style="solid", color="blue", weight=3]; 4493[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 2823[label="",style="solid", color="blue", weight=3]; 4494[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2824[label="",style="solid", color="blue", weight=3]; 4495[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2825[label="",style="solid", color="blue", weight=3]; 4496[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2826[label="",style="solid", color="blue", weight=3]; 4497[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 2827[label="",style="solid", color="blue", weight=3]; 4498[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 2828[label="",style="solid", color="blue", weight=3]; 4499[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 2829[label="",style="solid", color="blue", weight=3]; 4500[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 2830[label="",style="solid", color="blue", weight=3]; 4501[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 2831[label="",style="solid", color="blue", weight=3]; 4502[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2629 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 2832[label="",style="solid", color="blue", weight=3]; 2630[label="xuu81",fontsize=16,color="green",shape="box"];2631[label="xuu84",fontsize=16,color="green",shape="box"];2632[label="xuu81",fontsize=16,color="green",shape="box"];2633[label="xuu84",fontsize=16,color="green",shape="box"];2634[label="xuu81",fontsize=16,color="green",shape="box"];2635[label="xuu84",fontsize=16,color="green",shape="box"];2636[label="xuu81",fontsize=16,color="green",shape="box"];2637[label="xuu84",fontsize=16,color="green",shape="box"];2638[label="xuu81",fontsize=16,color="green",shape="box"];2639[label="xuu84",fontsize=16,color="green",shape="box"];2640[label="xuu81",fontsize=16,color="green",shape="box"];2641[label="xuu84",fontsize=16,color="green",shape="box"];2642[label="xuu81",fontsize=16,color="green",shape="box"];2643[label="xuu84",fontsize=16,color="green",shape="box"];2644[label="xuu81",fontsize=16,color="green",shape="box"];2645[label="xuu84",fontsize=16,color="green",shape="box"];2646[label="xuu81",fontsize=16,color="green",shape="box"];2647[label="xuu84",fontsize=16,color="green",shape="box"];2648[label="xuu81",fontsize=16,color="green",shape="box"];2649[label="xuu84",fontsize=16,color="green",shape="box"];2650[label="xuu81",fontsize=16,color="green",shape="box"];2651[label="xuu84",fontsize=16,color="green",shape="box"];2652[label="xuu81",fontsize=16,color="green",shape="box"];2653[label="xuu84",fontsize=16,color="green",shape="box"];2654[label="xuu81",fontsize=16,color="green",shape="box"];2655[label="xuu84",fontsize=16,color="green",shape="box"];2656[label="xuu81",fontsize=16,color="green",shape="box"];2657[label="xuu84",fontsize=16,color="green",shape="box"];2658[label="xuu85",fontsize=16,color="green",shape="box"];2659[label="xuu82",fontsize=16,color="green",shape="box"];2660[label="xuu85",fontsize=16,color="green",shape="box"];2661[label="xuu82",fontsize=16,color="green",shape="box"];2662[label="xuu85",fontsize=16,color="green",shape="box"];2663[label="xuu82",fontsize=16,color="green",shape="box"];2664[label="xuu85",fontsize=16,color="green",shape="box"];2665[label="xuu82",fontsize=16,color="green",shape="box"];2666[label="xuu85",fontsize=16,color="green",shape="box"];2667[label="xuu82",fontsize=16,color="green",shape="box"];2668[label="xuu85",fontsize=16,color="green",shape="box"];2669[label="xuu82",fontsize=16,color="green",shape="box"];2670[label="xuu85",fontsize=16,color="green",shape="box"];2671[label="xuu82",fontsize=16,color="green",shape="box"];2672[label="xuu85",fontsize=16,color="green",shape="box"];2673[label="xuu82",fontsize=16,color="green",shape="box"];2674[label="xuu85",fontsize=16,color="green",shape="box"];2675[label="xuu82",fontsize=16,color="green",shape="box"];2676[label="xuu85",fontsize=16,color="green",shape="box"];2677[label="xuu82",fontsize=16,color="green",shape="box"];2678[label="xuu85",fontsize=16,color="green",shape="box"];2679[label="xuu82",fontsize=16,color="green",shape="box"];2680[label="xuu85",fontsize=16,color="green",shape="box"];2681[label="xuu82",fontsize=16,color="green",shape="box"];2682[label="xuu85",fontsize=16,color="green",shape="box"];2683[label="xuu82",fontsize=16,color="green",shape="box"];2684[label="xuu85",fontsize=16,color="green",shape="box"];2685[label="xuu82",fontsize=16,color="green",shape="box"];2686[label="compare0 (xuu168,xuu169,xuu170) (xuu171,xuu172,xuu173) True",fontsize=16,color="black",shape="box"];2686 -> 2833[label="",style="solid", color="black", weight=3]; 2687 -> 1728[label="",style="dashed", color="red", weight=0]; 2687[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2688 -> 1736[label="",style="dashed", color="red", weight=0]; 2688[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2689[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 otherwise",fontsize=16,color="black",shape="box"];2689 -> 2834[label="",style="solid", color="black", weight=3]; 2690[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu33 [] xuu31 xuu38 xuu33 xuu38 xuu33",fontsize=16,color="burlywood",shape="box"];4503[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2690 -> 4503[label="",style="solid", color="burlywood", weight=9]; 4503 -> 2835[label="",style="solid", color="burlywood", weight=3]; 4504[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];2690 -> 4504[label="",style="solid", color="burlywood", weight=9]; 4504 -> 2836[label="",style="solid", color="burlywood", weight=3]; 2691 -> 2837[label="",style="dashed", color="red", weight=0]; 2691[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 (FiniteMap.sizeFM xuu383 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384)",fontsize=16,color="magenta"];2691 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2845[label="xuu19400",fontsize=16,color="green",shape="box"];2846[label="xuu19300",fontsize=16,color="green",shape="box"];3672[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3672 -> 3676[label="",style="solid", color="black", weight=3]; 3673[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2930 xuu2931 xuu2932 xuu2933 xuu2934)",fontsize=16,color="black",shape="box"];3673 -> 3677[label="",style="solid", color="black", weight=3]; 3674[label="FiniteMap.mkBranchLeft_size xuu292 xuu293 xuu290",fontsize=16,color="black",shape="box"];3674 -> 3678[label="",style="solid", color="black", weight=3]; 3675[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3436[label="Succ Zero",fontsize=16,color="green",shape="box"];3437[label="xuu34",fontsize=16,color="green",shape="box"];3438[label="xuu26",fontsize=16,color="green",shape="box"];3439[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3440[label="xuu31",fontsize=16,color="green",shape="box"];2696 -> 2843[label="",style="dashed", color="red", weight=0]; 2696[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 (FiniteMap.sizeFM xuu264 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263)",fontsize=16,color="magenta"];2696 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2697 -> 1734[label="",style="dashed", color="red", weight=0]; 2697[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2697 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2698[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2699[label="xuu343",fontsize=16,color="green",shape="box"];2700[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2700 -> 2848[label="",style="solid", color="black", weight=3]; 2701[label="FiniteMap.mkBalBranch6Single_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2701 -> 2849[label="",style="solid", color="black", weight=3]; 2702[label="Succ (Succ (primPlusNat xuu2040 xuu4000100))",fontsize=16,color="green",shape="box"];2702 -> 2850[label="",style="dashed", color="green", weight=3]; 2703[label="Succ xuu4000100",fontsize=16,color="green",shape="box"];2704[label="GT",fontsize=16,color="green",shape="box"];2705[label="xuu4000000",fontsize=16,color="green",shape="box"];2706[label="xuu300000",fontsize=16,color="green",shape="box"];2707[label="xuu187",fontsize=16,color="green",shape="box"];2708[label="GT",fontsize=16,color="green",shape="box"];2709[label="not False",fontsize=16,color="black",shape="box"];2709 -> 2851[label="",style="solid", color="black", weight=3]; 2710[label="not True",fontsize=16,color="black",shape="box"];2710 -> 2852[label="",style="solid", color="black", weight=3]; 2717[label="xuu550 == xuu560",fontsize=16,color="blue",shape="box"];4505[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 2853[label="",style="solid", color="blue", weight=3]; 4506[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 2854[label="",style="solid", color="blue", weight=3]; 4507[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 2855[label="",style="solid", color="blue", weight=3]; 4508[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 2856[label="",style="solid", color="blue", weight=3]; 4509[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 2857[label="",style="solid", color="blue", weight=3]; 4510[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 2858[label="",style="solid", color="blue", weight=3]; 4511[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 2859[label="",style="solid", color="blue", weight=3]; 4512[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 2860[label="",style="solid", color="blue", weight=3]; 4513[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 2861[label="",style="solid", color="blue", weight=3]; 4514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 2862[label="",style="solid", color="blue", weight=3]; 4515[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 2863[label="",style="solid", color="blue", weight=3]; 4516[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2864[label="",style="solid", color="blue", weight=3]; 4517[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2865[label="",style="solid", color="blue", weight=3]; 4518[label="== :: Char -> Char -> 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]; 2718[label="xuu551 <= xuu561",fontsize=16,color="blue",shape="box"];4519[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 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"];2718 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2868[label="",style="solid", color="blue", weight=3]; 4521[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2869[label="",style="solid", color="blue", weight=3]; 4522[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2870[label="",style="solid", color="blue", weight=3]; 4523[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2871[label="",style="solid", color="blue", weight=3]; 4524[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2872[label="",style="solid", color="blue", weight=3]; 4525[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2873[label="",style="solid", color="blue", weight=3]; 4526[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2874[label="",style="solid", color="blue", weight=3]; 4527[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2875[label="",style="solid", color="blue", weight=3]; 4528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2876[label="",style="solid", color="blue", weight=3]; 4529[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2877[label="",style="solid", color="blue", weight=3]; 4530[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2878[label="",style="solid", color="blue", weight=3]; 4531[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2879[label="",style="solid", color="blue", weight=3]; 4532[label="<= :: Char -> Char -> 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]; 2719 -> 1298[label="",style="dashed", color="red", weight=0]; 2719[label="xuu550 < xuu560",fontsize=16,color="magenta"];2719 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2720 -> 1299[label="",style="dashed", color="red", weight=0]; 2720[label="xuu550 < xuu560",fontsize=16,color="magenta"];2720 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2721 -> 1300[label="",style="dashed", color="red", weight=0]; 2721[label="xuu550 < xuu560",fontsize=16,color="magenta"];2721 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2722 -> 1301[label="",style="dashed", color="red", weight=0]; 2722[label="xuu550 < xuu560",fontsize=16,color="magenta"];2722 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2723 -> 1302[label="",style="dashed", color="red", weight=0]; 2723[label="xuu550 < xuu560",fontsize=16,color="magenta"];2723 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2724 -> 1303[label="",style="dashed", color="red", weight=0]; 2724[label="xuu550 < xuu560",fontsize=16,color="magenta"];2724 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1304[label="",style="dashed", color="red", weight=0]; 2725[label="xuu550 < xuu560",fontsize=16,color="magenta"];2725 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2726 -> 1305[label="",style="dashed", color="red", weight=0]; 2726[label="xuu550 < xuu560",fontsize=16,color="magenta"];2726 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2727 -> 1306[label="",style="dashed", color="red", weight=0]; 2727[label="xuu550 < xuu560",fontsize=16,color="magenta"];2727 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1307[label="",style="dashed", color="red", weight=0]; 2728[label="xuu550 < xuu560",fontsize=16,color="magenta"];2728 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2729 -> 1308[label="",style="dashed", color="red", weight=0]; 2729[label="xuu550 < xuu560",fontsize=16,color="magenta"];2729 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2730 -> 1309[label="",style="dashed", color="red", weight=0]; 2730[label="xuu550 < xuu560",fontsize=16,color="magenta"];2730 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2731 -> 1310[label="",style="dashed", color="red", weight=0]; 2731[label="xuu550 < xuu560",fontsize=16,color="magenta"];2731 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2732 -> 1311[label="",style="dashed", color="red", weight=0]; 2732[label="xuu550 < xuu560",fontsize=16,color="magenta"];2732 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2733[label="xuu560",fontsize=16,color="green",shape="box"];2734[label="xuu550",fontsize=16,color="green",shape="box"];2735[label="xuu560",fontsize=16,color="green",shape="box"];2736[label="xuu550",fontsize=16,color="green",shape="box"];2737[label="xuu560",fontsize=16,color="green",shape="box"];2738[label="xuu550",fontsize=16,color="green",shape="box"];2739[label="xuu560",fontsize=16,color="green",shape="box"];2740[label="xuu550",fontsize=16,color="green",shape="box"];2741[label="xuu560",fontsize=16,color="green",shape="box"];2742[label="xuu550",fontsize=16,color="green",shape="box"];2743[label="xuu560",fontsize=16,color="green",shape="box"];2744[label="xuu550",fontsize=16,color="green",shape="box"];2745[label="xuu560",fontsize=16,color="green",shape="box"];2746[label="xuu550",fontsize=16,color="green",shape="box"];2747[label="xuu560",fontsize=16,color="green",shape="box"];2748[label="xuu550",fontsize=16,color="green",shape="box"];2749[label="xuu560",fontsize=16,color="green",shape="box"];2750[label="xuu550",fontsize=16,color="green",shape="box"];2751[label="xuu560",fontsize=16,color="green",shape="box"];2752[label="xuu550",fontsize=16,color="green",shape="box"];2753[label="xuu560",fontsize=16,color="green",shape="box"];2754[label="xuu550",fontsize=16,color="green",shape="box"];2755[label="xuu560",fontsize=16,color="green",shape="box"];2756[label="xuu550",fontsize=16,color="green",shape="box"];2757[label="xuu560",fontsize=16,color="green",shape="box"];2758[label="xuu550",fontsize=16,color="green",shape="box"];2759[label="xuu560",fontsize=16,color="green",shape="box"];2760[label="xuu550",fontsize=16,color="green",shape="box"];2761[label="xuu560",fontsize=16,color="green",shape="box"];2762[label="xuu550",fontsize=16,color="green",shape="box"];2763[label="xuu560",fontsize=16,color="green",shape="box"];2764[label="xuu550",fontsize=16,color="green",shape="box"];2765[label="xuu560",fontsize=16,color="green",shape="box"];2766[label="xuu550",fontsize=16,color="green",shape="box"];2767[label="xuu560",fontsize=16,color="green",shape="box"];2768[label="xuu550",fontsize=16,color="green",shape="box"];2769[label="xuu560",fontsize=16,color="green",shape="box"];2770[label="xuu550",fontsize=16,color="green",shape="box"];2771[label="xuu560",fontsize=16,color="green",shape="box"];2772[label="xuu550",fontsize=16,color="green",shape="box"];2773[label="xuu560",fontsize=16,color="green",shape="box"];2774[label="xuu550",fontsize=16,color="green",shape="box"];2775[label="xuu560",fontsize=16,color="green",shape="box"];2776[label="xuu550",fontsize=16,color="green",shape="box"];2777[label="xuu560",fontsize=16,color="green",shape="box"];2778[label="xuu550",fontsize=16,color="green",shape="box"];2779[label="xuu560",fontsize=16,color="green",shape="box"];2780[label="xuu550",fontsize=16,color="green",shape="box"];2781[label="xuu560",fontsize=16,color="green",shape="box"];2782[label="xuu550",fontsize=16,color="green",shape="box"];2783[label="xuu560",fontsize=16,color="green",shape="box"];2784[label="xuu550",fontsize=16,color="green",shape="box"];2785[label="xuu560",fontsize=16,color="green",shape="box"];2786[label="xuu550",fontsize=16,color="green",shape="box"];2787[label="xuu560",fontsize=16,color="green",shape="box"];2788[label="xuu550",fontsize=16,color="green",shape="box"];2789[label="xuu560",fontsize=16,color="green",shape="box"];2790[label="xuu550",fontsize=16,color="green",shape="box"];2791[label="xuu560",fontsize=16,color="green",shape="box"];2792[label="xuu550",fontsize=16,color="green",shape="box"];2793[label="xuu560",fontsize=16,color="green",shape="box"];2794[label="xuu550",fontsize=16,color="green",shape="box"];2795[label="xuu560",fontsize=16,color="green",shape="box"];2796[label="xuu550",fontsize=16,color="green",shape="box"];2797[label="xuu560",fontsize=16,color="green",shape="box"];2798[label="xuu550",fontsize=16,color="green",shape="box"];2799[label="xuu560",fontsize=16,color="green",shape="box"];2800[label="xuu550",fontsize=16,color="green",shape="box"];2801[label="xuu560",fontsize=16,color="green",shape="box"];2802[label="xuu550",fontsize=16,color="green",shape="box"];2803[label="xuu560",fontsize=16,color="green",shape="box"];2804[label="xuu550",fontsize=16,color="green",shape="box"];2805[label="xuu560",fontsize=16,color="green",shape="box"];2806[label="xuu550",fontsize=16,color="green",shape="box"];2807[label="xuu560",fontsize=16,color="green",shape="box"];2808[label="xuu550",fontsize=16,color="green",shape="box"];2809[label="xuu560",fontsize=16,color="green",shape="box"];2810[label="xuu550",fontsize=16,color="green",shape="box"];2811[label="xuu560",fontsize=16,color="green",shape="box"];2812[label="xuu550",fontsize=16,color="green",shape="box"];2813[label="xuu560",fontsize=16,color="green",shape="box"];2814[label="xuu550",fontsize=16,color="green",shape="box"];2815[label="xuu560",fontsize=16,color="green",shape="box"];2816[label="xuu550",fontsize=16,color="green",shape="box"];2817[label="xuu550 == xuu560",fontsize=16,color="blue",shape="box"];4533[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2909[label="",style="solid", color="blue", weight=3]; 4534[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2910[label="",style="solid", color="blue", weight=3]; 4535[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2911[label="",style="solid", color="blue", weight=3]; 4536[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2912[label="",style="solid", color="blue", weight=3]; 4537[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2913[label="",style="solid", color="blue", weight=3]; 4538[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2914[label="",style="solid", color="blue", weight=3]; 4539[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2915[label="",style="solid", color="blue", weight=3]; 4540[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2916[label="",style="solid", color="blue", weight=3]; 4541[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2917[label="",style="solid", color="blue", weight=3]; 4542[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2918[label="",style="solid", color="blue", weight=3]; 4543[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2919[label="",style="solid", color="blue", weight=3]; 4544[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 2920[label="",style="solid", color="blue", weight=3]; 4545[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 2921[label="",style="solid", color="blue", weight=3]; 4546[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2817 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2922[label="",style="solid", color="blue", weight=3]; 2818 -> 2080[label="",style="dashed", color="red", weight=0]; 2818[label="xuu551 < xuu561 || xuu551 == xuu561 && xuu552 <= xuu562",fontsize=16,color="magenta"];2818 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2819 -> 1298[label="",style="dashed", color="red", weight=0]; 2819[label="xuu550 < xuu560",fontsize=16,color="magenta"];2819 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2820 -> 1299[label="",style="dashed", color="red", weight=0]; 2820[label="xuu550 < xuu560",fontsize=16,color="magenta"];2820 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2821 -> 1300[label="",style="dashed", color="red", weight=0]; 2821[label="xuu550 < xuu560",fontsize=16,color="magenta"];2821 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2822 -> 1301[label="",style="dashed", color="red", weight=0]; 2822[label="xuu550 < xuu560",fontsize=16,color="magenta"];2822 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2823 -> 1302[label="",style="dashed", color="red", weight=0]; 2823[label="xuu550 < xuu560",fontsize=16,color="magenta"];2823 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2824 -> 1303[label="",style="dashed", color="red", weight=0]; 2824[label="xuu550 < xuu560",fontsize=16,color="magenta"];2824 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2825 -> 1304[label="",style="dashed", color="red", weight=0]; 2825[label="xuu550 < xuu560",fontsize=16,color="magenta"];2825 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2826 -> 1305[label="",style="dashed", color="red", weight=0]; 2826[label="xuu550 < xuu560",fontsize=16,color="magenta"];2826 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2827 -> 1306[label="",style="dashed", color="red", weight=0]; 2827[label="xuu550 < xuu560",fontsize=16,color="magenta"];2827 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2828 -> 1307[label="",style="dashed", color="red", weight=0]; 2828[label="xuu550 < xuu560",fontsize=16,color="magenta"];2828 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2829 -> 1308[label="",style="dashed", color="red", weight=0]; 2829[label="xuu550 < xuu560",fontsize=16,color="magenta"];2829 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2830 -> 1309[label="",style="dashed", color="red", weight=0]; 2830[label="xuu550 < xuu560",fontsize=16,color="magenta"];2830 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2831 -> 1310[label="",style="dashed", color="red", weight=0]; 2831[label="xuu550 < xuu560",fontsize=16,color="magenta"];2831 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2832 -> 1311[label="",style="dashed", color="red", weight=0]; 2832[label="xuu550 < xuu560",fontsize=16,color="magenta"];2832 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2833[label="GT",fontsize=16,color="green",shape="box"];2834[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];2834 -> 2953[label="",style="solid", color="black", weight=3]; 2835[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM [] xuu31 xuu38 FiniteMap.EmptyFM xuu38 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2835 -> 2954[label="",style="solid", color="black", weight=3]; 2836[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];2836 -> 2955[label="",style="solid", color="black", weight=3]; 2838 -> 1306[label="",style="dashed", color="red", weight=0]; 2838[label="FiniteMap.sizeFM xuu383 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];2838 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2837[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 xuu206",fontsize=16,color="burlywood",shape="triangle"];4547[label="xuu206/False",fontsize=10,color="white",style="solid",shape="box"];2837 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 2958[label="",style="solid", color="burlywood", weight=3]; 4548[label="xuu206/True",fontsize=10,color="white",style="solid",shape="box"];2837 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 2959[label="",style="solid", color="burlywood", weight=3]; 3676[label="Pos Zero",fontsize=16,color="green",shape="box"];3677[label="xuu2932",fontsize=16,color="green",shape="box"];3678 -> 3670[label="",style="dashed", color="red", weight=0]; 3678[label="FiniteMap.sizeFM xuu292",fontsize=16,color="magenta"];3678 -> 3679[label="",style="dashed", color="magenta", weight=3]; 2844 -> 1306[label="",style="dashed", color="red", weight=0]; 2844[label="FiniteMap.sizeFM xuu264 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];2844 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2843[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 xuu210",fontsize=16,color="burlywood",shape="triangle"];4549[label="xuu210/False",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 2965[label="",style="solid", color="burlywood", weight=3]; 4550[label="xuu210/True",fontsize=10,color="white",style="solid",shape="box"];2843 -> 4550[label="",style="solid", color="burlywood", weight=9]; 4550 -> 2966[label="",style="solid", color="burlywood", weight=3]; 2847[label="xuu344",fontsize=16,color="green",shape="box"];2848[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2848 -> 2967[label="",style="solid", color="black", weight=3]; 2849 -> 3425[label="",style="dashed", color="red", weight=0]; 2849[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu300 : xuu301) xuu31 xuu26 xuu343) xuu344",fontsize=16,color="magenta"];2849 -> 3441[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3442[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3443[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3444[label="",style="dashed", color="magenta", weight=3]; 2849 -> 3445[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2172[label="",style="dashed", color="red", weight=0]; 2850[label="primPlusNat xuu2040 xuu4000100",fontsize=16,color="magenta"];2850 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2851[label="True",fontsize=16,color="green",shape="box"];2852[label="False",fontsize=16,color="green",shape="box"];2853 -> 534[label="",style="dashed", color="red", weight=0]; 2853[label="xuu550 == xuu560",fontsize=16,color="magenta"];2853 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2854 -> 528[label="",style="dashed", color="red", weight=0]; 2854[label="xuu550 == xuu560",fontsize=16,color="magenta"];2854 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2855 -> 538[label="",style="dashed", color="red", weight=0]; 2855[label="xuu550 == xuu560",fontsize=16,color="magenta"];2855 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2856 -> 537[label="",style="dashed", color="red", weight=0]; 2856[label="xuu550 == xuu560",fontsize=16,color="magenta"];2856 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2857 -> 530[label="",style="dashed", color="red", weight=0]; 2857[label="xuu550 == xuu560",fontsize=16,color="magenta"];2857 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2858 -> 536[label="",style="dashed", color="red", weight=0]; 2858[label="xuu550 == xuu560",fontsize=16,color="magenta"];2858 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2859 -> 533[label="",style="dashed", color="red", weight=0]; 2859[label="xuu550 == xuu560",fontsize=16,color="magenta"];2859 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2860 -> 529[label="",style="dashed", color="red", weight=0]; 2860[label="xuu550 == xuu560",fontsize=16,color="magenta"];2860 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2861 -> 527[label="",style="dashed", color="red", weight=0]; 2861[label="xuu550 == xuu560",fontsize=16,color="magenta"];2861 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2862 -> 539[label="",style="dashed", color="red", weight=0]; 2862[label="xuu550 == xuu560",fontsize=16,color="magenta"];2862 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2863 -> 535[label="",style="dashed", color="red", weight=0]; 2863[label="xuu550 == xuu560",fontsize=16,color="magenta"];2863 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2863 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2864 -> 531[label="",style="dashed", color="red", weight=0]; 2864[label="xuu550 == xuu560",fontsize=16,color="magenta"];2864 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2865 -> 540[label="",style="dashed", color="red", weight=0]; 2865[label="xuu550 == xuu560",fontsize=16,color="magenta"];2865 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2866 -> 532[label="",style="dashed", color="red", weight=0]; 2866[label="xuu550 == xuu560",fontsize=16,color="magenta"];2866 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2867 -> 1353[label="",style="dashed", color="red", weight=0]; 2867[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2867 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2867 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2868 -> 1354[label="",style="dashed", color="red", weight=0]; 2868[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2868 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2868 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2869 -> 1355[label="",style="dashed", color="red", weight=0]; 2869[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2869 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2869 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2870 -> 1356[label="",style="dashed", color="red", weight=0]; 2870[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2870 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2870 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2871 -> 1357[label="",style="dashed", color="red", weight=0]; 2871[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2871 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2871 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2872 -> 1358[label="",style="dashed", color="red", weight=0]; 2872[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2872 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2872 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2873 -> 1359[label="",style="dashed", color="red", weight=0]; 2873[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2873 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2873 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2874 -> 1360[label="",style="dashed", color="red", weight=0]; 2874[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2874 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2874 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2875 -> 1361[label="",style="dashed", color="red", weight=0]; 2875[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2875 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2875 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2876 -> 1362[label="",style="dashed", color="red", weight=0]; 2876[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2876 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2876 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2877 -> 1363[label="",style="dashed", color="red", weight=0]; 2877[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2877 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2877 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2878 -> 1364[label="",style="dashed", color="red", weight=0]; 2878[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2878 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2878 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2879 -> 1365[label="",style="dashed", color="red", weight=0]; 2879[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2879 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2879 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2880 -> 1366[label="",style="dashed", color="red", weight=0]; 2880[label="xuu551 <= xuu561",fontsize=16,color="magenta"];2880 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2880 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2881[label="xuu560",fontsize=16,color="green",shape="box"];2882[label="xuu550",fontsize=16,color="green",shape="box"];2883[label="xuu560",fontsize=16,color="green",shape="box"];2884[label="xuu550",fontsize=16,color="green",shape="box"];2885[label="xuu560",fontsize=16,color="green",shape="box"];2886[label="xuu550",fontsize=16,color="green",shape="box"];2887[label="xuu560",fontsize=16,color="green",shape="box"];2888[label="xuu550",fontsize=16,color="green",shape="box"];2889[label="xuu560",fontsize=16,color="green",shape="box"];2890[label="xuu550",fontsize=16,color="green",shape="box"];2891[label="xuu560",fontsize=16,color="green",shape="box"];2892[label="xuu550",fontsize=16,color="green",shape="box"];2893[label="xuu560",fontsize=16,color="green",shape="box"];2894[label="xuu550",fontsize=16,color="green",shape="box"];2895[label="xuu560",fontsize=16,color="green",shape="box"];2896[label="xuu550",fontsize=16,color="green",shape="box"];2897[label="xuu560",fontsize=16,color="green",shape="box"];2898[label="xuu550",fontsize=16,color="green",shape="box"];2899[label="xuu560",fontsize=16,color="green",shape="box"];2900[label="xuu550",fontsize=16,color="green",shape="box"];2901[label="xuu560",fontsize=16,color="green",shape="box"];2902[label="xuu550",fontsize=16,color="green",shape="box"];2903[label="xuu560",fontsize=16,color="green",shape="box"];2904[label="xuu550",fontsize=16,color="green",shape="box"];2905[label="xuu560",fontsize=16,color="green",shape="box"];2906[label="xuu550",fontsize=16,color="green",shape="box"];2907[label="xuu560",fontsize=16,color="green",shape="box"];2908[label="xuu550",fontsize=16,color="green",shape="box"];2909 -> 534[label="",style="dashed", color="red", weight=0]; 2909[label="xuu550 == xuu560",fontsize=16,color="magenta"];2909 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2909 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2910 -> 528[label="",style="dashed", color="red", weight=0]; 2910[label="xuu550 == xuu560",fontsize=16,color="magenta"];2910 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2910 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2911 -> 538[label="",style="dashed", color="red", weight=0]; 2911[label="xuu550 == xuu560",fontsize=16,color="magenta"];2911 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2912 -> 537[label="",style="dashed", color="red", weight=0]; 2912[label="xuu550 == xuu560",fontsize=16,color="magenta"];2912 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2912 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2913 -> 530[label="",style="dashed", color="red", weight=0]; 2913[label="xuu550 == xuu560",fontsize=16,color="magenta"];2913 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2914 -> 536[label="",style="dashed", color="red", weight=0]; 2914[label="xuu550 == xuu560",fontsize=16,color="magenta"];2914 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2914 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2915 -> 533[label="",style="dashed", color="red", weight=0]; 2915[label="xuu550 == xuu560",fontsize=16,color="magenta"];2915 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2915 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2916 -> 529[label="",style="dashed", color="red", weight=0]; 2916[label="xuu550 == xuu560",fontsize=16,color="magenta"];2916 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2916 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2917 -> 527[label="",style="dashed", color="red", weight=0]; 2917[label="xuu550 == xuu560",fontsize=16,color="magenta"];2917 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2917 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2918 -> 539[label="",style="dashed", color="red", weight=0]; 2918[label="xuu550 == xuu560",fontsize=16,color="magenta"];2918 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2919 -> 535[label="",style="dashed", color="red", weight=0]; 2919[label="xuu550 == xuu560",fontsize=16,color="magenta"];2919 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2920 -> 531[label="",style="dashed", color="red", weight=0]; 2920[label="xuu550 == xuu560",fontsize=16,color="magenta"];2920 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2921 -> 540[label="",style="dashed", color="red", weight=0]; 2921[label="xuu550 == xuu560",fontsize=16,color="magenta"];2921 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2922 -> 532[label="",style="dashed", color="red", weight=0]; 2922[label="xuu550 == xuu560",fontsize=16,color="magenta"];2922 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2923 -> 984[label="",style="dashed", color="red", weight=0]; 2923[label="xuu551 == xuu561 && xuu552 <= xuu562",fontsize=16,color="magenta"];2923 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2924[label="xuu551 < xuu561",fontsize=16,color="blue",shape="box"];4551[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 3057[label="",style="solid", color="blue", weight=3]; 4552[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 3058[label="",style="solid", color="blue", weight=3]; 4553[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 3059[label="",style="solid", color="blue", weight=3]; 4554[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 3060[label="",style="solid", color="blue", weight=3]; 4555[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 3061[label="",style="solid", color="blue", weight=3]; 4556[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 3062[label="",style="solid", color="blue", weight=3]; 4557[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 3063[label="",style="solid", color="blue", weight=3]; 4558[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 3064[label="",style="solid", color="blue", weight=3]; 4559[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 3065[label="",style="solid", color="blue", weight=3]; 4560[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 3066[label="",style="solid", color="blue", weight=3]; 4561[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 3067[label="",style="solid", color="blue", weight=3]; 4562[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 3068[label="",style="solid", color="blue", weight=3]; 4563[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 3069[label="",style="solid", color="blue", weight=3]; 4564[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2924 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 3070[label="",style="solid", color="blue", weight=3]; 2925[label="xuu560",fontsize=16,color="green",shape="box"];2926[label="xuu550",fontsize=16,color="green",shape="box"];2927[label="xuu560",fontsize=16,color="green",shape="box"];2928[label="xuu550",fontsize=16,color="green",shape="box"];2929[label="xuu560",fontsize=16,color="green",shape="box"];2930[label="xuu550",fontsize=16,color="green",shape="box"];2931[label="xuu560",fontsize=16,color="green",shape="box"];2932[label="xuu550",fontsize=16,color="green",shape="box"];2933[label="xuu560",fontsize=16,color="green",shape="box"];2934[label="xuu550",fontsize=16,color="green",shape="box"];2935[label="xuu560",fontsize=16,color="green",shape="box"];2936[label="xuu550",fontsize=16,color="green",shape="box"];2937[label="xuu560",fontsize=16,color="green",shape="box"];2938[label="xuu550",fontsize=16,color="green",shape="box"];2939[label="xuu560",fontsize=16,color="green",shape="box"];2940[label="xuu550",fontsize=16,color="green",shape="box"];2941[label="xuu560",fontsize=16,color="green",shape="box"];2942[label="xuu550",fontsize=16,color="green",shape="box"];2943[label="xuu560",fontsize=16,color="green",shape="box"];2944[label="xuu550",fontsize=16,color="green",shape="box"];2945[label="xuu560",fontsize=16,color="green",shape="box"];2946[label="xuu550",fontsize=16,color="green",shape="box"];2947[label="xuu560",fontsize=16,color="green",shape="box"];2948[label="xuu550",fontsize=16,color="green",shape="box"];2949[label="xuu560",fontsize=16,color="green",shape="box"];2950[label="xuu550",fontsize=16,color="green",shape="box"];2951[label="xuu560",fontsize=16,color="green",shape="box"];2952[label="xuu550",fontsize=16,color="green",shape="box"];2953 -> 3425[label="",style="dashed", color="red", weight=0]; 2953[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu31 xuu33 xuu38",fontsize=16,color="magenta"];2953 -> 3446[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3447[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3448[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3449[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3450[label="",style="dashed", color="magenta", weight=3]; 2954[label="error []",fontsize=16,color="red",shape="box"];2955[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];2955 -> 3072[label="",style="solid", color="black", weight=3]; 2956 -> 389[label="",style="dashed", color="red", weight=0]; 2956[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];2956 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2956 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2957 -> 1734[label="",style="dashed", color="red", weight=0]; 2957[label="FiniteMap.sizeFM xuu383",fontsize=16,color="magenta"];2957 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2958[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 False",fontsize=16,color="black",shape="box"];2958 -> 3076[label="",style="solid", color="black", weight=3]; 2959[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];2959 -> 3077[label="",style="solid", color="black", weight=3]; 3679[label="xuu292",fontsize=16,color="green",shape="box"];2963 -> 389[label="",style="dashed", color="red", weight=0]; 2963[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];2963 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2963 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2964 -> 1734[label="",style="dashed", color="red", weight=0]; 2964[label="FiniteMap.sizeFM xuu264",fontsize=16,color="magenta"];2964 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2965[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 False",fontsize=16,color="black",shape="box"];2965 -> 3082[label="",style="solid", color="black", weight=3]; 2966[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 True",fontsize=16,color="black",shape="box"];2966 -> 3083[label="",style="solid", color="black", weight=3]; 2967[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4565[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 3084[label="",style="solid", color="burlywood", weight=3]; 4566[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2967 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 3085[label="",style="solid", color="burlywood", weight=3]; 3441[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3442[label="xuu344",fontsize=16,color="green",shape="box"];3443 -> 3425[label="",style="dashed", color="red", weight=0]; 3443[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu300 : xuu301) xuu31 xuu26 xuu343",fontsize=16,color="magenta"];3443 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3444[label="xuu340",fontsize=16,color="green",shape="box"];3445[label="xuu341",fontsize=16,color="green",shape="box"];2969[label="xuu2040",fontsize=16,color="green",shape="box"];2970[label="xuu4000100",fontsize=16,color="green",shape="box"];2971[label="xuu550",fontsize=16,color="green",shape="box"];2972[label="xuu560",fontsize=16,color="green",shape="box"];2973[label="xuu550",fontsize=16,color="green",shape="box"];2974[label="xuu560",fontsize=16,color="green",shape="box"];2975[label="xuu550",fontsize=16,color="green",shape="box"];2976[label="xuu560",fontsize=16,color="green",shape="box"];2977[label="xuu550",fontsize=16,color="green",shape="box"];2978[label="xuu560",fontsize=16,color="green",shape="box"];2979[label="xuu550",fontsize=16,color="green",shape="box"];2980[label="xuu560",fontsize=16,color="green",shape="box"];2981[label="xuu550",fontsize=16,color="green",shape="box"];2982[label="xuu560",fontsize=16,color="green",shape="box"];2983[label="xuu550",fontsize=16,color="green",shape="box"];2984[label="xuu560",fontsize=16,color="green",shape="box"];2985[label="xuu550",fontsize=16,color="green",shape="box"];2986[label="xuu560",fontsize=16,color="green",shape="box"];2987[label="xuu550",fontsize=16,color="green",shape="box"];2988[label="xuu560",fontsize=16,color="green",shape="box"];2989[label="xuu550",fontsize=16,color="green",shape="box"];2990[label="xuu560",fontsize=16,color="green",shape="box"];2991[label="xuu550",fontsize=16,color="green",shape="box"];2992[label="xuu560",fontsize=16,color="green",shape="box"];2993[label="xuu550",fontsize=16,color="green",shape="box"];2994[label="xuu560",fontsize=16,color="green",shape="box"];2995[label="xuu550",fontsize=16,color="green",shape="box"];2996[label="xuu560",fontsize=16,color="green",shape="box"];2997[label="xuu550",fontsize=16,color="green",shape="box"];2998[label="xuu560",fontsize=16,color="green",shape="box"];2999[label="xuu561",fontsize=16,color="green",shape="box"];3000[label="xuu551",fontsize=16,color="green",shape="box"];3001[label="xuu561",fontsize=16,color="green",shape="box"];3002[label="xuu551",fontsize=16,color="green",shape="box"];3003[label="xuu561",fontsize=16,color="green",shape="box"];3004[label="xuu551",fontsize=16,color="green",shape="box"];3005[label="xuu561",fontsize=16,color="green",shape="box"];3006[label="xuu551",fontsize=16,color="green",shape="box"];3007[label="xuu561",fontsize=16,color="green",shape="box"];3008[label="xuu551",fontsize=16,color="green",shape="box"];3009[label="xuu561",fontsize=16,color="green",shape="box"];3010[label="xuu551",fontsize=16,color="green",shape="box"];3011[label="xuu561",fontsize=16,color="green",shape="box"];3012[label="xuu551",fontsize=16,color="green",shape="box"];3013[label="xuu561",fontsize=16,color="green",shape="box"];3014[label="xuu551",fontsize=16,color="green",shape="box"];3015[label="xuu561",fontsize=16,color="green",shape="box"];3016[label="xuu551",fontsize=16,color="green",shape="box"];3017[label="xuu561",fontsize=16,color="green",shape="box"];3018[label="xuu551",fontsize=16,color="green",shape="box"];3019[label="xuu561",fontsize=16,color="green",shape="box"];3020[label="xuu551",fontsize=16,color="green",shape="box"];3021[label="xuu561",fontsize=16,color="green",shape="box"];3022[label="xuu551",fontsize=16,color="green",shape="box"];3023[label="xuu561",fontsize=16,color="green",shape="box"];3024[label="xuu551",fontsize=16,color="green",shape="box"];3025[label="xuu561",fontsize=16,color="green",shape="box"];3026[label="xuu551",fontsize=16,color="green",shape="box"];3027[label="xuu550",fontsize=16,color="green",shape="box"];3028[label="xuu560",fontsize=16,color="green",shape="box"];3029[label="xuu550",fontsize=16,color="green",shape="box"];3030[label="xuu560",fontsize=16,color="green",shape="box"];3031[label="xuu550",fontsize=16,color="green",shape="box"];3032[label="xuu560",fontsize=16,color="green",shape="box"];3033[label="xuu550",fontsize=16,color="green",shape="box"];3034[label="xuu560",fontsize=16,color="green",shape="box"];3035[label="xuu550",fontsize=16,color="green",shape="box"];3036[label="xuu560",fontsize=16,color="green",shape="box"];3037[label="xuu550",fontsize=16,color="green",shape="box"];3038[label="xuu560",fontsize=16,color="green",shape="box"];3039[label="xuu550",fontsize=16,color="green",shape="box"];3040[label="xuu560",fontsize=16,color="green",shape="box"];3041[label="xuu550",fontsize=16,color="green",shape="box"];3042[label="xuu560",fontsize=16,color="green",shape="box"];3043[label="xuu550",fontsize=16,color="green",shape="box"];3044[label="xuu560",fontsize=16,color="green",shape="box"];3045[label="xuu550",fontsize=16,color="green",shape="box"];3046[label="xuu560",fontsize=16,color="green",shape="box"];3047[label="xuu550",fontsize=16,color="green",shape="box"];3048[label="xuu560",fontsize=16,color="green",shape="box"];3049[label="xuu550",fontsize=16,color="green",shape="box"];3050[label="xuu560",fontsize=16,color="green",shape="box"];3051[label="xuu550",fontsize=16,color="green",shape="box"];3052[label="xuu560",fontsize=16,color="green",shape="box"];3053[label="xuu550",fontsize=16,color="green",shape="box"];3054[label="xuu560",fontsize=16,color="green",shape="box"];3055[label="xuu551 == xuu561",fontsize=16,color="blue",shape="box"];4567[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 3087[label="",style="solid", color="blue", weight=3]; 4568[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 3088[label="",style="solid", color="blue", weight=3]; 4569[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 3089[label="",style="solid", color="blue", weight=3]; 4570[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 3090[label="",style="solid", color="blue", weight=3]; 4571[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 3091[label="",style="solid", color="blue", weight=3]; 4572[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 3092[label="",style="solid", color="blue", weight=3]; 4573[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 3093[label="",style="solid", color="blue", weight=3]; 4574[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 3094[label="",style="solid", color="blue", weight=3]; 4575[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 3095[label="",style="solid", color="blue", weight=3]; 4576[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 3096[label="",style="solid", color="blue", weight=3]; 4577[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 3097[label="",style="solid", color="blue", weight=3]; 4578[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 3098[label="",style="solid", color="blue", weight=3]; 4579[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 3099[label="",style="solid", color="blue", weight=3]; 4580[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3100[label="",style="solid", color="blue", weight=3]; 3056[label="xuu552 <= xuu562",fontsize=16,color="blue",shape="box"];4581[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3101[label="",style="solid", color="blue", weight=3]; 4582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3102[label="",style="solid", color="blue", weight=3]; 4583[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3103[label="",style="solid", color="blue", weight=3]; 4584[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3104[label="",style="solid", color="blue", weight=3]; 4585[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3105[label="",style="solid", color="blue", weight=3]; 4586[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3106[label="",style="solid", color="blue", weight=3]; 4587[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3107[label="",style="solid", color="blue", weight=3]; 4588[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3108[label="",style="solid", color="blue", weight=3]; 4589[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3109[label="",style="solid", color="blue", weight=3]; 4590[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3110[label="",style="solid", color="blue", weight=3]; 4591[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 3111[label="",style="solid", color="blue", weight=3]; 4592[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 3112[label="",style="solid", color="blue", weight=3]; 4593[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 3113[label="",style="solid", color="blue", weight=3]; 4594[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 3114[label="",style="solid", color="blue", weight=3]; 3057 -> 1298[label="",style="dashed", color="red", weight=0]; 3057[label="xuu551 < xuu561",fontsize=16,color="magenta"];3057 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3058 -> 1299[label="",style="dashed", color="red", weight=0]; 3058[label="xuu551 < xuu561",fontsize=16,color="magenta"];3058 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3059 -> 1300[label="",style="dashed", color="red", weight=0]; 3059[label="xuu551 < xuu561",fontsize=16,color="magenta"];3059 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3060 -> 1301[label="",style="dashed", color="red", weight=0]; 3060[label="xuu551 < xuu561",fontsize=16,color="magenta"];3060 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3061 -> 1302[label="",style="dashed", color="red", weight=0]; 3061[label="xuu551 < xuu561",fontsize=16,color="magenta"];3061 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3062 -> 1303[label="",style="dashed", color="red", weight=0]; 3062[label="xuu551 < xuu561",fontsize=16,color="magenta"];3062 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3063 -> 1304[label="",style="dashed", color="red", weight=0]; 3063[label="xuu551 < xuu561",fontsize=16,color="magenta"];3063 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3064 -> 1305[label="",style="dashed", color="red", weight=0]; 3064[label="xuu551 < xuu561",fontsize=16,color="magenta"];3064 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3065 -> 1306[label="",style="dashed", color="red", weight=0]; 3065[label="xuu551 < xuu561",fontsize=16,color="magenta"];3065 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3066 -> 1307[label="",style="dashed", color="red", weight=0]; 3066[label="xuu551 < xuu561",fontsize=16,color="magenta"];3066 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3067 -> 1308[label="",style="dashed", color="red", weight=0]; 3067[label="xuu551 < xuu561",fontsize=16,color="magenta"];3067 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3068 -> 1309[label="",style="dashed", color="red", weight=0]; 3068[label="xuu551 < xuu561",fontsize=16,color="magenta"];3068 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3069 -> 1310[label="",style="dashed", color="red", weight=0]; 3069[label="xuu551 < xuu561",fontsize=16,color="magenta"];3069 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3070 -> 1311[label="",style="dashed", color="red", weight=0]; 3070[label="xuu551 < xuu561",fontsize=16,color="magenta"];3070 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3446[label="Succ Zero",fontsize=16,color="green",shape="box"];3447[label="xuu38",fontsize=16,color="green",shape="box"];3448[label="xuu33",fontsize=16,color="green",shape="box"];3449[label="[]",fontsize=16,color="green",shape="box"];3450[label="xuu31",fontsize=16,color="green",shape="box"];3072 -> 3143[label="",style="dashed", color="red", weight=0]; 3072[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 (FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333)",fontsize=16,color="magenta"];3072 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3073 -> 1734[label="",style="dashed", color="red", weight=0]; 3073[label="FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];3073 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3074[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3075[label="xuu383",fontsize=16,color="green",shape="box"];3076[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 otherwise",fontsize=16,color="black",shape="box"];3076 -> 3146[label="",style="solid", color="black", weight=3]; 3077[label="FiniteMap.mkBalBranch6Single_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];3077 -> 3147[label="",style="solid", color="black", weight=3]; 3079 -> 1734[label="",style="dashed", color="red", weight=0]; 3079[label="FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];3079 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3080[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3081[label="xuu264",fontsize=16,color="green",shape="box"];3082[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 otherwise",fontsize=16,color="black",shape="box"];3082 -> 3150[label="",style="solid", color="black", weight=3]; 3083[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34",fontsize=16,color="black",shape="box"];3083 -> 3151[label="",style="solid", color="black", weight=3]; 3084[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];3084 -> 3152[label="",style="solid", color="black", weight=3]; 3085[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];3085 -> 3153[label="",style="solid", color="black", weight=3]; 3597[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3598[label="xuu343",fontsize=16,color="green",shape="box"];3599[label="xuu26",fontsize=16,color="green",shape="box"];3600[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3601[label="xuu31",fontsize=16,color="green",shape="box"];3087 -> 534[label="",style="dashed", color="red", weight=0]; 3087[label="xuu551 == xuu561",fontsize=16,color="magenta"];3087 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3088 -> 528[label="",style="dashed", color="red", weight=0]; 3088[label="xuu551 == xuu561",fontsize=16,color="magenta"];3088 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3089 -> 538[label="",style="dashed", color="red", weight=0]; 3089[label="xuu551 == xuu561",fontsize=16,color="magenta"];3089 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3090 -> 537[label="",style="dashed", color="red", weight=0]; 3090[label="xuu551 == xuu561",fontsize=16,color="magenta"];3090 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3091 -> 530[label="",style="dashed", color="red", weight=0]; 3091[label="xuu551 == xuu561",fontsize=16,color="magenta"];3091 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3092 -> 536[label="",style="dashed", color="red", weight=0]; 3092[label="xuu551 == xuu561",fontsize=16,color="magenta"];3092 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3093 -> 533[label="",style="dashed", color="red", weight=0]; 3093[label="xuu551 == xuu561",fontsize=16,color="magenta"];3093 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3094 -> 529[label="",style="dashed", color="red", weight=0]; 3094[label="xuu551 == xuu561",fontsize=16,color="magenta"];3094 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3094 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3095 -> 527[label="",style="dashed", color="red", weight=0]; 3095[label="xuu551 == xuu561",fontsize=16,color="magenta"];3095 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3095 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3096 -> 539[label="",style="dashed", color="red", weight=0]; 3096[label="xuu551 == xuu561",fontsize=16,color="magenta"];3096 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3096 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3097 -> 535[label="",style="dashed", color="red", weight=0]; 3097[label="xuu551 == xuu561",fontsize=16,color="magenta"];3097 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3097 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3098 -> 531[label="",style="dashed", color="red", weight=0]; 3098[label="xuu551 == xuu561",fontsize=16,color="magenta"];3098 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3098 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3099 -> 540[label="",style="dashed", color="red", weight=0]; 3099[label="xuu551 == xuu561",fontsize=16,color="magenta"];3099 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3099 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3100 -> 532[label="",style="dashed", color="red", weight=0]; 3100[label="xuu551 == xuu561",fontsize=16,color="magenta"];3100 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3100 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3101 -> 1353[label="",style="dashed", color="red", weight=0]; 3101[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3101 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3102 -> 1354[label="",style="dashed", color="red", weight=0]; 3102[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3102 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3103 -> 1355[label="",style="dashed", color="red", weight=0]; 3103[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3103 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3104 -> 1356[label="",style="dashed", color="red", weight=0]; 3104[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3104 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3105 -> 1357[label="",style="dashed", color="red", weight=0]; 3105[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3105 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3106 -> 1358[label="",style="dashed", color="red", weight=0]; 3106[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3106 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3107 -> 1359[label="",style="dashed", color="red", weight=0]; 3107[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3107 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3108 -> 1360[label="",style="dashed", color="red", weight=0]; 3108[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3108 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3109 -> 1361[label="",style="dashed", color="red", weight=0]; 3109[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3109 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3110 -> 1362[label="",style="dashed", color="red", weight=0]; 3110[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3110 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3111 -> 1363[label="",style="dashed", color="red", weight=0]; 3111[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3111 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3112 -> 1364[label="",style="dashed", color="red", weight=0]; 3112[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3112 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3113 -> 1365[label="",style="dashed", color="red", weight=0]; 3113[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3113 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3114 -> 1366[label="",style="dashed", color="red", weight=0]; 3114[label="xuu552 <= xuu562",fontsize=16,color="magenta"];3114 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3115[label="xuu561",fontsize=16,color="green",shape="box"];3116[label="xuu551",fontsize=16,color="green",shape="box"];3117[label="xuu561",fontsize=16,color="green",shape="box"];3118[label="xuu551",fontsize=16,color="green",shape="box"];3119[label="xuu561",fontsize=16,color="green",shape="box"];3120[label="xuu551",fontsize=16,color="green",shape="box"];3121[label="xuu561",fontsize=16,color="green",shape="box"];3122[label="xuu551",fontsize=16,color="green",shape="box"];3123[label="xuu561",fontsize=16,color="green",shape="box"];3124[label="xuu551",fontsize=16,color="green",shape="box"];3125[label="xuu561",fontsize=16,color="green",shape="box"];3126[label="xuu551",fontsize=16,color="green",shape="box"];3127[label="xuu561",fontsize=16,color="green",shape="box"];3128[label="xuu551",fontsize=16,color="green",shape="box"];3129[label="xuu561",fontsize=16,color="green",shape="box"];3130[label="xuu551",fontsize=16,color="green",shape="box"];3131[label="xuu561",fontsize=16,color="green",shape="box"];3132[label="xuu551",fontsize=16,color="green",shape="box"];3133[label="xuu561",fontsize=16,color="green",shape="box"];3134[label="xuu551",fontsize=16,color="green",shape="box"];3135[label="xuu561",fontsize=16,color="green",shape="box"];3136[label="xuu551",fontsize=16,color="green",shape="box"];3137[label="xuu561",fontsize=16,color="green",shape="box"];3138[label="xuu551",fontsize=16,color="green",shape="box"];3139[label="xuu561",fontsize=16,color="green",shape="box"];3140[label="xuu551",fontsize=16,color="green",shape="box"];3141[label="xuu561",fontsize=16,color="green",shape="box"];3142[label="xuu551",fontsize=16,color="green",shape="box"];3144 -> 1306[label="",style="dashed", color="red", weight=0]; 3144[label="FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3144 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3143[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 xuu214",fontsize=16,color="burlywood",shape="triangle"];4595[label="xuu214/False",fontsize=10,color="white",style="solid",shape="box"];3143 -> 4595[label="",style="solid", color="burlywood", weight=9]; 4595 -> 3214[label="",style="solid", color="burlywood", weight=3]; 4596[label="xuu214/True",fontsize=10,color="white",style="solid",shape="box"];3143 -> 4596[label="",style="solid", color="burlywood", weight=9]; 4596 -> 3215[label="",style="solid", color="burlywood", weight=3]; 3145[label="xuu384",fontsize=16,color="green",shape="box"];3146[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];3146 -> 3216[label="",style="solid", color="black", weight=3]; 3147 -> 3425[label="",style="dashed", color="red", weight=0]; 3147[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu380 xuu381 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu31 xuu33 xuu383) xuu384",fontsize=16,color="magenta"];3147 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3149[label="xuu263",fontsize=16,color="green",shape="box"];3150[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 True",fontsize=16,color="black",shape="box"];3150 -> 3218[label="",style="solid", color="black", weight=3]; 3151 -> 3425[label="",style="dashed", color="red", weight=0]; 3151[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu260 xuu261 xuu263 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu300 : xuu301) xuu31 xuu264 xuu34)",fontsize=16,color="magenta"];3151 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3459[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3152[label="error []",fontsize=16,color="red",shape="box"];3153 -> 3425[label="",style="dashed", color="red", weight=0]; 3153[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu300 : xuu301) xuu31 xuu26 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3153 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3463[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3464[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3465[label="",style="dashed", color="magenta", weight=3]; 3156[label="xuu551",fontsize=16,color="green",shape="box"];3157[label="xuu561",fontsize=16,color="green",shape="box"];3158[label="xuu551",fontsize=16,color="green",shape="box"];3159[label="xuu561",fontsize=16,color="green",shape="box"];3160[label="xuu551",fontsize=16,color="green",shape="box"];3161[label="xuu561",fontsize=16,color="green",shape="box"];3162[label="xuu551",fontsize=16,color="green",shape="box"];3163[label="xuu561",fontsize=16,color="green",shape="box"];3164[label="xuu551",fontsize=16,color="green",shape="box"];3165[label="xuu561",fontsize=16,color="green",shape="box"];3166[label="xuu551",fontsize=16,color="green",shape="box"];3167[label="xuu561",fontsize=16,color="green",shape="box"];3168[label="xuu551",fontsize=16,color="green",shape="box"];3169[label="xuu561",fontsize=16,color="green",shape="box"];3170[label="xuu551",fontsize=16,color="green",shape="box"];3171[label="xuu561",fontsize=16,color="green",shape="box"];3172[label="xuu551",fontsize=16,color="green",shape="box"];3173[label="xuu561",fontsize=16,color="green",shape="box"];3174[label="xuu551",fontsize=16,color="green",shape="box"];3175[label="xuu561",fontsize=16,color="green",shape="box"];3176[label="xuu551",fontsize=16,color="green",shape="box"];3177[label="xuu561",fontsize=16,color="green",shape="box"];3178[label="xuu551",fontsize=16,color="green",shape="box"];3179[label="xuu561",fontsize=16,color="green",shape="box"];3180[label="xuu551",fontsize=16,color="green",shape="box"];3181[label="xuu561",fontsize=16,color="green",shape="box"];3182[label="xuu551",fontsize=16,color="green",shape="box"];3183[label="xuu561",fontsize=16,color="green",shape="box"];3184[label="xuu562",fontsize=16,color="green",shape="box"];3185[label="xuu552",fontsize=16,color="green",shape="box"];3186[label="xuu562",fontsize=16,color="green",shape="box"];3187[label="xuu552",fontsize=16,color="green",shape="box"];3188[label="xuu562",fontsize=16,color="green",shape="box"];3189[label="xuu552",fontsize=16,color="green",shape="box"];3190[label="xuu562",fontsize=16,color="green",shape="box"];3191[label="xuu552",fontsize=16,color="green",shape="box"];3192[label="xuu562",fontsize=16,color="green",shape="box"];3193[label="xuu552",fontsize=16,color="green",shape="box"];3194[label="xuu562",fontsize=16,color="green",shape="box"];3195[label="xuu552",fontsize=16,color="green",shape="box"];3196[label="xuu562",fontsize=16,color="green",shape="box"];3197[label="xuu552",fontsize=16,color="green",shape="box"];3198[label="xuu562",fontsize=16,color="green",shape="box"];3199[label="xuu552",fontsize=16,color="green",shape="box"];3200[label="xuu562",fontsize=16,color="green",shape="box"];3201[label="xuu552",fontsize=16,color="green",shape="box"];3202[label="xuu562",fontsize=16,color="green",shape="box"];3203[label="xuu552",fontsize=16,color="green",shape="box"];3204[label="xuu562",fontsize=16,color="green",shape="box"];3205[label="xuu552",fontsize=16,color="green",shape="box"];3206[label="xuu562",fontsize=16,color="green",shape="box"];3207[label="xuu552",fontsize=16,color="green",shape="box"];3208[label="xuu562",fontsize=16,color="green",shape="box"];3209[label="xuu552",fontsize=16,color="green",shape="box"];3210[label="xuu562",fontsize=16,color="green",shape="box"];3211[label="xuu552",fontsize=16,color="green",shape="box"];3212 -> 389[label="",style="dashed", color="red", weight=0]; 3212[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3212 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3213 -> 1734[label="",style="dashed", color="red", weight=0]; 3213[label="FiniteMap.sizeFM xuu334",fontsize=16,color="magenta"];3213 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3214[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 False",fontsize=16,color="black",shape="box"];3214 -> 3247[label="",style="solid", color="black", weight=3]; 3215[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];3215 -> 3248[label="",style="solid", color="black", weight=3]; 3216[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="burlywood",shape="box"];4597[label="xuu383/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3216 -> 4597[label="",style="solid", color="burlywood", weight=9]; 4597 -> 3249[label="",style="solid", color="burlywood", weight=3]; 4598[label="xuu383/FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834",fontsize=10,color="white",style="solid",shape="box"];3216 -> 4598[label="",style="solid", color="burlywood", weight=9]; 4598 -> 3250[label="",style="solid", color="burlywood", weight=3]; 3451[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3452[label="xuu384",fontsize=16,color="green",shape="box"];3453 -> 3425[label="",style="dashed", color="red", weight=0]; 3453[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu31 xuu33 xuu383",fontsize=16,color="magenta"];3453 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3454[label="xuu380",fontsize=16,color="green",shape="box"];3455[label="xuu381",fontsize=16,color="green",shape="box"];3218[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34",fontsize=16,color="burlywood",shape="box"];4599[label="xuu264/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4599[label="",style="solid", color="burlywood", weight=9]; 4599 -> 3252[label="",style="solid", color="burlywood", weight=3]; 4600[label="xuu264/FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4600[label="",style="solid", color="burlywood", weight=9]; 4600 -> 3253[label="",style="solid", color="burlywood", weight=3]; 3456[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3457 -> 3425[label="",style="dashed", color="red", weight=0]; 3457[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu300 : xuu301) xuu31 xuu264 xuu34",fontsize=16,color="magenta"];3457 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3458[label="xuu263",fontsize=16,color="green",shape="box"];3459[label="xuu260",fontsize=16,color="green",shape="box"];3460[label="xuu261",fontsize=16,color="green",shape="box"];3461[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3462 -> 3425[label="",style="dashed", color="red", weight=0]; 3462[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3462 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3425[label="",style="dashed", color="red", weight=0]; 3463[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu300 : xuu301) xuu31 xuu26 xuu3433",fontsize=16,color="magenta"];3463 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3464[label="xuu3430",fontsize=16,color="green",shape="box"];3465[label="xuu3431",fontsize=16,color="green",shape="box"];3244 -> 1734[label="",style="dashed", color="red", weight=0]; 3244[label="FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3244 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3245[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3246[label="xuu334",fontsize=16,color="green",shape="box"];3247[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 otherwise",fontsize=16,color="black",shape="box"];3247 -> 3291[label="",style="solid", color="black", weight=3]; 3248[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38",fontsize=16,color="black",shape="box"];3248 -> 3292[label="",style="solid", color="black", weight=3]; 3249[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 FiniteMap.EmptyFM xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 FiniteMap.EmptyFM xuu384)",fontsize=16,color="black",shape="box"];3249 -> 3293[label="",style="solid", color="black", weight=3]; 3250[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 (FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834) xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 (FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834) xuu384)",fontsize=16,color="black",shape="box"];3250 -> 3294[label="",style="solid", color="black", weight=3]; 3602[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3603[label="xuu383",fontsize=16,color="green",shape="box"];3604[label="xuu33",fontsize=16,color="green",shape="box"];3605[label="[]",fontsize=16,color="green",shape="box"];3606[label="xuu31",fontsize=16,color="green",shape="box"];3252[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 FiniteMap.EmptyFM) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3252 -> 3297[label="",style="solid", color="black", weight=3]; 3253[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 (FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644)) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 (FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644)) xuu34",fontsize=16,color="black",shape="box"];3253 -> 3298[label="",style="solid", color="black", weight=3]; 3607[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3608[label="xuu34",fontsize=16,color="green",shape="box"];3609[label="xuu264",fontsize=16,color="green",shape="box"];3610[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3611[label="xuu31",fontsize=16,color="green",shape="box"];3612[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3613[label="xuu344",fontsize=16,color="green",shape="box"];3614[label="xuu3434",fontsize=16,color="green",shape="box"];3615[label="xuu340",fontsize=16,color="green",shape="box"];3616[label="xuu341",fontsize=16,color="green",shape="box"];3617[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3618[label="xuu3433",fontsize=16,color="green",shape="box"];3619[label="xuu26",fontsize=16,color="green",shape="box"];3620[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3621[label="xuu31",fontsize=16,color="green",shape="box"];3290[label="xuu333",fontsize=16,color="green",shape="box"];3291[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];3291 -> 3303[label="",style="solid", color="black", weight=3]; 3292 -> 3425[label="",style="dashed", color="red", weight=0]; 3292[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu330 xuu331 xuu333 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu31 xuu334 xuu38)",fontsize=16,color="magenta"];3292 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3293[label="error []",fontsize=16,color="red",shape="box"];3294 -> 3425[label="",style="dashed", color="red", weight=0]; 3294[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3830 xuu3831 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu31 xuu33 xuu3833) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu380 xuu381 xuu3834 xuu384)",fontsize=16,color="magenta"];3294 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3297[label="error []",fontsize=16,color="red",shape="box"];3298 -> 3425[label="",style="dashed", color="red", weight=0]; 3298[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2640 xuu2641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu260 xuu261 xuu263 xuu2643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu300 : xuu301) xuu31 xuu2644 xuu34)",fontsize=16,color="magenta"];3298 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3303[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38",fontsize=16,color="burlywood",shape="box"];4601[label="xuu334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4601[label="",style="solid", color="burlywood", weight=9]; 4601 -> 3347[label="",style="solid", color="burlywood", weight=3]; 4602[label="xuu334/FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4602[label="",style="solid", color="burlywood", weight=9]; 4602 -> 3348[label="",style="solid", color="burlywood", weight=3]; 3496[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3497 -> 3425[label="",style="dashed", color="red", weight=0]; 3497[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu31 xuu334 xuu38",fontsize=16,color="magenta"];3497 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3497 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3498[label="xuu333",fontsize=16,color="green",shape="box"];3499[label="xuu330",fontsize=16,color="green",shape="box"];3500[label="xuu331",fontsize=16,color="green",shape="box"];3501[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3502 -> 3425[label="",style="dashed", color="red", weight=0]; 3502[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu380 xuu381 xuu3834 xuu384",fontsize=16,color="magenta"];3502 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3425[label="",style="dashed", color="red", weight=0]; 3503[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu31 xuu33 xuu3833",fontsize=16,color="magenta"];3503 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3504[label="xuu3830",fontsize=16,color="green",shape="box"];3505[label="xuu3831",fontsize=16,color="green",shape="box"];3511[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3512 -> 3425[label="",style="dashed", color="red", weight=0]; 3512[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu300 : xuu301) xuu31 xuu2644 xuu34",fontsize=16,color="magenta"];3512 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3425[label="",style="dashed", color="red", weight=0]; 3513[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu260 xuu261 xuu263 xuu2643",fontsize=16,color="magenta"];3513 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3514[label="xuu2640",fontsize=16,color="green",shape="box"];3515[label="xuu2641",fontsize=16,color="green",shape="box"];3347[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) xuu38",fontsize=16,color="black",shape="box"];3347 -> 3647[label="",style="solid", color="black", weight=3]; 3348[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) xuu38",fontsize=16,color="black",shape="box"];3348 -> 3648[label="",style="solid", color="black", weight=3]; 3622[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3623[label="xuu38",fontsize=16,color="green",shape="box"];3624[label="xuu334",fontsize=16,color="green",shape="box"];3625[label="[]",fontsize=16,color="green",shape="box"];3626[label="xuu31",fontsize=16,color="green",shape="box"];3627[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3628[label="xuu384",fontsize=16,color="green",shape="box"];3629[label="xuu3834",fontsize=16,color="green",shape="box"];3630[label="xuu380",fontsize=16,color="green",shape="box"];3631[label="xuu381",fontsize=16,color="green",shape="box"];3632[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3633[label="xuu3833",fontsize=16,color="green",shape="box"];3634[label="xuu33",fontsize=16,color="green",shape="box"];3635[label="[]",fontsize=16,color="green",shape="box"];3636[label="xuu31",fontsize=16,color="green",shape="box"];3637[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3638[label="xuu34",fontsize=16,color="green",shape="box"];3639[label="xuu2644",fontsize=16,color="green",shape="box"];3640[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3641[label="xuu31",fontsize=16,color="green",shape="box"];3642[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3643[label="xuu2643",fontsize=16,color="green",shape="box"];3644[label="xuu263",fontsize=16,color="green",shape="box"];3645[label="xuu260",fontsize=16,color="green",shape="box"];3646[label="xuu261",fontsize=16,color="green",shape="box"];3647[label="error []",fontsize=16,color="red",shape="box"];3648 -> 3425[label="",style="dashed", color="red", weight=0]; 3648[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3340 xuu3341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu31 xuu3344 xuu38)",fontsize=16,color="magenta"];3648 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3650[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3651 -> 3425[label="",style="dashed", color="red", weight=0]; 3651[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu31 xuu3344 xuu38",fontsize=16,color="magenta"];3651 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3425[label="",style="dashed", color="red", weight=0]; 3652[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343",fontsize=16,color="magenta"];3652 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3652 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3653[label="xuu3340",fontsize=16,color="green",shape="box"];3654[label="xuu3341",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="xuu38",fontsize=16,color="green",shape="box"];3658[label="xuu3344",fontsize=16,color="green",shape="box"];3659[label="[]",fontsize=16,color="green",shape="box"];3660[label="xuu31",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="xuu3343",fontsize=16,color="green",shape="box"];3663[label="xuu333",fontsize=16,color="green",shape="box"];3664[label="xuu330",fontsize=16,color="green",shape="box"];3665[label="xuu331",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(xuu400000), Succ(xuu30000)) -> new_primCmpNat(xuu400000, xuu30000) 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(xuu400000), Succ(xuu30000)) -> new_primCmpNat(xuu400000, xuu30000) 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_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs3(xuu82, xuu85, cde, cdf, cdg) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_@2, gd), ge))) -> new_ltEs0(xuu551, xuu561, gd, ge) new_compare21(xuu62, xuu63, False, app(app(ty_Either, caf), cag), cab) -> new_ltEs2(xuu62, xuu63, caf, cag) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(app(ty_@3, bcf), bcg), bch)), bbh)) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) new_ltEs(xuu55, xuu56, ga) -> new_compare(xuu55, xuu56, ga) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_@2, bha), bhb), bed, bfg) -> new_lt0(xuu550, xuu560, bha, bhb) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_@2, bfh), bga)), bfg)) -> new_lt0(xuu551, xuu561, bfh, bga) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_[], hd)), he)) -> new_lt(xuu550, xuu560, hd) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_[], bff), bfg) -> new_lt(xuu551, xuu561, bff) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_Maybe, cfe), ccf, cea) -> new_lt1(xuu80, xuu83, cfe) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_Maybe, gf))) -> new_ltEs1(xuu551, xuu561, gf) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_Maybe, bde))) -> new_ltEs1(xuu550, xuu560, bde) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_[], bgh)), bed), bfg)) -> new_lt(xuu550, xuu560, bgh) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(app(ty_@3, bhf), bhg), bhh)), bed), bfg)) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_Maybe, bhc), bed, bfg) -> new_lt1(xuu550, xuu560, bhc) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_@2, cfc), cfd), ccf, cea) -> new_lt0(xuu80, xuu83, cfc, cfd) new_lt1(xuu96, xuu98, dh) -> new_compare3(xuu96, xuu98, dh) new_ltEs1(Just(xuu550), Just(xuu560), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_Maybe, bhc)), bed), bfg)) -> new_lt1(xuu550, xuu560, bhc) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_Maybe, beh))) -> new_ltEs1(xuu552, xuu562, beh) new_ltEs2(Left(xuu550), Left(xuu560), app(ty_[], bbg), bbh) -> new_ltEs(xuu550, xuu560, bbg) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(app(ty_@3, ec), ed), ee), de) -> new_compare5(xuu96, xuu98, ec, ed, ee) new_compare5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bg, bh, ca) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_@2, gd), ge)) -> new_ltEs0(xuu551, xuu561, gd, ge) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_Either, bdf), bdg))) -> new_ltEs2(xuu550, xuu560, bdf, bdg) new_compare21(xuu62, xuu63, False, app(ty_[], caa), cab) -> new_ltEs(xuu62, xuu63, caa) new_compare22(xuu69, xuu70, False, cbc, app(ty_[], cbd)) -> new_ltEs(xuu69, xuu70, cbd) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_[], eg)) -> new_ltEs(xuu97, xuu99, eg) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(xuu551, xuu561, gg, gh) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_[], ccg)) -> new_ltEs(xuu82, xuu85, ccg) new_lt3(xuu96, xuu98, ec, ed, ee) -> new_compare5(xuu96, xuu98, ec, ed, ee) new_compare21(xuu62, xuu63, False, app(ty_Maybe, cae), cab) -> new_ltEs1(xuu62, xuu63, cae) new_compare22(xuu69, xuu70, False, cbc, app(ty_Maybe, cbg)) -> new_ltEs1(xuu69, xuu70, cbg) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_[], cdh), cea) -> new_lt(xuu81, xuu84, cdh) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_Either, fc), fd)) -> new_ltEs2(xuu97, xuu99, fc, fd) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_@2, eh), fa)) -> new_ltEs0(xuu97, xuu99, eh, fa) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(app(ty_@3, cfh), cga), cgb), ccf, cea) -> new_lt3(xuu80, xuu83, cfh, cga, cgb) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(xuu550, xuu560, baf) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs3(xuu97, xuu99, ff, fg, fh) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(xuu550, xuu560, bag, bah) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(xuu550, xuu560, bdc, bdd) new_compare1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bb, bc) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_Either, bfa), bfb))) -> new_ltEs2(xuu552, xuu562, bfa, bfb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(app(ty_@3, bac), bad), bae), he) -> new_lt3(xuu550, xuu560, bac, bad, bae) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(xuu552, xuu562, bef, beg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_@2, bef), beg))) -> new_ltEs0(xuu552, xuu562, bef, beg) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_@2, df), dg), de) -> new_compare1(xuu96, xuu98, df, dg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_[], bff)), bfg)) -> new_lt(xuu551, xuu561, bff) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_@2, bha), bhb)), bed), bfg)) -> new_lt0(xuu550, xuu560, bha, bhb) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_Either, cff), cfg), ccf, cea) -> new_lt2(xuu80, xuu83, cff, cfg) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(xuu550, xuu560, bbg) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_@2, bfh), bga), bfg) -> new_lt0(xuu551, xuu561, bfh, bga) new_compare20(xuu55, xuu56, False, app(ty_[], ga)) -> new_compare(xuu55, xuu56, ga) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(xuu550, xuu560, bca, bcb) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(app(ty_@3, bac), bad), bae)), he)) -> new_lt3(xuu550, xuu560, bac, bad, bae) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_Maybe, fb)) -> new_ltEs1(xuu97, xuu99, fb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_@2, hf), hg), he) -> new_lt0(xuu550, xuu560, hf, hg) new_compare21(xuu62, xuu63, False, app(app(ty_@2, cac), cad), cab) -> new_ltEs0(xuu62, xuu63, cac, cad) new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cb)) -> new_compare(xuu34, xuu35, cb) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_@2, cch), cda)) -> new_ltEs0(xuu82, xuu85, cch, cda) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_Either, cdc), cdd)) -> new_ltEs2(xuu82, xuu85, cdc, cdd) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs2(xuu550, xuu560, bbb, bbc) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_Maybe, bde)) -> new_ltEs1(xuu550, xuu560, bde) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(app(ty_@3, bge), bgf), bgg)), bfg)) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_Maybe, bgb)), bfg)) -> new_lt1(xuu551, xuu561, bgb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_Maybe, hh), he) -> new_lt1(xuu550, xuu560, hh) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_Maybe, cdb)) -> new_ltEs1(xuu82, xuu85, cdb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_Either, baa), bab), he) -> new_lt2(xuu550, xuu560, baa, bab) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(app(ty_@3, bhf), bhg), bhh), bed, bfg) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) new_compare4(Left(xuu40000), Left(xuu3000), be, bf) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_Maybe, hh)), he)) -> new_lt1(xuu550, xuu560, hh) new_ltEs1(Just(xuu550), Just(xuu560), app(ty_Maybe, bba)) -> new_ltEs1(xuu550, xuu560, bba) new_compare21(xuu62, xuu63, False, app(app(app(ty_@3, cah), cba), cbb), cab) -> new_ltEs3(xuu62, xuu63, cah, cba, cbb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_Maybe, gf)) -> new_ltEs1(xuu551, xuu561, gf) new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, ba) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, ba), app(ty_[], ba)) new_primCompAux0(xuu34, xuu35, EQ, app(ty_Maybe, ce)) -> new_compare3(xuu34, xuu35, ce) new_lt2(xuu96, xuu98, ea, eb) -> new_compare4(xuu96, xuu98, ea, eb) new_ltEs2(Left(xuu550), Left(xuu560), app(ty_Maybe, bcc), bbh) -> new_ltEs1(xuu550, xuu560, bcc) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_Either, bhd), bhe), bed, bfg) -> new_lt2(xuu550, xuu560, bhd, bhe) new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_Either, cee), cef), cea) -> new_lt2(xuu81, xuu84, cee, cef) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_Either, bhd), bhe)), bed), bfg)) -> new_lt2(xuu550, xuu560, bhd, bhe) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(xuu550, xuu560, bdc, bdd) new_compare4(Right(xuu40000), Right(xuu3000), be, bf) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_primCompAux0(xuu34, xuu35, EQ, app(app(ty_@2, cc), cd)) -> new_compare1(xuu34, xuu35, cc, cd) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_Maybe, ced), cea) -> new_lt1(xuu81, xuu84, ced) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_Maybe, beh)) -> new_ltEs1(xuu552, xuu562, beh) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_[], gc))) -> new_ltEs(xuu551, xuu561, gc) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_[], hd), he) -> new_lt(xuu550, xuu560, hd) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_Maybe, bgb), bfg) -> new_lt1(xuu551, xuu561, bgb) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_[], bgh), bed, bfg) -> new_lt(xuu550, xuu560, bgh) new_compare3(Just(xuu40000), Just(xuu3000), bd) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_Either, baa), bab)), he)) -> new_lt2(xuu550, xuu560, baa, bab) new_compare22(xuu69, xuu70, False, cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(xuu69, xuu70, cbe, cbf) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu550, xuu560, bba) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_Either, bcd), bce)), bbh)) -> new_ltEs2(xuu550, xuu560, bcd, bce) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_Either, bgc), bgd), bfg) -> new_lt2(xuu551, xuu561, bgc, bgd) new_compare22(xuu69, xuu70, False, cbc, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs3(xuu69, xuu70, ccb, ccc, ccd) new_lt0(xuu96, xuu98, df, dg) -> new_compare1(xuu96, xuu98, df, dg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_[], bee))) -> new_ltEs(xuu552, xuu562, bee) new_lt(xuu96, xuu98, dd) -> new_compare(xuu96, xuu98, dd) new_ltEs2(Left(xuu550), Left(xuu560), app(app(app(ty_@3, bcf), bcg), bch), bbh) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_Either, ea), eb), de) -> new_compare4(xuu96, xuu98, ea, eb) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_Either, bdf), bdg)) -> new_ltEs2(xuu550, xuu560, bdf, bdg) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_Either, bfa), bfb)) -> new_ltEs2(xuu552, xuu562, bfa, bfb) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_[], gc)) -> new_ltEs(xuu551, xuu561, gc) new_compare22(xuu69, xuu70, False, cbc, app(app(ty_Either, cbh), cca)) -> new_ltEs2(xuu69, xuu70, cbh, cca) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_@2, hf), hg)), he)) -> new_lt0(xuu550, xuu560, hf, hg) new_primCompAux0(xuu34, xuu35, EQ, app(app(ty_Either, cf), cg)) -> new_compare4(xuu34, xuu35, cf, cg) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_[], dd), de) -> new_compare(xuu96, xuu98, dd) new_primCompAux0(xuu34, xuu35, EQ, app(app(app(ty_@3, da), db), dc)) -> new_compare5(xuu34, xuu35, da, db, dc) new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], h)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_@2, ceb), cec), cea) -> new_lt0(xuu81, xuu84, ceb, cec) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_[], bee)) -> new_ltEs(xuu552, xuu562, bee) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(app(ty_@3, ceg), ceh), cfa), cea) -> new_lt3(xuu81, xuu84, ceg, ceh, cfa) new_primCompAux(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, bb), bc)) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_Maybe, bcc)), bbh)) -> new_ltEs1(xuu550, xuu560, bcc) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(xuu551, xuu561, gg, gh) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(app(ty_@3, bbd), bbe), bbf))) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bd)) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(xuu550, xuu560, bdb) new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_Either, bcd), bce), bbh) -> new_ltEs2(xuu550, xuu560, bcd, bce) new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bg), bh), ca)) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_[], cfb), ccf, cea) -> new_lt(xuu80, xuu83, cfb) new_ltEs1(Just(xuu550), Just(xuu560), app(ty_[], baf)) -> new_ltEs(xuu550, xuu560, baf) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_Either, bgc), bgd)), bfg)) -> new_lt2(xuu551, xuu561, bgc, bgd) new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(xuu550, xuu560, bca, bcb) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_[], bdb)) -> new_ltEs(xuu550, xuu560, bdb) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_Maybe, dh), de) -> new_compare3(xuu96, xuu98, dh) new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_Either, bbb), bbc)) -> new_ltEs2(xuu550, xuu560, bbb, bbc) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(app(ty_@3, bge), bgf), bgg), bfg) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_@2, bag), bah)) -> new_ltEs0(xuu550, xuu560, bag, bah) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs15(xuu552, xuu562, bfc, bfd, bfe) new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, ba) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, ba), app(ty_[], ba)) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, bfg) -> new_pePe(new_lt23(xuu550, xuu560, bec), new_asAs(new_esEs36(xuu550, xuu560, bec), new_pePe(new_lt22(xuu551, xuu561, bed), new_asAs(new_esEs37(xuu551, xuu561, bed), new_ltEs22(xuu552, xuu562, bfg))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, fdf), fdg), fdh)) -> new_esEs19(xuu40000, xuu3000, fdf, fdg, fdh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(xuu551, xuu561, bge, bgf, bgg) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, baa), bab)) -> new_esEs24(xuu550, xuu560, baa, bab) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bg, bh, ca) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, cge) -> True new_lt23(xuu550, xuu560, app(ty_[], bgh)) -> new_lt11(xuu550, xuu560, bgh) new_ltEs4(Just(xuu550), Nothing, cge) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, egh)) -> new_esEs12(xuu40001, xuu3001, egh) new_compare111(xuu153, xuu154, xuu155, xuu156, False, eha, ehb) -> GT new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bb, bc) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, efd) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, dgg, cab) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, dgg), dgg, cab) new_ltEs22(xuu552, xuu562, app(ty_Maybe, beh)) -> new_ltEs4(xuu552, xuu562, beh) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, bba)) -> new_ltEs4(xuu550, xuu560, bba) new_compare30(Left(xuu40000), Left(xuu3000), be, bf) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_esEs9(xuu40000, xuu3000, app(ty_[], dhc)) -> new_esEs23(xuu40000, xuu3000, dhc) new_lt9(xuu80, xuu83, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt17(xuu80, xuu83, cfh, cga, cgb) new_ltEs19(xuu62, xuu63, app(ty_[], caa)) -> new_ltEs6(xuu62, xuu63, caa) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, bbh) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], dch)) -> new_esEs23(xuu40000, xuu3000, dch) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, dec, ded, dee) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, dec, ded, dee) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, fbd), fbe)) -> new_esEs29(xuu400001, xuu30001, fbd, fbe) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, bhd), bhe)) -> new_lt15(xuu550, xuu560, bhd, bhe) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, ech)) -> new_esEs12(xuu40002, xuu3002, ech) new_esEs35(xuu96, xuu98, app(ty_Maybe, dh)) -> new_esEs25(xuu96, xuu98, dh) new_compare0(xuu4000, xuu300, app(app(ty_Either, be), bf)) -> new_compare30(xuu4000, xuu300, be, bf) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_ltEs18(xuu82, xuu85, app(ty_Ratio, dgf)) -> new_ltEs7(xuu82, xuu85, dgf) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, cgd) -> new_esEs17(new_compare6(xuu96, xuu98, cgd), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, bfh), bga)) -> new_lt7(xuu551, xuu561, bfh, bga) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), efe, eff) -> new_asAs(new_esEs38(xuu400000, xuu30000, efe), new_esEs39(xuu400001, xuu30001, eff)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, eeg)) -> new_lt4(xuu551, xuu561, eeg) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, faf), fag)) -> new_esEs24(xuu400001, xuu30001, faf, fag) new_esEs10(xuu40001, xuu3001, app(ty_[], eae)) -> new_esEs23(xuu40001, xuu3001, eae) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, efd) -> new_esEs26(xuu400000, xuu30000) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_Maybe, fgd)) -> new_esEs25(xuu400000, xuu30000, fgd) new_esEs34(xuu550, xuu560, app(app(ty_@2, hf), hg)) -> new_esEs29(xuu550, xuu560, hf, hg) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_Maybe, bde)) -> new_ltEs4(xuu550, xuu560, bde) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, dec, ded, dee) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, dff), dfg)) -> new_esEs29(xuu400000, xuu30000, dff, dfg) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs32(xuu80, xuu83, app(ty_[], cfb)) -> new_esEs23(xuu80, xuu83, cfb) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, cfe)) -> new_lt12(xuu80, xuu83, cfe) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs15(xuu550, xuu560, bbd, bbe, bbf) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, eed) -> GT new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(ty_@2, gb), he)) -> new_ltEs8(xuu55, xuu56, gb, he) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs19(xuu81, xuu84, ceg, ceh, cfa) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, bbh) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, fbh), fca)) -> new_esEs24(xuu40000, xuu3000, fbh, fca) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs19(xuu40001, xuu3001, eba, ebb, ebc) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, fhd), bbh) -> new_ltEs7(xuu550, xuu560, fhd) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, eh), fa)) -> new_ltEs8(xuu97, xuu99, eh, fa) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], hd)) -> new_lt11(xuu550, xuu560, hd) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, edc), edd)) -> new_esEs24(xuu40000, xuu3000, edc, edd) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, dgc) -> new_fsEs(new_compare6(xuu55, xuu56, dgc)) new_lt20(xuu550, xuu560, app(ty_Maybe, hh)) -> new_lt12(xuu550, xuu560, hh) new_esEs36(xuu550, xuu560, app(app(ty_@2, bha), bhb)) -> new_esEs29(xuu550, xuu560, bha, bhb) new_lt12(xuu96, xuu98, dh) -> new_esEs17(new_compare29(xuu96, xuu98, dh), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], chb)) -> new_esEs23(xuu400000, xuu30000, chb) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, ced)) -> new_esEs25(xuu81, xuu84, ced) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(ty_Either, fgb), fgc)) -> new_esEs24(xuu400000, xuu30000, fgb, fgc) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, ddb), ddc)) -> new_esEs24(xuu400000, xuu30000, ddb, ddc) new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_esEs21(xuu400001, xuu30001, app(ty_Ratio, dbe)) -> new_esEs12(xuu400001, xuu30001, dbe) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, dfh)) -> new_esEs12(xuu400000, xuu30000, dfh) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_esEs27(@0, @0) -> True new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs33(xuu81, xuu84, app(ty_Ratio, dge)) -> new_esEs12(xuu81, xuu84, dge) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], h)) -> new_compare15(xuu4000, xuu300, h) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, dhf)) -> new_esEs25(xuu40000, xuu3000, dhf) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_esEs24(Left(xuu400000), Right(xuu30000), efc, efd) -> False new_esEs24(Right(xuu400000), Left(xuu30000), efc, efd) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, bgb)) -> new_lt12(xuu551, xuu561, bgb) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_[], fga)) -> new_esEs23(xuu400000, xuu30000, fga) new_esEs23(:(xuu400000, xuu400001), [], dch) -> False new_esEs23([], :(xuu30000, xuu30001), dch) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, eec)) -> new_esEs12(xuu40000, xuu3000, eec) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, fde)) -> new_esEs25(xuu40000, xuu3000, fde) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, h) new_ltEs19(xuu62, xuu63, app(app(ty_@2, cac), cad)) -> new_ltEs8(xuu62, xuu63, cac, cad) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], fbg)) -> new_esEs23(xuu40000, xuu3000, fbg) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, da), db), dc)) -> new_compare26(xuu34, xuu35, da, db, dc) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, che)) -> new_esEs25(xuu400000, xuu30000, che) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, dae), daf)) -> new_esEs24(xuu400001, xuu30001, dae, daf) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, eah)) -> new_esEs25(xuu40001, xuu3001, eah) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs15(xuu551, xuu561, ha, hb, hc) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, dgc)) -> new_ltEs7(xuu55, xuu56, dgc) new_esEs32(xuu80, xuu83, app(ty_Maybe, cfe)) -> new_esEs25(xuu80, xuu83, cfe) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, bbh) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, deb)) -> new_esEs12(xuu400000, xuu30000, deb) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs19(xuu400000, xuu30000, chf, chg, chh) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, cc), cd)) -> new_compare17(xuu34, xuu35, cc, cd) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cf), cg)) -> new_compare30(xuu34, xuu35, cf, cg) new_esEs32(xuu80, xuu83, app(app(ty_Either, cff), cfg)) -> new_esEs24(xuu80, xuu83, cff, cfg) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fec)) -> new_esEs12(xuu40000, xuu3000, fec) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Char) -> new_ltEs17(xuu550, xuu560) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_compare30(Left(xuu40000), Right(xuu3000), be, bf) -> LT new_lt21(xuu96, xuu98, app(app(ty_Either, ea), eb)) -> new_lt15(xuu96, xuu98, ea, eb) new_esEs37(xuu551, xuu561, app(app(ty_@2, bfh), bga)) -> new_esEs29(xuu551, xuu561, bfh, bga) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, ecc), ecd), ece)) -> new_esEs19(xuu40002, xuu3002, ecc, ecd, ece) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, ebh), eca)) -> new_esEs24(xuu40002, xuu3002, ebh, eca) new_compare210(xuu55, xuu56, False, fed) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, fed), fed) new_ltEs23(xuu55, xuu56, app(ty_[], ga)) -> new_ltEs6(xuu55, xuu56, ga) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, eha, ehb) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(ty_@2, fgh), fha)) -> new_esEs29(xuu400000, xuu30000, fgh, fha) new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, cbe), cbf)) -> new_ltEs8(xuu69, xuu70, cbe, cbf) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs19(xuu550, xuu560, bhf, bhg, bhh) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, ec, ed, ee) -> new_esEs17(new_compare26(xuu96, xuu98, ec, ed, ee), LT) new_lt8(xuu81, xuu84, app(ty_[], cdh)) -> new_lt11(xuu81, xuu84, cdh) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), cge) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, dd) -> new_esEs17(new_compare15(xuu96, xuu98, dd), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, dec, ded, dee) -> GT new_compare16(xuu137, xuu138, True, dga, dgb) -> LT new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], dd)) -> new_lt11(xuu96, xuu98, dd) new_esEs36(xuu550, xuu560, app(app(ty_Either, bhd), bhe)) -> new_esEs24(xuu550, xuu560, bhd, bhe) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, eee)) -> new_compare6(xuu34, xuu35, eee) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, ecb)) -> new_esEs25(xuu40002, xuu3002, ecb) new_esEs7(xuu40000, xuu3000, app(ty_[], fdb)) -> new_esEs23(xuu40000, xuu3000, fdb) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, ecf), ecg)) -> new_esEs29(xuu40002, xuu3002, ecf, ecg) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs19(xuu40000, xuu3000, cgg, cgh, cha) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, bgc), bgd)) -> new_lt15(xuu551, xuu561, bgc, bgd) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, deh), dfa)) -> new_esEs24(xuu400000, xuu30000, deh, dfa) new_compare0(xuu4000, xuu300, app(app(ty_@2, bb), bc)) -> new_compare17(xuu4000, xuu300, bb, bc) new_compare29(Just(xuu40000), Nothing, bd) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, cce, ccf, cea) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], ccg)) -> new_ltEs6(xuu82, xuu85, ccg) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs19(xuu40001, xuu3001, egc, egd, ege) new_ltEs24(xuu69, xuu70, app(ty_[], cbd)) -> new_ltEs6(xuu69, xuu70, cbd) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, efh), ega)) -> new_esEs24(xuu40001, xuu3001, efh, ega) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, bcf), bcg), bch), bbh) -> new_ltEs15(xuu550, xuu560, bcf, bcg, bch) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, egb)) -> new_esEs25(xuu40001, xuu3001, egb) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), cgg, cgh, cha) -> new_asAs(new_esEs20(xuu400000, xuu30000, cgg), new_asAs(new_esEs21(xuu400001, xuu30001, cgh), new_esEs22(xuu400002, xuu30002, cha))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, app(ty_[], bee)) -> new_ltEs6(xuu552, xuu562, bee) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, def)) -> new_esEs25(xuu40000, xuu3000, def) new_esEs22(xuu400002, xuu30002, app(ty_[], dbf)) -> new_esEs23(xuu400002, xuu30002, dbf) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, fff), ffg), efd) -> new_esEs29(xuu400000, xuu30000, fff, ffg) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs19(xuu96, xuu98, ec, ed, ee) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs13(LT, LT) -> True new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, bbh) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, ddh), dea)) -> new_esEs29(xuu400000, xuu30000, ddh, dea) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, efc), efd)) -> new_esEs24(xuu40000, xuu3000, efc, efd) new_lt21(xuu96, xuu98, app(app(app(ty_@3, ec), ed), ee)) -> new_lt17(xuu96, xuu98, ec, ed, ee) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, efd) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], bbg), bbh) -> new_ltEs6(xuu550, xuu560, bbg) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, ffb), efd) -> new_esEs25(xuu400000, xuu30000, ffb) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), bd) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], gc)) -> new_ltEs6(xuu551, xuu561, gc) new_esEs36(xuu550, xuu560, app(ty_Maybe, bhc)) -> new_esEs25(xuu550, xuu560, bhc) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, baa), bab)) -> new_lt15(xuu550, xuu560, baa, bab) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, ebd), ebe)) -> new_esEs29(xuu40001, xuu3001, ebd, ebe) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs19(xuu400000, xuu30000, ehg, ehh, faa) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, efd) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, ceb), cec)) -> new_esEs29(xuu81, xuu84, ceb, cec) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, bgc), bgd)) -> new_esEs24(xuu551, xuu561, bgc, bgd) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, ehd), ehe)) -> new_esEs24(xuu400000, xuu30000, ehd, ehe) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], cfb)) -> new_lt11(xuu80, xuu83, cfb) new_compare30(Right(xuu40000), Right(xuu3000), be, bf) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, bbb), bbc)) -> new_ltEs11(xuu550, xuu560, bbb, bbc) new_esEs37(xuu551, xuu561, app(ty_Maybe, bgb)) -> new_esEs25(xuu551, xuu561, bgb) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, fda)) -> new_compare6(xuu4000, xuu300, fda) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, ehf)) -> new_esEs25(xuu400000, xuu30000, ehf) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], dch) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, bac), bad), bae)) -> new_lt17(xuu550, xuu560, bac, bad, bae) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, cfc), cfd)) -> new_esEs29(xuu80, xuu83, cfc, cfd) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, fhc) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_lt7(xuu96, xuu98, df, dg) -> new_esEs17(new_compare17(xuu96, xuu98, df, dg), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs19(xuu551, xuu561, bge, bgf, bgg) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], eg)) -> new_ltEs6(xuu97, xuu99, eg) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, bef), beg)) -> new_ltEs8(xuu552, xuu562, bef, beg) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, fhc) -> LT new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs19(xuu550, xuu560, bac, bad, bae) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fdc), fdd)) -> new_esEs24(xuu40000, xuu3000, fdc, fdd) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, dcg)) -> new_esEs12(xuu400002, xuu30002, dcg) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, bbh) -> new_ltEs17(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(app(ty_@2, daa), dab)) -> new_esEs29(xuu400000, xuu30000, daa, dab) new_esEs32(xuu80, xuu83, app(ty_Ratio, dgd)) -> new_esEs12(xuu80, xuu83, dgd) new_ltEs13(GT, GT) -> True new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, ef, de) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, ef), new_asAs(new_esEs35(xuu96, xuu98, ef), new_ltEs21(xuu97, xuu99, de)), ef, de) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], bgh)) -> new_esEs23(xuu550, xuu560, bgh) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, eha, ehb) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, eha, ehb) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, eef)) -> new_lt4(xuu550, xuu560, eef) new_esEs31(xuu400000, xuu30000, app(ty_[], dda)) -> new_esEs23(xuu400000, xuu30000, dda) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, efa, efb) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), dch) -> new_asAs(new_esEs31(xuu400000, xuu30000, dch), new_esEs23(xuu400001, xuu30001, dch)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, fah)) -> new_esEs25(xuu400001, xuu30001, fah) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, dec, ded, dee) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, dec, ded, dee) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, feh), ffa), efd) -> new_esEs24(xuu400000, xuu30000, feh, ffa) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, bbh) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs15(xuu550, xuu560, bdh, bea, beb) new_compare16(xuu137, xuu138, False, dga, dgb) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, ce)) -> new_compare29(xuu34, xuu35, ce) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, hh)) -> new_esEs25(xuu550, xuu560, hh) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs19(xuu400001, xuu30001, fba, fbb, fbc) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, bag), bah)) -> new_ltEs8(xuu550, xuu560, bag, bah) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, ead)) -> new_esEs12(xuu40000, xuu3000, ead) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, ea), eb)) -> new_esEs24(xuu96, xuu98, ea, eb) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, efd) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), bda, bbh) -> True new_compare15([], [], h) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), cgc) -> new_asAs(new_esEs13(xuu400000, xuu30000, cgc), new_esEs14(xuu400001, xuu30001, cgc)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, bcc), bbh) -> new_ltEs4(xuu550, xuu560, bcc) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, dfb)) -> new_esEs25(xuu400000, xuu30000, dfb) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, df), dg)) -> new_esEs29(xuu96, xuu98, df, dg) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], dad)) -> new_esEs23(xuu400001, xuu30001, dad) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs8(xuu40000, xuu3000, app(ty_[], edb)) -> new_esEs23(xuu40000, xuu3000, edb) new_ltEs13(LT, GT) -> True new_esEs33(xuu81, xuu84, app(app(ty_Either, cee), cef)) -> new_esEs24(xuu81, xuu84, cee, cef) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, fab), fac)) -> new_esEs29(xuu400000, xuu30000, fab, fac) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], fae)) -> new_esEs23(xuu400001, xuu30001, fae) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, eaf), eag)) -> new_esEs24(xuu40001, xuu3001, eaf, eag) new_compare25(xuu62, xuu63, True, dgg, cab) -> EQ new_compare210(xuu55, xuu56, True, fed) -> EQ new_lt22(xuu551, xuu561, app(ty_[], bff)) -> new_lt11(xuu551, xuu561, bff) new_lt23(xuu550, xuu560, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_lt17(xuu550, xuu560, bhf, bhg, bhh) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_ltEs22(xuu552, xuu562, app(ty_Ratio, eeh)) -> new_ltEs7(xuu552, xuu562, eeh) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, eha, ehb) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, eha, ehb) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs19(xuu40000, xuu3000, edf, edg, edh) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs19(xuu400000, xuu30000, dfc, dfd, dfe) new_compare7(EQ, GT) -> LT new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs19(xuu400000, xuu30000, dde, ddf, ddg) new_lt8(xuu81, xuu84, app(ty_Maybe, ced)) -> new_lt12(xuu81, xuu84, ced) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_lt8(xuu81, xuu84, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt17(xuu81, xuu84, ceg, ceh, cfa) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, fcb)) -> new_esEs25(xuu40000, xuu3000, fcb) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, fch)) -> new_esEs12(xuu40000, xuu3000, fch) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, efd) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, efe), eff)) -> new_esEs29(xuu40000, xuu3000, efe, eff) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs15(xuu97, xuu99, ff, fg, fh) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ebf)) -> new_esEs12(xuu40001, xuu3001, ebf) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, ddd)) -> new_esEs25(xuu400000, xuu30000, ddd) new_compare8(True, True) -> EQ new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, efd) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), bda, bbh) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, fef)) -> new_ltEs7(xuu69, xuu70, fef) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_[], bdb)) -> new_ltEs6(xuu550, xuu560, bdb) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_Ratio, fhb)) -> new_esEs12(xuu400000, xuu30000, fhb) new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs19(xuu40000, xuu3000, fcc, fcd, fce) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, cea) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, cce), new_asAs(new_esEs32(xuu80, xuu83, cce), new_pePe(new_lt8(xuu81, xuu84, ccf), new_asAs(new_esEs33(xuu81, xuu84, ccf), new_ltEs18(xuu82, xuu85, cea)))), cce, ccf, cea) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ede)) -> new_esEs25(xuu40000, xuu3000, ede) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, cgf)) -> new_ltEs7(xuu550, xuu560, cgf) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, cee), cef)) -> new_lt15(xuu81, xuu84, cee, cef) new_compare15([], :(xuu3000, xuu3001), h) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, chc), chd)) -> new_esEs24(xuu400000, xuu30000, chc, chd) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, bbh) -> new_ltEs13(xuu550, xuu560) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, bcd), bce), bbh) -> new_ltEs11(xuu550, xuu560, bcd, bce) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(xuu82, xuu85, cde, cdf, cdg) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs19(xuu400001, xuu30001, dah, dba, dbb) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_compare19(xuu130, xuu131, False, efa, efb) -> GT new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, app(ty_Maybe, dag)) -> new_esEs25(xuu400001, xuu30001, dag) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, dac)) -> new_esEs12(xuu400000, xuu30000, dac) new_ltEs20(xuu551, xuu561, app(app(ty_@2, gd), ge)) -> new_ltEs8(xuu551, xuu561, gd, ge) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], efg)) -> new_esEs23(xuu40001, xuu3001, efg) new_lt15(xuu96, xuu98, ea, eb) -> new_esEs17(new_compare30(xuu96, xuu98, ea, eb), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, dh)) -> new_lt12(xuu96, xuu98, dh) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs19(xuu80, xuu83, cfh, cga, cgb) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs15(xuu62, xuu63, cah, cba, cbb) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], deg)) -> new_esEs23(xuu400000, xuu30000, deg) new_lt9(xuu80, xuu83, app(app(ty_Either, cff), cfg)) -> new_lt15(xuu80, xuu83, cff, cfg) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, fbf)) -> new_esEs12(xuu400001, xuu30001, fbf) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs8(xuu550, xuu560, bdc, bdd) new_compare29(Just(xuu40000), Just(xuu3000), bd) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, eda)) -> new_ltEs7(xuu97, xuu99, eda) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, bbh) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, cbg)) -> new_ltEs4(xuu69, xuu70, cbg) new_compare15(:(xuu40000, xuu40001), [], h) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_ltEs20(xuu551, xuu561, app(app(ty_Either, gg), gh)) -> new_ltEs11(xuu551, xuu561, gg, gh) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs15(xuu69, xuu70, ccb, ccc, ccd) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dhd), dhe)) -> new_esEs24(xuu40000, xuu3000, dhd, dhe) new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt8(xuu81, xuu84, app(ty_Ratio, dge)) -> new_lt4(xuu81, xuu84, dge) new_ltEs18(xuu82, xuu85, app(app(ty_@2, cch), cda)) -> new_ltEs8(xuu82, xuu85, cch, cda) new_lt20(xuu550, xuu560, app(ty_Ratio, dha)) -> new_lt4(xuu550, xuu560, dha) new_lt20(xuu550, xuu560, app(app(ty_@2, hf), hg)) -> new_lt7(xuu550, xuu560, hf, hg) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ffc), ffd), ffe), efd) -> new_esEs19(xuu400000, xuu30000, ffc, ffd, ffe) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs19(xuu40000, xuu3000, dhg, dhh, eaa) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, dca)) -> new_esEs25(xuu400002, xuu30002, dca) new_ltEs18(xuu82, xuu85, app(ty_Maybe, cdb)) -> new_ltEs4(xuu82, xuu85, cdb) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(ty_Either, bdf), bdg)) -> new_ltEs11(xuu550, xuu560, bdf, bdg) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, dce), dcf)) -> new_esEs29(xuu400002, xuu30002, dce, dcf) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_compare7(LT, GT) -> LT new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), be, bf) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs6(xuu40000, xuu3000, app(app(ty_@2, fcf), fcg)) -> new_esEs29(xuu40000, xuu3000, fcf, fcg) new_ltEs19(xuu62, xuu63, app(ty_Ratio, dgh)) -> new_ltEs7(xuu62, xuu63, dgh) new_esEs35(xuu96, xuu98, app(ty_Ratio, cgd)) -> new_esEs12(xuu96, xuu98, cgd) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs19(xuu400002, xuu30002, dcb, dcc, dcd) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, dbg), dbh)) -> new_esEs24(xuu400002, xuu30002, dbg, dbh) new_lt23(xuu550, xuu560, app(ty_Maybe, bhc)) -> new_lt12(xuu550, xuu560, bhc) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, cbh), cca)) -> new_ltEs11(xuu69, xuu70, cbh, cca) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, cdc), cdd)) -> new_ltEs11(xuu82, xuu85, cdc, cdd) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, cgd)) -> new_lt4(xuu96, xuu98, cgd) new_esEs33(xuu81, xuu84, app(ty_[], cdh)) -> new_esEs23(xuu81, xuu84, cdh) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, ef, de) -> EQ new_esEs17(GT, GT) -> True new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs19(xuu400000, xuu30000, fge, fgf, fgg) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_ltEs19(xuu62, xuu63, app(app(ty_Either, caf), cag)) -> new_ltEs11(xuu62, xuu63, caf, cag) new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs8(xuu550, xuu560, bca, bcb) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, he) -> new_pePe(new_lt20(xuu550, xuu560, gb), new_asAs(new_esEs34(xuu550, xuu560, gb), new_ltEs20(xuu551, xuu561, he))) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, cgc)) -> new_esEs12(xuu40000, xuu3000, cgc) new_esEs38(xuu400000, xuu30000, app(ty_[], ehc)) -> new_esEs23(xuu400000, xuu30000, ehc) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, dhb)) -> new_ltEs7(xuu551, xuu561, dhb) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, egf), egg)) -> new_esEs29(xuu40001, xuu3001, egf, egg) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, efd) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, df), dg)) -> new_lt7(xuu96, xuu98, df, dg) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, cbc, fee) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, cge)) -> new_ltEs4(xuu55, xuu56, cge) new_esEs34(xuu550, xuu560, app(ty_Ratio, dha)) -> new_esEs12(xuu550, xuu560, dha) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bg), bh), ca)) -> new_compare26(xuu4000, xuu300, bg, bh, ca) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_Ratio, fhe)) -> new_ltEs7(xuu550, xuu560, fhe) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, eed) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, dbc), dbd)) -> new_esEs29(xuu400001, xuu30001, dbc, dbd) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, bec), bed), bfg)) -> new_ltEs15(xuu55, xuu56, bec, bed, bfg) new_ltEs6(xuu55, xuu56, ga) -> new_fsEs(new_compare15(xuu55, xuu56, ga)) new_lt9(xuu80, xuu83, app(app(ty_@2, cfc), cfd)) -> new_lt7(xuu80, xuu83, cfc, cfd) new_compare0(xuu4000, xuu300, app(ty_Maybe, bd)) -> new_compare29(xuu4000, xuu300, bd) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, eab), eac)) -> new_esEs29(xuu40000, xuu3000, eab, eac) new_ltEs21(xuu97, xuu99, app(app(ty_Either, fc), fd)) -> new_ltEs11(xuu97, xuu99, fc, fd) new_esEs37(xuu551, xuu561, app(ty_[], bff)) -> new_esEs23(xuu551, xuu561, bff) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], baf)) -> new_ltEs6(xuu550, xuu560, baf) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, bd) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, fad)) -> new_esEs12(xuu400000, xuu30000, fad) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], ebg)) -> new_esEs23(xuu40002, xuu3002, ebg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, bda), bbh)) -> new_ltEs11(xuu55, xuu56, bda, bbh) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], hd)) -> new_esEs23(xuu550, xuu560, hd) new_compare211(xuu69, xuu70, False, cbc, fee) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, fee), cbc, fee) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, ffh), efd) -> new_esEs12(xuu400000, xuu30000, ffh) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], feg), efd) -> new_esEs23(xuu400000, xuu30000, feg) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, fb)) -> new_ltEs4(xuu97, xuu99, fb) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fea), feb)) -> new_esEs29(xuu40000, xuu3000, fea, feb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xuu550, xuu560, app(ty_Ratio, eef)) -> new_esEs12(xuu550, xuu560, eef) new_lt23(xuu550, xuu560, app(app(ty_@2, bha), bhb)) -> new_lt7(xuu550, xuu560, bha, bhb) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cb)) -> new_compare15(xuu34, xuu35, cb) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, cae)) -> new_ltEs4(xuu62, xuu63, cae) new_esEs37(xuu551, xuu561, app(ty_Ratio, eeg)) -> new_esEs12(xuu551, xuu561, eeg) new_esEs25(Nothing, Nothing, def) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Just(xuu30000), def) -> False new_esEs25(Just(xuu400000), Nothing, def) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, ceb), cec)) -> new_lt7(xuu81, xuu84, ceb, cec) new_ltEs22(xuu552, xuu562, app(app(ty_Either, bfa), bfb)) -> new_ltEs11(xuu552, xuu562, bfa, bfb) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, eea), eeb)) -> new_esEs29(xuu40000, xuu3000, eea, eeb) new_ltEs20(xuu551, xuu561, app(ty_Maybe, gf)) -> new_ltEs4(xuu551, xuu561, gf) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], dd)) -> new_esEs23(xuu96, xuu98, dd) new_lt9(xuu80, xuu83, app(ty_Ratio, dgd)) -> new_lt4(xuu80, xuu83, dgd) new_esEs28(False, False) -> True The set Q consists of the following terms: new_compare210(x0, x1, True, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_compare0(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare15([], [], x0) new_esEs36(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Float) new_compare12(x0, x1) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(EQ, EQ) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare0(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), x1) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), x1) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(False, True) new_esEs28(True, False) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_esEs5(x0, x1, ty_Char) new_ltEs4(Just(x0), Nothing, x1) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_lt7(x0, x1, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, ty_@0) new_esEs23(:(x0, x1), [], x2) new_esEs9(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare7(GT, EQ) new_compare7(EQ, GT) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Bool) new_lt17(x0, x1, x2, x3, x4) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, ty_Bool) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_esEs18(Float(x0, x1), Float(x2, x3)) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_asAs(True, x0) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare15(:(x0, x1), [], x2) new_esEs34(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(Just(x0), Just(x1), ty_Double) new_compare9(Integer(x0), Integer(x1)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare18(Char(x0), Char(x1)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_ltEs9(x0, x1) new_esEs10(x0, x1, app(ty_[], x2)) new_compare29(Nothing, Nothing, x0) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs6(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare29(Just(x0), Just(x1), x2) new_esEs33(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_lt10(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, x2) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_lt22(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_sr0(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_compare210(x0, x1, False, x2) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_compare16(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(x0, x1, x2) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, LT) new_compare7(LT, EQ) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs35(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(GT, GT) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare112(x0, x1, True, x2) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Nothing, x1) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs34(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_lt9(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs4(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_compare211(x0, x1, True, x2, x3) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_lt23(x0, x1, ty_Double) new_esEs36(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Integer) new_ltEs4(Nothing, Nothing, x0) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs23(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare8(True, False) new_compare8(False, True) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_compare29(Just(x0), Nothing, x1) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, x2) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Int) new_compare0(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Zero) new_compare112(x0, x1, False, x2) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare15([], :(x0, x1), x2) new_esEs32(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, True, x2, x3) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, GT, x2) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_esEs7(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs28(True, True) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(Char(x0), Char(x1)) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs33(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_ltEs10(x0, x1) new_compare0(x0, x1, ty_Ordering) new_esEs25(Nothing, Nothing, x0) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Char) new_compare0(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare19(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_esEs23(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_esEs25(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_esEs23([], [], x0) new_lt15(x0, x1, x2, x3) new_lt23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs30(Double(x0, x1), Double(x2, x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(GT, GT) new_primCompAux1(x0, x1, x2, x3, x4) new_compare27(x0, x1, x2, x3, False, x4, x5) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare30(Right(x0), Right(x1), x2, x3) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_compare15(:(x0, x1), :(x2, x3), x4) new_esEs23([], :(x0, x1), x2) new_fsEs(x0) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_asAs(False, x0) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_compare7(EQ, EQ) new_lt23(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs22(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat0(Zero, Zero) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (22) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_@2, bha), bhb), bed, bfg) -> new_lt0(xuu550, xuu560, bha, bhb) new_lt0(xuu96, xuu98, df, dg) -> new_compare1(xuu96, xuu98, df, dg) new_compare1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bb, bc) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(app(ty_@3, ec), ed), ee), de) -> new_compare5(xuu96, xuu98, ec, ed, ee) new_compare5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bg, bh, ca) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs3(xuu82, xuu85, cde, cdf, cdg) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_[], bff), bfg) -> new_lt(xuu551, xuu561, bff) new_lt(xuu96, xuu98, dd) -> new_compare(xuu96, xuu98, dd) new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, ba) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, ba), app(ty_[], ba)) new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cb)) -> new_compare(xuu34, xuu35, cb) new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_compare21(xuu62, xuu63, False, app(app(ty_Either, caf), cag), cab) -> new_ltEs2(xuu62, xuu63, caf, cag) new_ltEs2(Left(xuu550), Left(xuu560), app(ty_[], bbg), bbh) -> new_ltEs(xuu550, xuu560, bbg) new_ltEs(xuu55, xuu56, ga) -> new_compare(xuu55, xuu56, ga) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_Maybe, bhc), bed, bfg) -> new_lt1(xuu550, xuu560, bhc) new_lt1(xuu96, xuu98, dh) -> new_compare3(xuu96, xuu98, dh) new_compare3(Just(xuu40000), Just(xuu3000), bd) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_@2, gd), ge))) -> new_ltEs0(xuu551, xuu561, gd, ge) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_@2, gd), ge)) -> new_ltEs0(xuu551, xuu561, gd, ge) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(app(ty_@3, bac), bad), bae), he) -> new_lt3(xuu550, xuu560, bac, bad, bae) new_lt3(xuu96, xuu98, ec, ed, ee) -> new_compare5(xuu96, xuu98, ec, ed, ee) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_@2, hf), hg), he) -> new_lt0(xuu550, xuu560, hf, hg) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_Maybe, hh), he) -> new_lt1(xuu550, xuu560, hh) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_Either, baa), bab), he) -> new_lt2(xuu550, xuu560, baa, bab) new_lt2(xuu96, xuu98, ea, eb) -> new_compare4(xuu96, xuu98, ea, eb) new_compare4(Left(xuu40000), Left(xuu3000), be, bf) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_compare21(xuu62, xuu63, False, app(ty_[], caa), cab) -> new_ltEs(xuu62, xuu63, caa) new_compare21(xuu62, xuu63, False, app(ty_Maybe, cae), cab) -> new_ltEs1(xuu62, xuu63, cae) new_ltEs1(Just(xuu550), Just(xuu560), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(xuu552, xuu562, bef, beg) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_@2, bfh), bga), bfg) -> new_lt0(xuu551, xuu561, bfh, bga) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(app(ty_@3, bhf), bhg), bhh), bed, bfg) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_Either, bhd), bhe), bed, bfg) -> new_lt2(xuu550, xuu560, bhd, bhe) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_Maybe, beh)) -> new_ltEs1(xuu552, xuu562, beh) new_ltEs1(Just(xuu550), Just(xuu560), app(ty_Maybe, bba)) -> new_ltEs1(xuu550, xuu560, bba) new_ltEs1(Just(xuu550), Just(xuu560), app(ty_[], baf)) -> new_ltEs(xuu550, xuu560, baf) new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_Either, bbb), bbc)) -> new_ltEs2(xuu550, xuu560, bbb, bbc) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_Maybe, bde)) -> new_ltEs1(xuu550, xuu560, bde) new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_@2, bag), bah)) -> new_ltEs0(xuu550, xuu560, bag, bah) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_Maybe, gf)) -> new_ltEs1(xuu551, xuu561, gf) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_[], hd), he) -> new_lt(xuu550, xuu560, hd) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_[], gc)) -> new_ltEs(xuu551, xuu561, gc) new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(xuu551, xuu561, gg, gh) new_ltEs2(Left(xuu550), Left(xuu560), app(ty_Maybe, bcc), bbh) -> new_ltEs1(xuu550, xuu560, bcc) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(xuu550, xuu560, bdc, bdd) new_ltEs2(Left(xuu550), Left(xuu560), app(app(app(ty_@3, bcf), bcg), bch), bbh) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_Maybe, bgb), bfg) -> new_lt1(xuu551, xuu561, bgb) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_[], bgh), bed, bfg) -> new_lt(xuu550, xuu560, bgh) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_Either, bgc), bgd), bfg) -> new_lt2(xuu551, xuu561, bgc, bgd) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_Either, bfa), bfb)) -> new_ltEs2(xuu552, xuu562, bfa, bfb) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_Either, bdf), bdg)) -> new_ltEs2(xuu550, xuu560, bdf, bdg) new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_Either, bcd), bce), bbh) -> new_ltEs2(xuu550, xuu560, bcd, bce) new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(xuu550, xuu560, bca, bcb) new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_[], bdb)) -> new_ltEs(xuu550, xuu560, bdb) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_[], bee)) -> new_ltEs(xuu552, xuu562, bee) new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(app(ty_@3, bge), bgf), bgg), bfg) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) new_compare21(xuu62, xuu63, False, app(app(ty_@2, cac), cad), cab) -> new_ltEs0(xuu62, xuu63, cac, cad) new_compare21(xuu62, xuu63, False, app(app(app(ty_@3, cah), cba), cbb), cab) -> new_ltEs3(xuu62, xuu63, cah, cba, cbb) new_compare4(Right(xuu40000), Right(xuu3000), be, bf) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_compare22(xuu69, xuu70, False, cbc, app(ty_[], cbd)) -> new_ltEs(xuu69, xuu70, cbd) new_compare22(xuu69, xuu70, False, cbc, app(ty_Maybe, cbg)) -> new_ltEs1(xuu69, xuu70, cbg) new_compare22(xuu69, xuu70, False, cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(xuu69, xuu70, cbe, cbf) new_compare22(xuu69, xuu70, False, cbc, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs3(xuu69, xuu70, ccb, ccc, ccd) new_compare22(xuu69, xuu70, False, cbc, app(app(ty_Either, cbh), cca)) -> new_ltEs2(xuu69, xuu70, cbh, cca) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(app(ty_@3, bcf), bcg), bch)), bbh)) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_@2, bfh), bga)), bfg)) -> new_lt0(xuu551, xuu561, bfh, bga) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_[], hd)), he)) -> new_lt(xuu550, xuu560, hd) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_Maybe, gf))) -> new_ltEs1(xuu551, xuu561, gf) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_Maybe, bde))) -> new_ltEs1(xuu550, xuu560, bde) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_[], bgh)), bed), bfg)) -> new_lt(xuu550, xuu560, bgh) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(app(ty_@3, bhf), bhg), bhh)), bed), bfg)) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_Maybe, bhc)), bed), bfg)) -> new_lt1(xuu550, xuu560, bhc) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_Maybe, beh))) -> new_ltEs1(xuu552, xuu562, beh) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_Either, bdf), bdg))) -> new_ltEs2(xuu550, xuu560, bdf, bdg) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(xuu551, xuu561, gg, gh) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(xuu550, xuu560, baf) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(xuu550, xuu560, bag, bah) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(xuu550, xuu560, bdc, bdd) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_Either, bfa), bfb))) -> new_ltEs2(xuu552, xuu562, bfa, bfb) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_@2, bef), beg))) -> new_ltEs0(xuu552, xuu562, bef, beg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_[], bff)), bfg)) -> new_lt(xuu551, xuu561, bff) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_@2, bha), bhb)), bed), bfg)) -> new_lt0(xuu550, xuu560, bha, bhb) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(xuu550, xuu560, bbg) new_compare20(xuu55, xuu56, False, app(ty_[], ga)) -> new_compare(xuu55, xuu56, ga) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(xuu550, xuu560, bca, bcb) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(app(ty_@3, bac), bad), bae)), he)) -> new_lt3(xuu550, xuu560, bac, bad, bae) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs2(xuu550, xuu560, bbb, bbc) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(app(ty_@3, bge), bgf), bgg)), bfg)) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_Maybe, bgb)), bfg)) -> new_lt1(xuu551, xuu561, bgb) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_Maybe, hh)), he)) -> new_lt1(xuu550, xuu560, hh) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_Either, bhd), bhe)), bed), bfg)) -> new_lt2(xuu550, xuu560, bhd, bhe) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_[], gc))) -> new_ltEs(xuu551, xuu561, gc) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_Either, baa), bab)), he)) -> new_lt2(xuu550, xuu560, baa, bab) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu550, xuu560, bba) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_Either, bcd), bce)), bbh)) -> new_ltEs2(xuu550, xuu560, bcd, bce) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_[], bee))) -> new_ltEs(xuu552, xuu562, bee) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_@2, hf), hg)), he)) -> new_lt0(xuu550, xuu560, hf, hg) new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_Maybe, bcc)), bbh)) -> new_ltEs1(xuu550, xuu560, bcc) new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(app(ty_@3, bbd), bbe), bbf))) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(xuu550, xuu560, bdb) new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_Either, bgc), bgd)), bfg)) -> new_lt2(xuu551, xuu561, bgc, bgd) new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], h)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) new_primCompAux(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, bb), bc)) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_[], eg)) -> new_ltEs(xuu97, xuu99, eg) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_Either, fc), fd)) -> new_ltEs2(xuu97, xuu99, fc, fd) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_@2, eh), fa)) -> new_ltEs0(xuu97, xuu99, eh, fa) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs3(xuu97, xuu99, ff, fg, fh) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_@2, df), dg), de) -> new_compare1(xuu96, xuu98, df, dg) new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_Maybe, fb)) -> new_ltEs1(xuu97, xuu99, fb) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_Either, ea), eb), de) -> new_compare4(xuu96, xuu98, ea, eb) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_[], dd), de) -> new_compare(xuu96, xuu98, dd) new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_Maybe, dh), de) -> new_compare3(xuu96, xuu98, dh) new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bd)) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bg), bh), ca)) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_Maybe, cfe), ccf, cea) -> new_lt1(xuu80, xuu83, cfe) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_@2, cfc), cfd), ccf, cea) -> new_lt0(xuu80, xuu83, cfc, cfd) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_[], ccg)) -> new_ltEs(xuu82, xuu85, ccg) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_[], cdh), cea) -> new_lt(xuu81, xuu84, cdh) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(app(ty_@3, cfh), cga), cgb), ccf, cea) -> new_lt3(xuu80, xuu83, cfh, cga, cgb) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_Either, cff), cfg), ccf, cea) -> new_lt2(xuu80, xuu83, cff, cfg) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_@2, cch), cda)) -> new_ltEs0(xuu82, xuu85, cch, cda) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_Either, cdc), cdd)) -> new_ltEs2(xuu82, xuu85, cdc, cdd) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_Maybe, cdb)) -> new_ltEs1(xuu82, xuu85, cdb) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_Either, cee), cef), cea) -> new_lt2(xuu81, xuu84, cee, cef) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_Maybe, ced), cea) -> new_lt1(xuu81, xuu84, ced) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_@2, ceb), cec), cea) -> new_lt0(xuu81, xuu84, ceb, cec) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(app(ty_@3, ceg), ceh), cfa), cea) -> new_lt3(xuu81, xuu84, ceg, ceh, cfa) new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_[], cfb), ccf, cea) -> new_lt(xuu80, xuu83, cfb) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs15(xuu552, xuu562, bfc, bfd, bfe) new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, ba) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, ba), app(ty_[], ba)) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, bfg) -> new_pePe(new_lt23(xuu550, xuu560, bec), new_asAs(new_esEs36(xuu550, xuu560, bec), new_pePe(new_lt22(xuu551, xuu561, bed), new_asAs(new_esEs37(xuu551, xuu561, bed), new_ltEs22(xuu552, xuu562, bfg))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, fdf), fdg), fdh)) -> new_esEs19(xuu40000, xuu3000, fdf, fdg, fdh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt17(xuu551, xuu561, bge, bgf, bgg) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, baa), bab)) -> new_esEs24(xuu550, xuu560, baa, bab) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bg, bh, ca) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, cge) -> True new_lt23(xuu550, xuu560, app(ty_[], bgh)) -> new_lt11(xuu550, xuu560, bgh) new_ltEs4(Just(xuu550), Nothing, cge) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, egh)) -> new_esEs12(xuu40001, xuu3001, egh) new_compare111(xuu153, xuu154, xuu155, xuu156, False, eha, ehb) -> GT new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bb, bc) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, efd) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, dgg, cab) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, dgg), dgg, cab) new_ltEs22(xuu552, xuu562, app(ty_Maybe, beh)) -> new_ltEs4(xuu552, xuu562, beh) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, bba)) -> new_ltEs4(xuu550, xuu560, bba) new_compare30(Left(xuu40000), Left(xuu3000), be, bf) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) new_esEs9(xuu40000, xuu3000, app(ty_[], dhc)) -> new_esEs23(xuu40000, xuu3000, dhc) new_lt9(xuu80, xuu83, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt17(xuu80, xuu83, cfh, cga, cgb) new_ltEs19(xuu62, xuu63, app(ty_[], caa)) -> new_ltEs6(xuu62, xuu63, caa) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, bbh) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], dch)) -> new_esEs23(xuu40000, xuu3000, dch) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, dec, ded, dee) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, dec, ded, dee) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, fbd), fbe)) -> new_esEs29(xuu400001, xuu30001, fbd, fbe) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, bhd), bhe)) -> new_lt15(xuu550, xuu560, bhd, bhe) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, ech)) -> new_esEs12(xuu40002, xuu3002, ech) new_esEs35(xuu96, xuu98, app(ty_Maybe, dh)) -> new_esEs25(xuu96, xuu98, dh) new_compare0(xuu4000, xuu300, app(app(ty_Either, be), bf)) -> new_compare30(xuu4000, xuu300, be, bf) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_ltEs18(xuu82, xuu85, app(ty_Ratio, dgf)) -> new_ltEs7(xuu82, xuu85, dgf) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, cgd) -> new_esEs17(new_compare6(xuu96, xuu98, cgd), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, bfh), bga)) -> new_lt7(xuu551, xuu561, bfh, bga) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), efe, eff) -> new_asAs(new_esEs38(xuu400000, xuu30000, efe), new_esEs39(xuu400001, xuu30001, eff)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, eeg)) -> new_lt4(xuu551, xuu561, eeg) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, faf), fag)) -> new_esEs24(xuu400001, xuu30001, faf, fag) new_esEs10(xuu40001, xuu3001, app(ty_[], eae)) -> new_esEs23(xuu40001, xuu3001, eae) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, efd) -> new_esEs26(xuu400000, xuu30000) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_Maybe, fgd)) -> new_esEs25(xuu400000, xuu30000, fgd) new_esEs34(xuu550, xuu560, app(app(ty_@2, hf), hg)) -> new_esEs29(xuu550, xuu560, hf, hg) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_Maybe, bde)) -> new_ltEs4(xuu550, xuu560, bde) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, dec, ded, dee) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, dff), dfg)) -> new_esEs29(xuu400000, xuu30000, dff, dfg) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs32(xuu80, xuu83, app(ty_[], cfb)) -> new_esEs23(xuu80, xuu83, cfb) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, cfe)) -> new_lt12(xuu80, xuu83, cfe) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs15(xuu550, xuu560, bbd, bbe, bbf) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, eed) -> GT new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(ty_@2, gb), he)) -> new_ltEs8(xuu55, xuu56, gb, he) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs19(xuu81, xuu84, ceg, ceh, cfa) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, bbh) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, fbh), fca)) -> new_esEs24(xuu40000, xuu3000, fbh, fca) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs19(xuu40001, xuu3001, eba, ebb, ebc) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, fhd), bbh) -> new_ltEs7(xuu550, xuu560, fhd) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, eh), fa)) -> new_ltEs8(xuu97, xuu99, eh, fa) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], hd)) -> new_lt11(xuu550, xuu560, hd) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, edc), edd)) -> new_esEs24(xuu40000, xuu3000, edc, edd) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, dgc) -> new_fsEs(new_compare6(xuu55, xuu56, dgc)) new_lt20(xuu550, xuu560, app(ty_Maybe, hh)) -> new_lt12(xuu550, xuu560, hh) new_esEs36(xuu550, xuu560, app(app(ty_@2, bha), bhb)) -> new_esEs29(xuu550, xuu560, bha, bhb) new_lt12(xuu96, xuu98, dh) -> new_esEs17(new_compare29(xuu96, xuu98, dh), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], chb)) -> new_esEs23(xuu400000, xuu30000, chb) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, ced)) -> new_esEs25(xuu81, xuu84, ced) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(ty_Either, fgb), fgc)) -> new_esEs24(xuu400000, xuu30000, fgb, fgc) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, ddb), ddc)) -> new_esEs24(xuu400000, xuu30000, ddb, ddc) new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_esEs21(xuu400001, xuu30001, app(ty_Ratio, dbe)) -> new_esEs12(xuu400001, xuu30001, dbe) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, dfh)) -> new_esEs12(xuu400000, xuu30000, dfh) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_esEs27(@0, @0) -> True new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs33(xuu81, xuu84, app(ty_Ratio, dge)) -> new_esEs12(xuu81, xuu84, dge) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], h)) -> new_compare15(xuu4000, xuu300, h) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, dhf)) -> new_esEs25(xuu40000, xuu3000, dhf) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_esEs24(Left(xuu400000), Right(xuu30000), efc, efd) -> False new_esEs24(Right(xuu400000), Left(xuu30000), efc, efd) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, bgb)) -> new_lt12(xuu551, xuu561, bgb) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_[], fga)) -> new_esEs23(xuu400000, xuu30000, fga) new_esEs23(:(xuu400000, xuu400001), [], dch) -> False new_esEs23([], :(xuu30000, xuu30001), dch) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, eec)) -> new_esEs12(xuu40000, xuu3000, eec) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, fde)) -> new_esEs25(xuu40000, xuu3000, fde) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, h) new_ltEs19(xuu62, xuu63, app(app(ty_@2, cac), cad)) -> new_ltEs8(xuu62, xuu63, cac, cad) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], fbg)) -> new_esEs23(xuu40000, xuu3000, fbg) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, da), db), dc)) -> new_compare26(xuu34, xuu35, da, db, dc) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, che)) -> new_esEs25(xuu400000, xuu30000, che) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, dae), daf)) -> new_esEs24(xuu400001, xuu30001, dae, daf) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, eah)) -> new_esEs25(xuu40001, xuu3001, eah) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs15(xuu551, xuu561, ha, hb, hc) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, dgc)) -> new_ltEs7(xuu55, xuu56, dgc) new_esEs32(xuu80, xuu83, app(ty_Maybe, cfe)) -> new_esEs25(xuu80, xuu83, cfe) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, bbh) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, deb)) -> new_esEs12(xuu400000, xuu30000, deb) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs19(xuu400000, xuu30000, chf, chg, chh) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, cc), cd)) -> new_compare17(xuu34, xuu35, cc, cd) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cf), cg)) -> new_compare30(xuu34, xuu35, cf, cg) new_esEs32(xuu80, xuu83, app(app(ty_Either, cff), cfg)) -> new_esEs24(xuu80, xuu83, cff, cfg) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fec)) -> new_esEs12(xuu40000, xuu3000, fec) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Char) -> new_ltEs17(xuu550, xuu560) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_compare30(Left(xuu40000), Right(xuu3000), be, bf) -> LT new_lt21(xuu96, xuu98, app(app(ty_Either, ea), eb)) -> new_lt15(xuu96, xuu98, ea, eb) new_esEs37(xuu551, xuu561, app(app(ty_@2, bfh), bga)) -> new_esEs29(xuu551, xuu561, bfh, bga) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, ecc), ecd), ece)) -> new_esEs19(xuu40002, xuu3002, ecc, ecd, ece) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, ebh), eca)) -> new_esEs24(xuu40002, xuu3002, ebh, eca) new_compare210(xuu55, xuu56, False, fed) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, fed), fed) new_ltEs23(xuu55, xuu56, app(ty_[], ga)) -> new_ltEs6(xuu55, xuu56, ga) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, eha, ehb) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(ty_@2, fgh), fha)) -> new_esEs29(xuu400000, xuu30000, fgh, fha) new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, cbe), cbf)) -> new_ltEs8(xuu69, xuu70, cbe, cbf) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs19(xuu550, xuu560, bhf, bhg, bhh) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, ec, ed, ee) -> new_esEs17(new_compare26(xuu96, xuu98, ec, ed, ee), LT) new_lt8(xuu81, xuu84, app(ty_[], cdh)) -> new_lt11(xuu81, xuu84, cdh) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), cge) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, dd) -> new_esEs17(new_compare15(xuu96, xuu98, dd), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, dec, ded, dee) -> GT new_compare16(xuu137, xuu138, True, dga, dgb) -> LT new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], dd)) -> new_lt11(xuu96, xuu98, dd) new_esEs36(xuu550, xuu560, app(app(ty_Either, bhd), bhe)) -> new_esEs24(xuu550, xuu560, bhd, bhe) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, eee)) -> new_compare6(xuu34, xuu35, eee) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, ecb)) -> new_esEs25(xuu40002, xuu3002, ecb) new_esEs7(xuu40000, xuu3000, app(ty_[], fdb)) -> new_esEs23(xuu40000, xuu3000, fdb) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, ecf), ecg)) -> new_esEs29(xuu40002, xuu3002, ecf, ecg) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs19(xuu40000, xuu3000, cgg, cgh, cha) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, bgc), bgd)) -> new_lt15(xuu551, xuu561, bgc, bgd) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, deh), dfa)) -> new_esEs24(xuu400000, xuu30000, deh, dfa) new_compare0(xuu4000, xuu300, app(app(ty_@2, bb), bc)) -> new_compare17(xuu4000, xuu300, bb, bc) new_compare29(Just(xuu40000), Nothing, bd) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, cce, ccf, cea) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], ccg)) -> new_ltEs6(xuu82, xuu85, ccg) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs19(xuu40001, xuu3001, egc, egd, ege) new_ltEs24(xuu69, xuu70, app(ty_[], cbd)) -> new_ltEs6(xuu69, xuu70, cbd) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, efh), ega)) -> new_esEs24(xuu40001, xuu3001, efh, ega) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, bcf), bcg), bch), bbh) -> new_ltEs15(xuu550, xuu560, bcf, bcg, bch) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, egb)) -> new_esEs25(xuu40001, xuu3001, egb) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), cgg, cgh, cha) -> new_asAs(new_esEs20(xuu400000, xuu30000, cgg), new_asAs(new_esEs21(xuu400001, xuu30001, cgh), new_esEs22(xuu400002, xuu30002, cha))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, app(ty_[], bee)) -> new_ltEs6(xuu552, xuu562, bee) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, def)) -> new_esEs25(xuu40000, xuu3000, def) new_esEs22(xuu400002, xuu30002, app(ty_[], dbf)) -> new_esEs23(xuu400002, xuu30002, dbf) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, fff), ffg), efd) -> new_esEs29(xuu400000, xuu30000, fff, ffg) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs19(xuu96, xuu98, ec, ed, ee) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs13(LT, LT) -> True new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, bbh) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, ddh), dea)) -> new_esEs29(xuu400000, xuu30000, ddh, dea) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, efc), efd)) -> new_esEs24(xuu40000, xuu3000, efc, efd) new_lt21(xuu96, xuu98, app(app(app(ty_@3, ec), ed), ee)) -> new_lt17(xuu96, xuu98, ec, ed, ee) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, efd) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], bbg), bbh) -> new_ltEs6(xuu550, xuu560, bbg) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, ffb), efd) -> new_esEs25(xuu400000, xuu30000, ffb) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), bd) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], gc)) -> new_ltEs6(xuu551, xuu561, gc) new_esEs36(xuu550, xuu560, app(ty_Maybe, bhc)) -> new_esEs25(xuu550, xuu560, bhc) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, baa), bab)) -> new_lt15(xuu550, xuu560, baa, bab) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, ebd), ebe)) -> new_esEs29(xuu40001, xuu3001, ebd, ebe) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs19(xuu400000, xuu30000, ehg, ehh, faa) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, efd) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, ceb), cec)) -> new_esEs29(xuu81, xuu84, ceb, cec) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, bgc), bgd)) -> new_esEs24(xuu551, xuu561, bgc, bgd) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, ehd), ehe)) -> new_esEs24(xuu400000, xuu30000, ehd, ehe) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], cfb)) -> new_lt11(xuu80, xuu83, cfb) new_compare30(Right(xuu40000), Right(xuu3000), be, bf) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, bbb), bbc)) -> new_ltEs11(xuu550, xuu560, bbb, bbc) new_esEs37(xuu551, xuu561, app(ty_Maybe, bgb)) -> new_esEs25(xuu551, xuu561, bgb) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, fda)) -> new_compare6(xuu4000, xuu300, fda) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, ehf)) -> new_esEs25(xuu400000, xuu30000, ehf) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], dch) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, bac), bad), bae)) -> new_lt17(xuu550, xuu560, bac, bad, bae) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, cfc), cfd)) -> new_esEs29(xuu80, xuu83, cfc, cfd) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, fhc) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_lt7(xuu96, xuu98, df, dg) -> new_esEs17(new_compare17(xuu96, xuu98, df, dg), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs19(xuu551, xuu561, bge, bgf, bgg) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], eg)) -> new_ltEs6(xuu97, xuu99, eg) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, bef), beg)) -> new_ltEs8(xuu552, xuu562, bef, beg) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, fhc) -> LT new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs19(xuu550, xuu560, bac, bad, bae) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fdc), fdd)) -> new_esEs24(xuu40000, xuu3000, fdc, fdd) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, dcg)) -> new_esEs12(xuu400002, xuu30002, dcg) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, bbh) -> new_ltEs17(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(app(ty_@2, daa), dab)) -> new_esEs29(xuu400000, xuu30000, daa, dab) new_esEs32(xuu80, xuu83, app(ty_Ratio, dgd)) -> new_esEs12(xuu80, xuu83, dgd) new_ltEs13(GT, GT) -> True new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, ef, de) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, ef), new_asAs(new_esEs35(xuu96, xuu98, ef), new_ltEs21(xuu97, xuu99, de)), ef, de) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], bgh)) -> new_esEs23(xuu550, xuu560, bgh) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, eha, ehb) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, eha, ehb) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, eef)) -> new_lt4(xuu550, xuu560, eef) new_esEs31(xuu400000, xuu30000, app(ty_[], dda)) -> new_esEs23(xuu400000, xuu30000, dda) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, efa, efb) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), dch) -> new_asAs(new_esEs31(xuu400000, xuu30000, dch), new_esEs23(xuu400001, xuu30001, dch)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, fah)) -> new_esEs25(xuu400001, xuu30001, fah) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, dec, ded, dee) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, dec, ded, dee) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, feh), ffa), efd) -> new_esEs24(xuu400000, xuu30000, feh, ffa) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, bbh) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs15(xuu550, xuu560, bdh, bea, beb) new_compare16(xuu137, xuu138, False, dga, dgb) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, ce)) -> new_compare29(xuu34, xuu35, ce) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, hh)) -> new_esEs25(xuu550, xuu560, hh) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs19(xuu400001, xuu30001, fba, fbb, fbc) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, bag), bah)) -> new_ltEs8(xuu550, xuu560, bag, bah) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, ead)) -> new_esEs12(xuu40000, xuu3000, ead) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, ea), eb)) -> new_esEs24(xuu96, xuu98, ea, eb) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, efd) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), bda, bbh) -> True new_compare15([], [], h) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), cgc) -> new_asAs(new_esEs13(xuu400000, xuu30000, cgc), new_esEs14(xuu400001, xuu30001, cgc)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, bcc), bbh) -> new_ltEs4(xuu550, xuu560, bcc) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, dfb)) -> new_esEs25(xuu400000, xuu30000, dfb) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, df), dg)) -> new_esEs29(xuu96, xuu98, df, dg) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], dad)) -> new_esEs23(xuu400001, xuu30001, dad) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs8(xuu40000, xuu3000, app(ty_[], edb)) -> new_esEs23(xuu40000, xuu3000, edb) new_ltEs13(LT, GT) -> True new_esEs33(xuu81, xuu84, app(app(ty_Either, cee), cef)) -> new_esEs24(xuu81, xuu84, cee, cef) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, fab), fac)) -> new_esEs29(xuu400000, xuu30000, fab, fac) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], fae)) -> new_esEs23(xuu400001, xuu30001, fae) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, eaf), eag)) -> new_esEs24(xuu40001, xuu3001, eaf, eag) new_compare25(xuu62, xuu63, True, dgg, cab) -> EQ new_compare210(xuu55, xuu56, True, fed) -> EQ new_lt22(xuu551, xuu561, app(ty_[], bff)) -> new_lt11(xuu551, xuu561, bff) new_lt23(xuu550, xuu560, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_lt17(xuu550, xuu560, bhf, bhg, bhh) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_ltEs22(xuu552, xuu562, app(ty_Ratio, eeh)) -> new_ltEs7(xuu552, xuu562, eeh) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, eha, ehb) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, eha, ehb) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, edf), edg), edh)) -> new_esEs19(xuu40000, xuu3000, edf, edg, edh) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs19(xuu400000, xuu30000, dfc, dfd, dfe) new_compare7(EQ, GT) -> LT new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs19(xuu400000, xuu30000, dde, ddf, ddg) new_lt8(xuu81, xuu84, app(ty_Maybe, ced)) -> new_lt12(xuu81, xuu84, ced) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_lt8(xuu81, xuu84, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt17(xuu81, xuu84, ceg, ceh, cfa) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, fcb)) -> new_esEs25(xuu40000, xuu3000, fcb) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, fch)) -> new_esEs12(xuu40000, xuu3000, fch) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, efd) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, efe), eff)) -> new_esEs29(xuu40000, xuu3000, efe, eff) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs15(xuu97, xuu99, ff, fg, fh) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ebf)) -> new_esEs12(xuu40001, xuu3001, ebf) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, ddd)) -> new_esEs25(xuu400000, xuu30000, ddd) new_compare8(True, True) -> EQ new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, efd) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), bda, bbh) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, fef)) -> new_ltEs7(xuu69, xuu70, fef) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_[], bdb)) -> new_ltEs6(xuu550, xuu560, bdb) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(ty_Ratio, fhb)) -> new_esEs12(xuu400000, xuu30000, fhb) new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs19(xuu40000, xuu3000, fcc, fcd, fce) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, cea) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, cce), new_asAs(new_esEs32(xuu80, xuu83, cce), new_pePe(new_lt8(xuu81, xuu84, ccf), new_asAs(new_esEs33(xuu81, xuu84, ccf), new_ltEs18(xuu82, xuu85, cea)))), cce, ccf, cea) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ede)) -> new_esEs25(xuu40000, xuu3000, ede) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, cgf)) -> new_ltEs7(xuu550, xuu560, cgf) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, cee), cef)) -> new_lt15(xuu81, xuu84, cee, cef) new_compare15([], :(xuu3000, xuu3001), h) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, chc), chd)) -> new_esEs24(xuu400000, xuu30000, chc, chd) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, bbh) -> new_ltEs13(xuu550, xuu560) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, bcd), bce), bbh) -> new_ltEs11(xuu550, xuu560, bcd, bce) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(xuu82, xuu85, cde, cdf, cdg) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs19(xuu400001, xuu30001, dah, dba, dbb) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_compare19(xuu130, xuu131, False, efa, efb) -> GT new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, app(ty_Maybe, dag)) -> new_esEs25(xuu400001, xuu30001, dag) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, dac)) -> new_esEs12(xuu400000, xuu30000, dac) new_ltEs20(xuu551, xuu561, app(app(ty_@2, gd), ge)) -> new_ltEs8(xuu551, xuu561, gd, ge) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], efg)) -> new_esEs23(xuu40001, xuu3001, efg) new_lt15(xuu96, xuu98, ea, eb) -> new_esEs17(new_compare30(xuu96, xuu98, ea, eb), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, dh)) -> new_lt12(xuu96, xuu98, dh) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs19(xuu80, xuu83, cfh, cga, cgb) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs15(xuu62, xuu63, cah, cba, cbb) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], deg)) -> new_esEs23(xuu400000, xuu30000, deg) new_lt9(xuu80, xuu83, app(app(ty_Either, cff), cfg)) -> new_lt15(xuu80, xuu83, cff, cfg) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, fbf)) -> new_esEs12(xuu400001, xuu30001, fbf) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs8(xuu550, xuu560, bdc, bdd) new_compare29(Just(xuu40000), Just(xuu3000), bd) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, eda)) -> new_ltEs7(xuu97, xuu99, eda) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, bbh) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), bda, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, cbg)) -> new_ltEs4(xuu69, xuu70, cbg) new_compare15(:(xuu40000, xuu40001), [], h) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_ltEs20(xuu551, xuu561, app(app(ty_Either, gg), gh)) -> new_ltEs11(xuu551, xuu561, gg, gh) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs15(xuu69, xuu70, ccb, ccc, ccd) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dhd), dhe)) -> new_esEs24(xuu40000, xuu3000, dhd, dhe) new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt8(xuu81, xuu84, app(ty_Ratio, dge)) -> new_lt4(xuu81, xuu84, dge) new_ltEs18(xuu82, xuu85, app(app(ty_@2, cch), cda)) -> new_ltEs8(xuu82, xuu85, cch, cda) new_lt20(xuu550, xuu560, app(ty_Ratio, dha)) -> new_lt4(xuu550, xuu560, dha) new_lt20(xuu550, xuu560, app(app(ty_@2, hf), hg)) -> new_lt7(xuu550, xuu560, hf, hg) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ffc), ffd), ffe), efd) -> new_esEs19(xuu400000, xuu30000, ffc, ffd, ffe) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs19(xuu40000, xuu3000, dhg, dhh, eaa) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, dca)) -> new_esEs25(xuu400002, xuu30002, dca) new_ltEs18(xuu82, xuu85, app(ty_Maybe, cdb)) -> new_ltEs4(xuu82, xuu85, cdb) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(app(ty_Either, bdf), bdg)) -> new_ltEs11(xuu550, xuu560, bdf, bdg) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, dce), dcf)) -> new_esEs29(xuu400002, xuu30002, dce, dcf) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_compare7(LT, GT) -> LT new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), be, bf) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs6(xuu40000, xuu3000, app(app(ty_@2, fcf), fcg)) -> new_esEs29(xuu40000, xuu3000, fcf, fcg) new_ltEs19(xuu62, xuu63, app(ty_Ratio, dgh)) -> new_ltEs7(xuu62, xuu63, dgh) new_esEs35(xuu96, xuu98, app(ty_Ratio, cgd)) -> new_esEs12(xuu96, xuu98, cgd) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs19(xuu400002, xuu30002, dcb, dcc, dcd) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, dbg), dbh)) -> new_esEs24(xuu400002, xuu30002, dbg, dbh) new_lt23(xuu550, xuu560, app(ty_Maybe, bhc)) -> new_lt12(xuu550, xuu560, bhc) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, cbh), cca)) -> new_ltEs11(xuu69, xuu70, cbh, cca) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, cdc), cdd)) -> new_ltEs11(xuu82, xuu85, cdc, cdd) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, cgd)) -> new_lt4(xuu96, xuu98, cgd) new_esEs33(xuu81, xuu84, app(ty_[], cdh)) -> new_esEs23(xuu81, xuu84, cdh) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, ef, de) -> EQ new_esEs17(GT, GT) -> True new_esEs24(Right(xuu400000), Right(xuu30000), efc, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs19(xuu400000, xuu30000, fge, fgf, fgg) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_ltEs19(xuu62, xuu63, app(app(ty_Either, caf), cag)) -> new_ltEs11(xuu62, xuu63, caf, cag) new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs8(xuu550, xuu560, bca, bcb) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, he) -> new_pePe(new_lt20(xuu550, xuu560, gb), new_asAs(new_esEs34(xuu550, xuu560, gb), new_ltEs20(xuu551, xuu561, he))) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, cgc)) -> new_esEs12(xuu40000, xuu3000, cgc) new_esEs38(xuu400000, xuu30000, app(ty_[], ehc)) -> new_esEs23(xuu400000, xuu30000, ehc) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, dhb)) -> new_ltEs7(xuu551, xuu561, dhb) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, egf), egg)) -> new_esEs29(xuu40001, xuu3001, egf, egg) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, efd) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, df), dg)) -> new_lt7(xuu96, xuu98, df, dg) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, cbc, fee) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, cge)) -> new_ltEs4(xuu55, xuu56, cge) new_esEs34(xuu550, xuu560, app(ty_Ratio, dha)) -> new_esEs12(xuu550, xuu560, dha) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bg), bh), ca)) -> new_compare26(xuu4000, xuu300, bg, bh, ca) new_ltEs11(Right(xuu550), Right(xuu560), bda, app(ty_Ratio, fhe)) -> new_ltEs7(xuu550, xuu560, fhe) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, eed) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, dbc), dbd)) -> new_esEs29(xuu400001, xuu30001, dbc, dbd) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, bec), bed), bfg)) -> new_ltEs15(xuu55, xuu56, bec, bed, bfg) new_ltEs6(xuu55, xuu56, ga) -> new_fsEs(new_compare15(xuu55, xuu56, ga)) new_lt9(xuu80, xuu83, app(app(ty_@2, cfc), cfd)) -> new_lt7(xuu80, xuu83, cfc, cfd) new_compare0(xuu4000, xuu300, app(ty_Maybe, bd)) -> new_compare29(xuu4000, xuu300, bd) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, eab), eac)) -> new_esEs29(xuu40000, xuu3000, eab, eac) new_ltEs21(xuu97, xuu99, app(app(ty_Either, fc), fd)) -> new_ltEs11(xuu97, xuu99, fc, fd) new_esEs37(xuu551, xuu561, app(ty_[], bff)) -> new_esEs23(xuu551, xuu561, bff) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], baf)) -> new_ltEs6(xuu550, xuu560, baf) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, bd) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, fad)) -> new_esEs12(xuu400000, xuu30000, fad) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), efc, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], ebg)) -> new_esEs23(xuu40002, xuu3002, ebg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, bda), bbh)) -> new_ltEs11(xuu55, xuu56, bda, bbh) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], hd)) -> new_esEs23(xuu550, xuu560, hd) new_compare211(xuu69, xuu70, False, cbc, fee) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, fee), cbc, fee) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, ffh), efd) -> new_esEs12(xuu400000, xuu30000, ffh) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], feg), efd) -> new_esEs23(xuu400000, xuu30000, feg) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, fb)) -> new_ltEs4(xuu97, xuu99, fb) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fea), feb)) -> new_esEs29(xuu40000, xuu3000, fea, feb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xuu550, xuu560, app(ty_Ratio, eef)) -> new_esEs12(xuu550, xuu560, eef) new_lt23(xuu550, xuu560, app(app(ty_@2, bha), bhb)) -> new_lt7(xuu550, xuu560, bha, bhb) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cb)) -> new_compare15(xuu34, xuu35, cb) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, cae)) -> new_ltEs4(xuu62, xuu63, cae) new_esEs37(xuu551, xuu561, app(ty_Ratio, eeg)) -> new_esEs12(xuu551, xuu561, eeg) new_esEs25(Nothing, Nothing, def) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Just(xuu30000), def) -> False new_esEs25(Just(xuu400000), Nothing, def) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, ceb), cec)) -> new_lt7(xuu81, xuu84, ceb, cec) new_ltEs22(xuu552, xuu562, app(app(ty_Either, bfa), bfb)) -> new_ltEs11(xuu552, xuu562, bfa, bfb) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, eea), eeb)) -> new_esEs29(xuu40000, xuu3000, eea, eeb) new_ltEs20(xuu551, xuu561, app(ty_Maybe, gf)) -> new_ltEs4(xuu551, xuu561, gf) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], dd)) -> new_esEs23(xuu96, xuu98, dd) new_lt9(xuu80, xuu83, app(ty_Ratio, dgd)) -> new_lt4(xuu80, xuu83, dgd) new_esEs28(False, False) -> True The set Q consists of the following terms: new_compare210(x0, x1, True, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_compare0(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Float) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare15([], [], x0) new_esEs36(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Float) new_compare12(x0, x1) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(EQ, EQ) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare0(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), x1) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs36(x0, x1, ty_Double) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), x1) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(False, True) new_esEs28(True, False) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_esEs5(x0, x1, ty_Char) new_ltEs4(Just(x0), Nothing, x1) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_lt7(x0, x1, x2, x3) new_esEs39(x0, x1, app(ty_[], x2)) new_compare0(x0, x1, ty_@0) new_esEs23(:(x0, x1), [], x2) new_esEs9(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Char) new_compare211(x0, x1, False, x2, x3) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare7(GT, EQ) new_compare7(EQ, GT) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Bool) new_lt17(x0, x1, x2, x3, x4) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, ty_Bool) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_esEs18(Float(x0, x1), Float(x2, x3)) new_esEs9(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_asAs(True, x0) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare15(:(x0, x1), [], x2) new_esEs34(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_ltEs4(Just(x0), Just(x1), ty_Double) new_compare9(Integer(x0), Integer(x1)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_compare18(Char(x0), Char(x1)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_ltEs9(x0, x1) new_esEs10(x0, x1, app(ty_[], x2)) new_compare29(Nothing, Nothing, x0) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs6(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare29(Just(x0), Just(x1), x2) new_esEs33(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_lt4(x0, x1, x2) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_lt10(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, x2) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_lt22(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_sr0(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_compare210(x0, x1, False, x2) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_compare16(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(x0, x1, x2) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(EQ, LT) new_compare7(LT, EQ) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs35(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(GT, GT) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare112(x0, x1, True, x2) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Nothing, x1) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs34(x0, x1, ty_Char) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_lt9(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs22(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs4(Nothing, Just(x0), x1) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_compare211(x0, x1, True, x2, x3) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_compare30(Left(x0), Left(x1), x2, x3) new_lt23(x0, x1, ty_Double) new_esEs36(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Integer) new_ltEs4(Nothing, Nothing, x0) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs23(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare8(True, False) new_compare8(False, True) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_compare29(Just(x0), Nothing, x1) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, x2) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Double) new_lt20(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Int) new_compare0(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), ty_Char) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Zero) new_compare112(x0, x1, False, x2) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare15([], :(x0, x1), x2) new_esEs32(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, True, x2, x3) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, GT, x2) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_esEs7(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs28(True, True) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(Char(x0), Char(x1)) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs33(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_ltEs10(x0, x1) new_compare0(x0, x1, ty_Ordering) new_esEs25(Nothing, Nothing, x0) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Char) new_compare0(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare19(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_esEs23(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_esEs25(Nothing, Just(x0), x1) new_esEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_esEs23([], [], x0) new_lt15(x0, x1, x2, x3) new_lt23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs30(Double(x0, x1), Double(x2, x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(GT, GT) new_primCompAux1(x0, x1, x2, x3, x4) new_compare27(x0, x1, x2, x3, False, x4, x5) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare30(Right(x0), Right(x1), x2, x3) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_compare15(:(x0, x1), :(x2, x3), x4) new_esEs23([], :(x0, x1), x2) new_fsEs(x0) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_asAs(False, x0) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_compare7(EQ, EQ) new_lt23(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs9(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs22(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat0(Zero, Zero) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (23) 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_lt0(xuu96, xuu98, df, dg) -> new_compare1(xuu96, xuu98, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare1(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bb, bc) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs3(xuu97, xuu99, ff, fg, fh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_@2, df), dg), de) -> new_compare1(xuu96, xuu98, df, dg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare5(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bg, bh, ca) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) 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(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, bb), bc)) -> new_compare2(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bb), new_esEs5(xuu40001, xuu3001, bc)), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs3(xuu82, xuu85, cde, cdf, cdg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(app(ty_@3, ec), ed), ee), de) -> new_compare5(xuu96, xuu98, ec, ed, ee) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_lt3(xuu96, xuu98, ec, ed, ee) -> new_compare5(xuu96, xuu98, ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bg), bh), ca)) -> new_compare23(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bg), new_asAs(new_esEs10(xuu40001, xuu3001, bh), new_esEs11(xuu40002, xuu3002, ca))), bg, bh, ca) 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_lt(xuu96, xuu98, dd) -> new_compare(xuu96, xuu98, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), h) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_[], dd), de) -> new_compare(xuu96, xuu98, dd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], h)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, h) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 *new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cb)) -> new_compare(xuu34, xuu35, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, ba) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, ba), app(ty_[], ba)) The graph contains the following edges 3 >= 1, 4 >= 2 *new_compare21(xuu62, xuu63, False, app(app(app(ty_@3, cah), cba), cbb), cab) -> new_ltEs3(xuu62, xuu63, cah, cba, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_compare4(Left(xuu40000), Left(xuu3000), be, bf) -> new_compare21(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_Either, fc), fd)) -> new_ltEs2(xuu97, xuu99, fc, fd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_Either, cdc), cdd)) -> new_ltEs2(xuu82, xuu85, cdc, cdd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_Either, bfa), bfb)) -> new_ltEs2(xuu552, xuu562, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(xuu55, xuu56, ga) -> new_compare(xuu55, xuu56, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare20(xuu55, xuu56, False, app(ty_[], ga)) -> new_compare(xuu55, xuu56, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(xuu62, xuu63, False, app(app(ty_Either, caf), cag), cab) -> new_ltEs2(xuu62, xuu63, caf, cag) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_[], eg)) -> new_ltEs(xuu97, xuu99, eg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_[], ccg)) -> new_ltEs(xuu82, xuu85, ccg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_[], bee)) -> new_ltEs(xuu552, xuu562, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(xuu62, xuu63, False, app(ty_[], caa), cab) -> new_ltEs(xuu62, xuu63, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt1(xuu96, xuu98, dh) -> new_compare3(xuu96, xuu98, dh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare3(Just(xuu40000), Just(xuu3000), bd) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_@2, hf), hg), he) -> new_lt0(xuu550, xuu560, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(ty_Maybe, dh), de) -> new_compare3(xuu96, xuu98, dh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_[], hd), he) -> new_lt(xuu550, xuu560, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(ty_Maybe, hh), he) -> new_lt1(xuu550, xuu560, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bd)) -> new_compare20(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 *new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, be), bf)) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(xuu551, xuu561, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_[], gc)) -> new_ltEs(xuu551, xuu561, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(app(ty_@2, eh), fa)) -> new_ltEs0(xuu97, xuu99, eh, fa) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(app(ty_@2, cch), cda)) -> new_ltEs0(xuu82, xuu85, cch, cda) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(xuu552, xuu562, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(xuu62, xuu63, False, app(app(ty_@2, cac), cad), cab) -> new_ltEs0(xuu62, xuu63, cac, cad) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(xuu62, xuu63, False, app(ty_Maybe, cae), cab) -> new_ltEs1(xuu62, xuu63, cae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(app(ty_@2, gd), ge)) -> new_ltEs0(xuu551, xuu561, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(app(ty_@3, bac), bad), bae), he) -> new_lt3(xuu550, xuu560, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt2(xuu96, xuu98, ea, eb) -> new_compare4(xuu96, xuu98, ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, ccf, app(ty_Maybe, cdb)) -> new_ltEs1(xuu82, xuu85, cdb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, bed, app(ty_Maybe, beh)) -> new_ltEs1(xuu552, xuu562, beh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), app(app(ty_Either, baa), bab), he) -> new_lt2(xuu550, xuu560, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(xuu550, xuu551), @2(xuu560, xuu561), gb, app(ty_Maybe, gf)) -> new_ltEs1(xuu551, xuu561, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare4(Right(xuu40000), Right(xuu3000), be, bf) -> new_compare22(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, app(app(ty_Either, ea), eb), de) -> new_compare4(xuu96, xuu98, ea, eb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare2(xuu96, xuu97, xuu98, xuu99, False, ef, app(ty_Maybe, fb)) -> new_ltEs1(xuu97, xuu99, fb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs1(Just(xuu550), Just(xuu560), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(xuu69, xuu70, False, cbc, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs3(xuu69, xuu70, ccb, ccc, ccd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_Either, bbb), bbc)) -> new_ltEs2(xuu550, xuu560, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(xuu69, xuu70, False, cbc, app(app(ty_Either, cbh), cca)) -> new_ltEs2(xuu69, xuu70, cbh, cca) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(Just(xuu550), Just(xuu560), app(ty_[], baf)) -> new_ltEs(xuu550, xuu560, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(xuu69, xuu70, False, cbc, app(ty_[], cbd)) -> new_ltEs(xuu69, xuu70, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs1(Just(xuu550), Just(xuu560), app(app(ty_@2, bag), bah)) -> new_ltEs0(xuu550, xuu560, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(xuu69, xuu70, False, cbc, app(app(ty_@2, cbe), cbf)) -> new_ltEs0(xuu69, xuu70, cbe, cbf) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(Just(xuu550), Just(xuu560), app(ty_Maybe, bba)) -> new_ltEs1(xuu550, xuu560, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(xuu69, xuu70, False, cbc, app(ty_Maybe, cbg)) -> new_ltEs1(xuu69, xuu70, cbg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(xuu550), Left(xuu560), app(app(app(ty_@3, bcf), bcg), bch), bbh) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(app(ty_@3, bcf), bcg), bch)), bbh)) -> new_ltEs3(xuu550, xuu560, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs3(xuu550, xuu560, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs3(xuu552, xuu562, bfc, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(xuu551, xuu561, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(app(ty_@3, bbd), bbe), bbf))) -> new_ltEs3(xuu550, xuu560, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_@2, cfc), cfd), ccf, cea) -> new_lt0(xuu80, xuu83, cfc, cfd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_@2, ceb), cec), cea) -> new_lt0(xuu81, xuu84, ceb, cec) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_@2, bha), bhb), bed, bfg) -> new_lt0(xuu550, xuu560, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_@2, bfh), bga), bfg) -> new_lt0(xuu551, xuu561, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_@2, bfh), bga)), bfg)) -> new_lt0(xuu551, xuu561, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_@2, bha), bhb)), bed), bfg)) -> new_lt0(xuu550, xuu560, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_@2, hf), hg)), he)) -> new_lt0(xuu550, xuu560, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_[], cdh), cea) -> new_lt(xuu81, xuu84, cdh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_[], cfb), ccf, cea) -> new_lt(xuu80, xuu83, cfb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_Maybe, cfe), ccf, cea) -> new_lt1(xuu80, xuu83, cfe) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(ty_Maybe, ced), cea) -> new_lt1(xuu81, xuu84, ced) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(app(ty_@3, cfh), cga), cgb), ccf, cea) -> new_lt3(xuu80, xuu83, cfh, cga, cgb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(app(ty_@3, ceg), ceh), cfa), cea) -> new_lt3(xuu81, xuu84, ceg, ceh, cfa) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_Either, cff), cfg), ccf, cea) -> new_lt2(xuu80, xuu83, cff, cfg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cce, app(app(ty_Either, cee), cef), cea) -> new_lt2(xuu81, xuu84, cee, cef) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_[], bff), bfg) -> new_lt(xuu551, xuu561, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_[], bgh), bed, bfg) -> new_lt(xuu550, xuu560, bgh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(ty_Maybe, bhc), bed, bfg) -> new_lt1(xuu550, xuu560, bhc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(ty_Maybe, bgb), bfg) -> new_lt1(xuu551, xuu561, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(app(ty_@3, bhf), bhg), bhh), bed, bfg) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(app(ty_@3, bge), bgf), bgg), bfg) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), app(app(ty_Either, bhd), bhe), bed, bfg) -> new_lt2(xuu550, xuu560, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), bec, app(app(ty_Either, bgc), bgd), bfg) -> new_lt2(xuu551, xuu561, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_[], hd)), he)) -> new_lt(xuu550, xuu560, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_[], bgh)), bed), bfg)) -> new_lt(xuu550, xuu560, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_[], bff)), bfg)) -> new_lt(xuu551, xuu561, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_Either, bdf), bdg)) -> new_ltEs2(xuu550, xuu560, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_Either, bcd), bce), bbh) -> new_ltEs2(xuu550, xuu560, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(xuu550), Left(xuu560), app(ty_[], bbg), bbh) -> new_ltEs(xuu550, xuu560, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_[], bdb)) -> new_ltEs(xuu550, xuu560, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(xuu550), Right(xuu560), bda, app(app(ty_@2, bdc), bdd)) -> new_ltEs0(xuu550, xuu560, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu550), Left(xuu560), app(app(ty_@2, bca), bcb), bbh) -> new_ltEs0(xuu550, xuu560, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(xuu550), Right(xuu560), bda, app(ty_Maybe, bde)) -> new_ltEs1(xuu550, xuu560, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(xuu550), Left(xuu560), app(ty_Maybe, bcc), bbh) -> new_ltEs1(xuu550, xuu560, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_Either, bdf), bdg))) -> new_ltEs2(xuu550, xuu560, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(xuu551, xuu561, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_Either, bfa), bfb))) -> new_ltEs2(xuu552, xuu562, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs2(xuu550, xuu560, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_Either, bcd), bce)), bbh)) -> new_ltEs2(xuu550, xuu560, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_[], baf))) -> new_ltEs(xuu550, xuu560, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_[], bbg)), bbh)) -> new_ltEs(xuu550, xuu560, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_[], gc))) -> new_ltEs(xuu551, xuu561, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_[], bee))) -> new_ltEs(xuu552, xuu562, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_[], bdb))) -> new_ltEs(xuu550, xuu560, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(ty_Maybe, bhc)), bed), bfg)) -> new_lt1(xuu550, xuu560, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(ty_Maybe, bgb)), bfg)) -> new_lt1(xuu551, xuu561, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(ty_Maybe, hh)), he)) -> new_lt1(xuu550, xuu560, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(app(ty_@2, gd), ge))) -> new_ltEs0(xuu551, xuu561, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(app(ty_@2, bag), bah))) -> new_ltEs0(xuu550, xuu560, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(app(ty_@2, bdc), bdd))) -> new_ltEs0(xuu550, xuu560, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(app(ty_@2, bef), beg))) -> new_ltEs0(xuu552, xuu562, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(app(ty_@2, bca), bcb)), bbh)) -> new_ltEs0(xuu550, xuu560, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(app(ty_@3, bhf), bhg), bhh)), bed), bfg)) -> new_lt3(xuu550, xuu560, bhf, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(app(ty_@3, bac), bad), bae)), he)) -> new_lt3(xuu550, xuu560, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(app(ty_@3, bge), bgf), bgg)), bfg)) -> new_lt3(xuu551, xuu561, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, app(app(ty_Either, bhd), bhe)), bed), bfg)) -> new_lt2(xuu550, xuu560, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, app(app(ty_Either, baa), bab)), he)) -> new_lt2(xuu550, xuu560, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), app(app(ty_Either, bgc), bgd)), bfg)) -> new_lt2(xuu551, xuu561, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu550, xuu551), @2(xuu560, xuu561), False, app(app(ty_@2, gb), app(ty_Maybe, gf))) -> new_ltEs1(xuu551, xuu561, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu550), Right(xuu560), False, app(app(ty_Either, bda), app(ty_Maybe, bde))) -> new_ltEs1(xuu550, xuu560, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), False, app(app(app(ty_@3, bec), bed), app(ty_Maybe, beh))) -> new_ltEs1(xuu552, xuu562, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu550), Just(xuu560), False, app(ty_Maybe, app(ty_Maybe, bba))) -> new_ltEs1(xuu550, xuu560, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu550), Left(xuu560), False, app(app(ty_Either, app(ty_Maybe, bcc)), bbh)) -> new_ltEs1(xuu550, xuu560, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (24) YES ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, bb, bc) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb), bb, bc) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, [], xuu401, bb, bc) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs15(xuu552, xuu562, dhc, dhd, dhe) new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), dde, ddf, ddg) -> new_pePe(new_lt23(xuu550, xuu560, dde), new_asAs(new_esEs36(xuu550, xuu560, dde), new_pePe(new_lt22(xuu551, xuu561, ddf), new_asAs(new_esEs37(xuu551, xuu561, ddf), new_ltEs22(xuu552, xuu562, ddg))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs19(xuu40000, xuu3000, fga, fgb, fgc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt17(xuu551, xuu561, dga, dgb, dgc) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_esEs24(xuu550, xuu560, cbg, cbh) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cdf, cdg, cdh) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, cdf), new_asAs(new_esEs10(xuu40001, xuu3001, cdg), new_esEs11(xuu40002, xuu3002, cdh))), cdf, cdg, cdh) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, bf) -> True new_lt23(xuu550, xuu560, app(ty_[], ddh)) -> new_lt11(xuu550, xuu560, ddh) new_ltEs4(Just(xuu550), Nothing, bf) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, ebg)) -> new_esEs12(xuu40001, xuu3001, ebg) new_compare111(xuu153, xuu154, xuu155, xuu156, False, ebh, eca) -> GT new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dhh, eaa) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, dhh), new_esEs5(xuu40001, xuu3001, eaa)), dhh, eaa) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, eac) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, bhd, bhe) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bhd), bhd, bhe) new_ltEs22(xuu552, xuu562, app(ty_Maybe, dgh)) -> new_ltEs4(xuu552, xuu562, dgh) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, cc)) -> new_ltEs4(xuu550, xuu560, cc) new_compare30(Left(xuu40000), Left(xuu3000), efa, efb) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, efa), efa, efb) new_esEs9(xuu40000, xuu3000, app(ty_[], cea)) -> new_esEs23(xuu40000, xuu3000, cea) new_lt9(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_lt17(xuu80, xuu83, bee, bef, beg) new_ltEs19(xuu62, xuu63, app(ty_[], bhf)) -> new_ltEs6(xuu62, xuu63, bhf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, efe) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], hd)) -> new_esEs23(xuu40000, xuu3000, hd) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, bag, bah, bba) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, eec), eed)) -> new_esEs29(xuu400001, xuu30001, eec, eed) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_lt15(xuu550, xuu560, dee, def) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, chf)) -> new_esEs12(xuu40002, xuu3002, chf) new_esEs35(xuu96, xuu98, app(ty_Maybe, dab)) -> new_esEs25(xuu96, xuu98, dab) new_compare0(xuu4000, xuu300, app(app(ty_Either, efa), efb)) -> new_compare30(xuu4000, xuu300, efa, efb) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_ltEs18(xuu82, xuu85, app(ty_Ratio, bgc)) -> new_ltEs7(xuu82, xuu85, bgc) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, be) -> new_esEs17(new_compare6(xuu96, xuu98, be), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_lt7(xuu551, xuu561, dfd, dfe) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), ead, eae) -> new_asAs(new_esEs38(xuu400000, xuu30000, ead), new_esEs39(xuu400001, xuu30001, eae)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_lt4(xuu551, xuu561, dfc) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, ede), edf)) -> new_esEs24(xuu400001, xuu30001, ede, edf) new_esEs10(xuu40001, xuu3001, app(ty_[], cfc)) -> new_esEs23(xuu40001, xuu3001, cfc) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, eac) -> new_esEs26(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Maybe, fca)) -> new_esEs25(xuu400000, xuu30000, fca) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_esEs29(xuu550, xuu560, cbd, cbe) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Maybe, feg)) -> new_ltEs4(xuu550, xuu560, feg) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bcc), bcd)) -> new_esEs29(xuu400000, xuu30000, bcc, bcd) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs32(xuu80, xuu83, app(ty_[], bdf)) -> new_esEs23(xuu80, xuu83, bdf) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, beb)) -> new_lt12(xuu80, xuu83, beb) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs15(xuu550, xuu560, cf, cg, da) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, dcb) -> GT new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(ty_@2, cah), cba)) -> new_ltEs8(xuu55, xuu56, cah, cba) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs19(xuu81, xuu84, bfg, bfh, bga) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, efe) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, efg), efh)) -> new_esEs24(xuu40000, xuu3000, efg, efh) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs19(xuu40001, xuu3001, cfg, cfh, cga) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, fdb), efe) -> new_ltEs7(xuu550, xuu560, fdb) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, dbb), dbc)) -> new_ltEs8(xuu97, xuu99, dbb, dbc) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], cbb)) -> new_lt11(xuu550, xuu560, cbb) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, fgh), fha)) -> new_esEs24(xuu40000, xuu3000, fgh, fha) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, bdb) -> new_fsEs(new_compare6(xuu55, xuu56, bdb)) new_lt20(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_lt12(xuu550, xuu560, cbf) new_esEs36(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_esEs29(xuu550, xuu560, deb, dec) new_lt12(xuu96, xuu98, dab) -> new_esEs17(new_compare29(xuu96, xuu98, dab), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], de)) -> new_esEs23(xuu400000, xuu30000, de) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_esEs25(xuu81, xuu84, bfd) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_Either, fbg), fbh)) -> new_esEs24(xuu400000, xuu30000, fbg, fbh) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, hf), hg)) -> new_esEs24(xuu400000, xuu30000, hf, hg) new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_esEs21(xuu400001, xuu30001, app(ty_Ratio, ga)) -> new_esEs12(xuu400001, xuu30001, ga) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, bce)) -> new_esEs12(xuu400000, xuu30000, bce) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_esEs27(@0, @0) -> True new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs33(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_esEs12(xuu81, xuu84, bfa) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], eef)) -> new_compare15(xuu4000, xuu300, eef) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, ced)) -> new_esEs25(xuu40000, xuu3000, ced) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_esEs24(Left(xuu400000), Right(xuu30000), eab, eac) -> False new_esEs24(Right(xuu400000), Left(xuu30000), eab, eac) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, dff)) -> new_lt12(xuu551, xuu561, dff) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_[], fbf)) -> new_esEs23(xuu400000, xuu30000, fbf) new_esEs23(:(xuu400000, xuu400001), [], hd) -> False new_esEs23([], :(xuu30000, xuu30001), hd) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, fhh)) -> new_esEs12(xuu40000, xuu3000, fhh) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, ffh)) -> new_esEs25(xuu40000, xuu3000, ffh) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), eef) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, eef) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bhh), caa)) -> new_ltEs8(xuu62, xuu63, bhh, caa) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], eff)) -> new_esEs23(xuu40000, xuu3000, eff) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare26(xuu34, xuu35, ddb, ddc, ddd) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, dh)) -> new_esEs25(xuu400000, xuu30000, dh) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, eh), fa)) -> new_esEs24(xuu400001, xuu30001, eh, fa) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, cff)) -> new_esEs25(xuu40001, xuu3001, cff) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs15(xuu551, xuu561, cdc, cdd, cde) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, bdb)) -> new_ltEs7(xuu55, xuu56, bdb) new_esEs32(xuu80, xuu83, app(ty_Maybe, beb)) -> new_esEs25(xuu80, xuu83, beb) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, efe) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, baf)) -> new_esEs12(xuu400000, xuu30000, baf) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs19(xuu400000, xuu30000, ea, eb, ec) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, dce), dcf)) -> new_compare17(xuu34, xuu35, dce, dcf) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, dch), dda)) -> new_compare30(xuu34, xuu35, dch, dda) new_esEs32(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_esEs24(xuu80, xuu83, bec, bed) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fgf)) -> new_esEs12(xuu40000, xuu3000, fgf) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Char) -> new_ltEs17(xuu550, xuu560) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_compare30(Left(xuu40000), Right(xuu3000), efa, efb) -> LT new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_lt15(xuu96, xuu98, dac, dad) new_esEs37(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_esEs29(xuu551, xuu561, dfd, dfe) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs19(xuu40002, xuu3002, cha, chb, chc) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, cgf), cgg)) -> new_esEs24(xuu40002, xuu3002, cgf, cgg) new_compare210(xuu55, xuu56, False, efc) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, efc), efc) new_ltEs23(xuu55, xuu56, app(ty_[], bbb)) -> new_ltEs6(xuu55, xuu56, bbb) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_@2, fce), fcf)) -> new_esEs29(xuu400000, xuu30000, fce, fcf) new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, ehd), ehe)) -> new_ltEs8(xuu69, xuu70, ehd, ehe) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs19(xuu550, xuu560, deg, deh, dfa) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, dae, daf, dag) -> new_esEs17(new_compare26(xuu96, xuu98, dae, daf, dag), LT) new_lt8(xuu81, xuu84, app(ty_[], beh)) -> new_lt11(xuu81, xuu84, beh) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), bf) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, daa) -> new_esEs17(new_compare15(xuu96, xuu98, daa), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, bag, bah, bba) -> GT new_compare16(xuu137, xuu138, True, bcf, bcg) -> LT new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], daa)) -> new_lt11(xuu96, xuu98, daa) new_esEs36(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_esEs24(xuu550, xuu560, dee, def) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, dcd)) -> new_compare6(xuu34, xuu35, dcd) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, cgh)) -> new_esEs25(xuu40002, xuu3002, cgh) new_esEs7(xuu40000, xuu3000, app(ty_[], ffe)) -> new_esEs23(xuu40000, xuu3000, ffe) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, chd), che)) -> new_esEs29(xuu40002, xuu3002, chd, che) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, db), dc), dd)) -> new_esEs19(xuu40000, xuu3000, db, dc, dd) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_lt15(xuu551, xuu561, dfg, dfh) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bbe), bbf)) -> new_esEs24(xuu400000, xuu30000, bbe, bbf) new_compare0(xuu4000, xuu300, app(app(ty_@2, dhh), eaa)) -> new_compare17(xuu4000, xuu300, dhh, eaa) new_compare29(Just(xuu40000), Nothing, eeh) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, bdc, bdd, bde) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], bgb)) -> new_ltEs6(xuu82, xuu85, bgb) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, ebb), ebc), ebd)) -> new_esEs19(xuu40001, xuu3001, ebb, ebc, ebd) new_ltEs24(xuu69, xuu70, app(ty_[], ehb)) -> new_ltEs6(xuu69, xuu70, ehb) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, eag), eah)) -> new_esEs24(xuu40001, xuu3001, eag, eah) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, fdh), fea), feb), efe) -> new_ltEs15(xuu550, xuu560, fdh, fea, feb) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, eba)) -> new_esEs25(xuu40001, xuu3001, eba) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), db, dc, dd) -> new_asAs(new_esEs20(xuu400000, xuu30000, db), new_asAs(new_esEs21(xuu400001, xuu30001, dc), new_esEs22(xuu400002, xuu30002, dd))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, app(ty_[], dgd)) -> new_ltEs6(xuu552, xuu562, dgd) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, bbc)) -> new_esEs25(xuu40000, xuu3000, bbc) new_esEs22(xuu400002, xuu30002, app(ty_[], gb)) -> new_esEs23(xuu400002, xuu30002, gb) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, fbc), fbd), eac) -> new_esEs29(xuu400000, xuu30000, fbc, fbd) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs19(xuu96, xuu98, dae, daf, dag) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs13(LT, LT) -> True new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, efe) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, bad), bae)) -> new_esEs29(xuu400000, xuu30000, bad, bae) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, eab), eac)) -> new_esEs24(xuu40000, xuu3000, eab, eac) new_lt21(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_lt17(xuu96, xuu98, dae, daf, dag) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, eac) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], fda), efe) -> new_ltEs6(xuu550, xuu560, fda) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, fag), eac) -> new_esEs25(xuu400000, xuu30000, fag) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), eeh) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], ccd)) -> new_ltEs6(xuu551, xuu561, ccd) new_esEs36(xuu550, xuu560, app(ty_Maybe, ded)) -> new_esEs25(xuu550, xuu560, ded) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_lt15(xuu550, xuu560, cbg, cbh) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, cgb), cgc)) -> new_esEs29(xuu40001, xuu3001, cgb, cgc) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs19(xuu400000, xuu30000, ecf, ecg, ech) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, eac) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_esEs29(xuu81, xuu84, bfb, bfc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_esEs24(xuu551, xuu561, dfg, dfh) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, ecc), ecd)) -> new_esEs24(xuu400000, xuu30000, ecc, ecd) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], bdf)) -> new_lt11(xuu80, xuu83, bdf) new_compare30(Right(xuu40000), Right(xuu3000), efa, efb) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, efb), efa, efb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, cd), ce)) -> new_ltEs11(xuu550, xuu560, cd, ce) new_esEs37(xuu551, xuu561, app(ty_Maybe, dff)) -> new_esEs25(xuu551, xuu561, dff) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, eeg)) -> new_compare6(xuu4000, xuu300, eeg) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, ece)) -> new_esEs25(xuu400000, xuu30000, ece) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], hd) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt17(xuu550, xuu560, cca, ccb, ccc) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_esEs29(xuu80, xuu83, bdh, bea) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, fch) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_lt7(xuu96, xuu98, bch, bda) -> new_esEs17(new_compare17(xuu96, xuu98, bch, bda), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs19(xuu551, xuu561, dga, dgb, dgc) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], dah)) -> new_ltEs6(xuu97, xuu99, dah) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, dgf), dgg)) -> new_ltEs8(xuu552, xuu562, dgf, dgg) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, fch) -> LT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs19(xuu550, xuu560, cca, ccb, ccc) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fff), ffg)) -> new_esEs24(xuu40000, xuu3000, fff, ffg) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, hc)) -> new_esEs12(xuu400002, xuu30002, hc) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, efe) -> new_ltEs17(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(app(ty_@2, ed), ee)) -> new_esEs29(xuu400000, xuu30000, ed, ee) new_esEs32(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_esEs12(xuu80, xuu83, bdg) new_ltEs13(GT, GT) -> True new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, chg, chh) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, chg), new_asAs(new_esEs35(xuu96, xuu98, chg), new_ltEs21(xuu97, xuu99, chh)), chg, chh) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], ddh)) -> new_esEs23(xuu550, xuu560, ddh) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, ebh, eca) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, dea)) -> new_lt4(xuu550, xuu560, dea) new_esEs31(xuu400000, xuu30000, app(ty_[], he)) -> new_esEs23(xuu400000, xuu30000, he) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, dhf, dhg) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), hd) -> new_asAs(new_esEs31(xuu400000, xuu30000, hd), new_esEs23(xuu400001, xuu30001, hd)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, edg)) -> new_esEs25(xuu400001, xuu30001, edg) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, fae), faf), eac) -> new_esEs24(xuu400000, xuu30000, fae, faf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, efe) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_ltEs15(xuu550, xuu560, ffb, ffc, ffd) new_compare16(xuu137, xuu138, False, bcf, bcg) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, dcg)) -> new_compare29(xuu34, xuu35, dcg) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_esEs25(xuu550, xuu560, cbf) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs19(xuu400001, xuu30001, edh, eea, eeb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, ca), cb)) -> new_ltEs8(xuu550, xuu560, ca, cb) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, cfb)) -> new_esEs12(xuu40000, xuu3000, cfb) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_esEs24(xuu96, xuu98, dac, dad) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, eac) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), efd, efe) -> True new_compare15([], [], eef) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), bd) -> new_asAs(new_esEs13(xuu400000, xuu30000, bd), new_esEs14(xuu400001, xuu30001, bd)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, fde), efe) -> new_ltEs4(xuu550, xuu560, fde) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, bbg)) -> new_esEs25(xuu400000, xuu30000, bbg) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_esEs29(xuu96, xuu98, bch, bda) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], eg)) -> new_esEs23(xuu400001, xuu30001, eg) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_ltEs13(LT, GT) -> True new_esEs8(xuu40000, xuu3000, app(ty_[], fgg)) -> new_esEs23(xuu40000, xuu3000, fgg) new_esEs33(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_esEs24(xuu81, xuu84, bfe, bff) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, eda), edb)) -> new_esEs29(xuu400000, xuu30000, eda, edb) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], edd)) -> new_esEs23(xuu400001, xuu30001, edd) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, cfd), cfe)) -> new_esEs24(xuu40001, xuu3001, cfd, cfe) new_compare25(xuu62, xuu63, True, bhd, bhe) -> EQ new_compare210(xuu55, xuu56, True, efc) -> EQ new_lt22(xuu551, xuu561, app(ty_[], dfb)) -> new_lt11(xuu551, xuu561, dfb) new_lt23(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_lt17(xuu550, xuu560, deg, deh, dfa) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_ltEs22(xuu552, xuu562, app(ty_Ratio, dge)) -> new_ltEs7(xuu552, xuu562, dge) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs19(xuu40000, xuu3000, fhc, fhd, fhe) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs19(xuu400000, xuu30000, bbh, bca, bcb) new_compare7(EQ, GT) -> LT new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs19(xuu400000, xuu30000, baa, bab, bac) new_lt8(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_lt12(xuu81, xuu84, bfd) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_lt8(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt17(xuu81, xuu84, bfg, bfh, bga) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, ega)) -> new_esEs25(xuu40000, xuu3000, ega) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, egg)) -> new_esEs12(xuu40000, xuu3000, egg) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, eac) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, ead), eae)) -> new_esEs29(xuu40000, xuu3000, ead, eae) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs15(xuu97, xuu99, dbg, dbh, dca) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, cgd)) -> new_esEs12(xuu40001, xuu3001, cgd) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, hh)) -> new_esEs25(xuu400000, xuu30000, hh) new_compare8(True, True) -> EQ new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, eac) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), efd, efe) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, ehc)) -> new_ltEs7(xuu69, xuu70, ehc) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_[], fec)) -> new_ltEs6(xuu550, xuu560, fec) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Ratio, fcg)) -> new_esEs12(xuu400000, xuu30000, fcg) new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs19(xuu40000, xuu3000, egb, egc, egd) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, bdc, bdd, bde) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, bdc), new_asAs(new_esEs32(xuu80, xuu83, bdc), new_pePe(new_lt8(xuu81, xuu84, bdd), new_asAs(new_esEs33(xuu81, xuu84, bdd), new_ltEs18(xuu82, xuu85, bde)))), bdc, bdd, bde) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, fhb)) -> new_esEs25(xuu40000, xuu3000, fhb) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, bh)) -> new_ltEs7(xuu550, xuu560, bh) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_lt15(xuu81, xuu84, bfe, bff) new_compare15([], :(xuu3000, xuu3001), eef) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, df), dg)) -> new_esEs24(xuu400000, xuu30000, df, dg) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, efe) -> new_ltEs13(xuu550, xuu560) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, fdf), fdg), efe) -> new_ltEs11(xuu550, xuu560, fdf, fdg) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs15(xuu82, xuu85, bha, bhb, bhc) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs19(xuu400001, xuu30001, fc, fd, ff) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_compare19(xuu130, xuu131, False, dhf, dhg) -> GT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, app(ty_Maybe, fb)) -> new_esEs25(xuu400001, xuu30001, fb) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, ef)) -> new_esEs12(xuu400000, xuu30000, ef) new_ltEs20(xuu551, xuu561, app(app(ty_@2, ccf), ccg)) -> new_ltEs8(xuu551, xuu561, ccf, ccg) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], eaf)) -> new_esEs23(xuu40001, xuu3001, eaf) new_lt15(xuu96, xuu98, dac, dad) -> new_esEs17(new_compare30(xuu96, xuu98, dac, dad), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, dab)) -> new_lt12(xuu96, xuu98, dab) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs19(xuu80, xuu83, bee, bef, beg) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs15(xuu62, xuu63, cae, caf, cag) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], bbd)) -> new_esEs23(xuu400000, xuu30000, bbd) new_lt9(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_lt15(xuu80, xuu83, bec, bed) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, eee)) -> new_esEs12(xuu400001, xuu30001, eee) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_@2, fee), fef)) -> new_ltEs8(xuu550, xuu560, fee, fef) new_compare29(Just(xuu40000), Just(xuu3000), eeh) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, eeh), eeh) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, dba)) -> new_ltEs7(xuu97, xuu99, dba) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, efe) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, ehf)) -> new_ltEs4(xuu69, xuu70, ehf) new_compare15(:(xuu40000, xuu40001), [], eef) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_ltEs20(xuu551, xuu561, app(app(ty_Either, cda), cdb)) -> new_ltEs11(xuu551, xuu561, cda, cdb) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, faa), fab), fac)) -> new_ltEs15(xuu69, xuu70, faa, fab, fac) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, ceb), cec)) -> new_esEs24(xuu40000, xuu3000, ceb, cec) new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt8(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_lt4(xuu81, xuu84, bfa) new_ltEs18(xuu82, xuu85, app(app(ty_@2, bgd), bge)) -> new_ltEs8(xuu82, xuu85, bgd, bge) new_lt20(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_lt4(xuu550, xuu560, cbc) new_lt20(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_lt7(xuu550, xuu560, cbd, cbe) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, fah), fba), fbb), eac) -> new_esEs19(xuu400000, xuu30000, fah, fba, fbb) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs19(xuu40000, xuu3000, cee, cef, ceg) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, ge)) -> new_esEs25(xuu400002, xuu30002, ge) new_ltEs18(xuu82, xuu85, app(ty_Maybe, bgf)) -> new_ltEs4(xuu82, xuu85, bgf) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_Either, feh), ffa)) -> new_ltEs11(xuu550, xuu560, feh, ffa) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, ha), hb)) -> new_esEs29(xuu400002, xuu30002, ha, hb) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_compare7(LT, GT) -> LT new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), efa, efb) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs6(xuu40000, xuu3000, app(app(ty_@2, ege), egf)) -> new_esEs29(xuu40000, xuu3000, ege, egf) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bhg)) -> new_ltEs7(xuu62, xuu63, bhg) new_esEs35(xuu96, xuu98, app(ty_Ratio, be)) -> new_esEs12(xuu96, xuu98, be) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs19(xuu400002, xuu30002, gf, gg, gh) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, gc), gd)) -> new_esEs24(xuu400002, xuu30002, gc, gd) new_lt23(xuu550, xuu560, app(ty_Maybe, ded)) -> new_lt12(xuu550, xuu560, ded) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, ehg), ehh)) -> new_ltEs11(xuu69, xuu70, ehg, ehh) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, bgg), bgh)) -> new_ltEs11(xuu82, xuu85, bgg, bgh) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, be)) -> new_lt4(xuu96, xuu98, be) new_esEs33(xuu81, xuu84, app(ty_[], beh)) -> new_esEs23(xuu81, xuu84, beh) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, chg, chh) -> EQ new_esEs17(GT, GT) -> True new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs19(xuu400000, xuu30000, fcb, fcc, fcd) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_ltEs19(xuu62, xuu63, app(app(ty_Either, cac), cad)) -> new_ltEs11(xuu62, xuu63, cac, cad) new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, fdc), fdd), efe) -> new_ltEs8(xuu550, xuu560, fdc, fdd) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), cah, cba) -> new_pePe(new_lt20(xuu550, xuu560, cah), new_asAs(new_esEs34(xuu550, xuu560, cah), new_ltEs20(xuu551, xuu561, cba))) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, bd)) -> new_esEs12(xuu40000, xuu3000, bd) new_esEs38(xuu400000, xuu30000, app(ty_[], ecb)) -> new_esEs23(xuu400000, xuu30000, ecb) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, cce)) -> new_ltEs7(xuu551, xuu561, cce) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, ebe), ebf)) -> new_esEs29(xuu40001, xuu3001, ebe, ebf) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, eac) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_lt7(xuu96, xuu98, bch, bda) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, egh, eha) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, bf)) -> new_ltEs4(xuu55, xuu56, bf) new_esEs34(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_esEs12(xuu550, xuu560, cbc) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_compare26(xuu4000, xuu300, cdf, cdg, cdh) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Ratio, fed)) -> new_ltEs7(xuu550, xuu560, fed) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, dcb) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, fg), fh)) -> new_esEs29(xuu400001, xuu30001, fg, fh) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, dde), ddf), ddg)) -> new_ltEs15(xuu55, xuu56, dde, ddf, ddg) new_ltEs6(xuu55, xuu56, bbb) -> new_fsEs(new_compare15(xuu55, xuu56, bbb)) new_lt9(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_lt7(xuu80, xuu83, bdh, bea) new_compare0(xuu4000, xuu300, app(ty_Maybe, eeh)) -> new_compare29(xuu4000, xuu300, eeh) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ceh), cfa)) -> new_esEs29(xuu40000, xuu3000, ceh, cfa) new_ltEs21(xuu97, xuu99, app(app(ty_Either, dbe), dbf)) -> new_ltEs11(xuu97, xuu99, dbe, dbf) new_esEs37(xuu551, xuu561, app(ty_[], dfb)) -> new_esEs23(xuu551, xuu561, dfb) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], bg)) -> new_ltEs6(xuu550, xuu560, bg) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, eeh) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, edc)) -> new_esEs12(xuu400000, xuu30000, edc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], cge)) -> new_esEs23(xuu40002, xuu3002, cge) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, efd), efe)) -> new_ltEs11(xuu55, xuu56, efd, efe) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], cbb)) -> new_esEs23(xuu550, xuu560, cbb) new_compare211(xuu69, xuu70, False, egh, eha) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, eha), egh, eha) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, fbe), eac) -> new_esEs12(xuu400000, xuu30000, fbe) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], fad), eac) -> new_esEs23(xuu400000, xuu30000, fad) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, dbd)) -> new_ltEs4(xuu97, xuu99, dbd) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fgd), fge)) -> new_esEs29(xuu40000, xuu3000, fgd, fge) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xuu550, xuu560, app(ty_Ratio, dea)) -> new_esEs12(xuu550, xuu560, dea) new_lt23(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_lt7(xuu550, xuu560, deb, dec) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], dcc)) -> new_compare15(xuu34, xuu35, dcc) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, cab)) -> new_ltEs4(xuu62, xuu63, cab) new_esEs37(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_esEs12(xuu551, xuu561, dfc) new_esEs25(Nothing, Nothing, bbc) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Just(xuu30000), bbc) -> False new_esEs25(Just(xuu400000), Nothing, bbc) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_lt7(xuu81, xuu84, bfb, bfc) new_ltEs22(xuu552, xuu562, app(app(ty_Either, dha), dhb)) -> new_ltEs11(xuu552, xuu562, dha, dhb) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, fhf), fhg)) -> new_esEs29(xuu40000, xuu3000, fhf, fhg) new_ltEs20(xuu551, xuu561, app(ty_Maybe, cch)) -> new_ltEs4(xuu551, xuu561, cch) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], daa)) -> new_esEs23(xuu96, xuu98, daa) new_lt9(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_lt4(xuu80, xuu83, bdg) new_esEs28(False, False) -> True The set Q consists of the following terms: new_compare15([], [], x0) new_compare29(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_lt7(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Float) new_lt15(x0, x1, x2, x3) new_compare12(x0, x1) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, False, x2) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs28(False, True) new_esEs28(True, False) new_lt4(x0, x1, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_esEs5(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, False, x2, x3) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_@0) new_esEs23([], :(x0, x1), x2) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, ty_Int) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs23(:(x0, x1), :(x2, x3), x4) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Int) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_compare7(GT, EQ) new_compare7(EQ, GT) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt20(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, x2, x3, False, x4, x5) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Bool) new_compare30(Left(x0), Left(x1), x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs18(Float(x0, x1), Float(x2, x3)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_asAs(True, x0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare112(x0, x1, True, x2) new_esEs34(x0, x1, ty_Int) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Double) new_compare9(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_compare29(Just(x0), Just(x1), x2) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs24(x0, x1, ty_Double) new_compare18(Char(x0), Char(x1)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_not(True) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare16(x0, x1, True, x2, x3) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_lt10(x0, x1) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2) new_lt8(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_esEs35(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_compare19(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, True, x2) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_esEs23(:(x0, x1), [], x2) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare7(EQ, LT) new_compare7(LT, EQ) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs35(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs23([], [], x0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, ty_Ordering) new_ltEs6(x0, x1, x2) new_esEs37(x0, x1, ty_Double) new_lt12(x0, x1, x2) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqNat0(Zero, Succ(x0)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, GT, x2) new_esEs14(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Integer) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare15([], :(x0, x1), x2) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(True, False) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_compare8(False, True) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_lt17(x0, x1, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(:(x0, x1), :(x2, x3), x4) new_compare29(Nothing, Nothing, x0) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, LT, x2) new_esEs21(x0, x1, ty_Int) new_compare0(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_esEs32(x0, x1, ty_@0) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Nothing, Nothing, x0) new_esEs25(Just(x0), Just(x1), ty_Char) new_compare29(Just(x0), Nothing, x1) new_esEs31(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_esEs25(Just(x0), Nothing, x1) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_pePe(True, x0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_esEs28(True, True) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs26(Char(x0), Char(x1)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs10(x0, x1) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_compare15(:(x0, x1), [], x2) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_lt23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs30(Double(x0, x1), Double(x2, x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs17(GT, GT) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt19(x0, x1) new_esEs25(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare27(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_ltEs4(Just(x0), Nothing, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs31(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare7(EQ, EQ) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs25(Nothing, Nothing, x0) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_primCmpNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (27) Complex Obligation (AND) ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs15(xuu552, xuu562, dhc, dhd, dhe) new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), dde, ddf, ddg) -> new_pePe(new_lt23(xuu550, xuu560, dde), new_asAs(new_esEs36(xuu550, xuu560, dde), new_pePe(new_lt22(xuu551, xuu561, ddf), new_asAs(new_esEs37(xuu551, xuu561, ddf), new_ltEs22(xuu552, xuu562, ddg))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs19(xuu40000, xuu3000, fga, fgb, fgc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt17(xuu551, xuu561, dga, dgb, dgc) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_esEs24(xuu550, xuu560, cbg, cbh) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cdf, cdg, cdh) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, cdf), new_asAs(new_esEs10(xuu40001, xuu3001, cdg), new_esEs11(xuu40002, xuu3002, cdh))), cdf, cdg, cdh) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, bf) -> True new_lt23(xuu550, xuu560, app(ty_[], ddh)) -> new_lt11(xuu550, xuu560, ddh) new_ltEs4(Just(xuu550), Nothing, bf) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, ebg)) -> new_esEs12(xuu40001, xuu3001, ebg) new_compare111(xuu153, xuu154, xuu155, xuu156, False, ebh, eca) -> GT new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dhh, eaa) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, dhh), new_esEs5(xuu40001, xuu3001, eaa)), dhh, eaa) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, eac) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, bhd, bhe) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bhd), bhd, bhe) new_ltEs22(xuu552, xuu562, app(ty_Maybe, dgh)) -> new_ltEs4(xuu552, xuu562, dgh) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, cc)) -> new_ltEs4(xuu550, xuu560, cc) new_compare30(Left(xuu40000), Left(xuu3000), efa, efb) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, efa), efa, efb) new_esEs9(xuu40000, xuu3000, app(ty_[], cea)) -> new_esEs23(xuu40000, xuu3000, cea) new_lt9(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_lt17(xuu80, xuu83, bee, bef, beg) new_ltEs19(xuu62, xuu63, app(ty_[], bhf)) -> new_ltEs6(xuu62, xuu63, bhf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, efe) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], hd)) -> new_esEs23(xuu40000, xuu3000, hd) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, bag, bah, bba) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, eec), eed)) -> new_esEs29(xuu400001, xuu30001, eec, eed) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_lt15(xuu550, xuu560, dee, def) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, chf)) -> new_esEs12(xuu40002, xuu3002, chf) new_esEs35(xuu96, xuu98, app(ty_Maybe, dab)) -> new_esEs25(xuu96, xuu98, dab) new_compare0(xuu4000, xuu300, app(app(ty_Either, efa), efb)) -> new_compare30(xuu4000, xuu300, efa, efb) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_ltEs18(xuu82, xuu85, app(ty_Ratio, bgc)) -> new_ltEs7(xuu82, xuu85, bgc) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, be) -> new_esEs17(new_compare6(xuu96, xuu98, be), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_lt7(xuu551, xuu561, dfd, dfe) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), ead, eae) -> new_asAs(new_esEs38(xuu400000, xuu30000, ead), new_esEs39(xuu400001, xuu30001, eae)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_lt4(xuu551, xuu561, dfc) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, ede), edf)) -> new_esEs24(xuu400001, xuu30001, ede, edf) new_esEs10(xuu40001, xuu3001, app(ty_[], cfc)) -> new_esEs23(xuu40001, xuu3001, cfc) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, eac) -> new_esEs26(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Maybe, fca)) -> new_esEs25(xuu400000, xuu30000, fca) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_esEs29(xuu550, xuu560, cbd, cbe) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Maybe, feg)) -> new_ltEs4(xuu550, xuu560, feg) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bcc), bcd)) -> new_esEs29(xuu400000, xuu30000, bcc, bcd) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs32(xuu80, xuu83, app(ty_[], bdf)) -> new_esEs23(xuu80, xuu83, bdf) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, beb)) -> new_lt12(xuu80, xuu83, beb) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs15(xuu550, xuu560, cf, cg, da) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, dcb) -> GT new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(ty_@2, cah), cba)) -> new_ltEs8(xuu55, xuu56, cah, cba) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs19(xuu81, xuu84, bfg, bfh, bga) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, efe) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, efg), efh)) -> new_esEs24(xuu40000, xuu3000, efg, efh) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs19(xuu40001, xuu3001, cfg, cfh, cga) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, fdb), efe) -> new_ltEs7(xuu550, xuu560, fdb) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, dbb), dbc)) -> new_ltEs8(xuu97, xuu99, dbb, dbc) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], cbb)) -> new_lt11(xuu550, xuu560, cbb) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, fgh), fha)) -> new_esEs24(xuu40000, xuu3000, fgh, fha) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, bdb) -> new_fsEs(new_compare6(xuu55, xuu56, bdb)) new_lt20(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_lt12(xuu550, xuu560, cbf) new_esEs36(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_esEs29(xuu550, xuu560, deb, dec) new_lt12(xuu96, xuu98, dab) -> new_esEs17(new_compare29(xuu96, xuu98, dab), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], de)) -> new_esEs23(xuu400000, xuu30000, de) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_esEs25(xuu81, xuu84, bfd) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_Either, fbg), fbh)) -> new_esEs24(xuu400000, xuu30000, fbg, fbh) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, hf), hg)) -> new_esEs24(xuu400000, xuu30000, hf, hg) new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_esEs21(xuu400001, xuu30001, app(ty_Ratio, ga)) -> new_esEs12(xuu400001, xuu30001, ga) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, bce)) -> new_esEs12(xuu400000, xuu30000, bce) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_esEs27(@0, @0) -> True new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs33(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_esEs12(xuu81, xuu84, bfa) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], eef)) -> new_compare15(xuu4000, xuu300, eef) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, ced)) -> new_esEs25(xuu40000, xuu3000, ced) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_esEs24(Left(xuu400000), Right(xuu30000), eab, eac) -> False new_esEs24(Right(xuu400000), Left(xuu30000), eab, eac) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, dff)) -> new_lt12(xuu551, xuu561, dff) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_[], fbf)) -> new_esEs23(xuu400000, xuu30000, fbf) new_esEs23(:(xuu400000, xuu400001), [], hd) -> False new_esEs23([], :(xuu30000, xuu30001), hd) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, fhh)) -> new_esEs12(xuu40000, xuu3000, fhh) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, ffh)) -> new_esEs25(xuu40000, xuu3000, ffh) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), eef) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, eef) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bhh), caa)) -> new_ltEs8(xuu62, xuu63, bhh, caa) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], eff)) -> new_esEs23(xuu40000, xuu3000, eff) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare26(xuu34, xuu35, ddb, ddc, ddd) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, dh)) -> new_esEs25(xuu400000, xuu30000, dh) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, eh), fa)) -> new_esEs24(xuu400001, xuu30001, eh, fa) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, cff)) -> new_esEs25(xuu40001, xuu3001, cff) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs15(xuu551, xuu561, cdc, cdd, cde) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, bdb)) -> new_ltEs7(xuu55, xuu56, bdb) new_esEs32(xuu80, xuu83, app(ty_Maybe, beb)) -> new_esEs25(xuu80, xuu83, beb) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, efe) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, baf)) -> new_esEs12(xuu400000, xuu30000, baf) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs19(xuu400000, xuu30000, ea, eb, ec) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, dce), dcf)) -> new_compare17(xuu34, xuu35, dce, dcf) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, dch), dda)) -> new_compare30(xuu34, xuu35, dch, dda) new_esEs32(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_esEs24(xuu80, xuu83, bec, bed) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fgf)) -> new_esEs12(xuu40000, xuu3000, fgf) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Char) -> new_ltEs17(xuu550, xuu560) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_compare30(Left(xuu40000), Right(xuu3000), efa, efb) -> LT new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_lt15(xuu96, xuu98, dac, dad) new_esEs37(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_esEs29(xuu551, xuu561, dfd, dfe) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs19(xuu40002, xuu3002, cha, chb, chc) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, cgf), cgg)) -> new_esEs24(xuu40002, xuu3002, cgf, cgg) new_compare210(xuu55, xuu56, False, efc) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, efc), efc) new_ltEs23(xuu55, xuu56, app(ty_[], bbb)) -> new_ltEs6(xuu55, xuu56, bbb) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_@2, fce), fcf)) -> new_esEs29(xuu400000, xuu30000, fce, fcf) new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, ehd), ehe)) -> new_ltEs8(xuu69, xuu70, ehd, ehe) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs19(xuu550, xuu560, deg, deh, dfa) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, dae, daf, dag) -> new_esEs17(new_compare26(xuu96, xuu98, dae, daf, dag), LT) new_lt8(xuu81, xuu84, app(ty_[], beh)) -> new_lt11(xuu81, xuu84, beh) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), bf) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, daa) -> new_esEs17(new_compare15(xuu96, xuu98, daa), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, bag, bah, bba) -> GT new_compare16(xuu137, xuu138, True, bcf, bcg) -> LT new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], daa)) -> new_lt11(xuu96, xuu98, daa) new_esEs36(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_esEs24(xuu550, xuu560, dee, def) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, dcd)) -> new_compare6(xuu34, xuu35, dcd) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, cgh)) -> new_esEs25(xuu40002, xuu3002, cgh) new_esEs7(xuu40000, xuu3000, app(ty_[], ffe)) -> new_esEs23(xuu40000, xuu3000, ffe) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, chd), che)) -> new_esEs29(xuu40002, xuu3002, chd, che) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, db), dc), dd)) -> new_esEs19(xuu40000, xuu3000, db, dc, dd) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_lt15(xuu551, xuu561, dfg, dfh) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bbe), bbf)) -> new_esEs24(xuu400000, xuu30000, bbe, bbf) new_compare0(xuu4000, xuu300, app(app(ty_@2, dhh), eaa)) -> new_compare17(xuu4000, xuu300, dhh, eaa) new_compare29(Just(xuu40000), Nothing, eeh) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, bdc, bdd, bde) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], bgb)) -> new_ltEs6(xuu82, xuu85, bgb) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, ebb), ebc), ebd)) -> new_esEs19(xuu40001, xuu3001, ebb, ebc, ebd) new_ltEs24(xuu69, xuu70, app(ty_[], ehb)) -> new_ltEs6(xuu69, xuu70, ehb) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, eag), eah)) -> new_esEs24(xuu40001, xuu3001, eag, eah) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, fdh), fea), feb), efe) -> new_ltEs15(xuu550, xuu560, fdh, fea, feb) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, eba)) -> new_esEs25(xuu40001, xuu3001, eba) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), db, dc, dd) -> new_asAs(new_esEs20(xuu400000, xuu30000, db), new_asAs(new_esEs21(xuu400001, xuu30001, dc), new_esEs22(xuu400002, xuu30002, dd))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, app(ty_[], dgd)) -> new_ltEs6(xuu552, xuu562, dgd) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, bbc)) -> new_esEs25(xuu40000, xuu3000, bbc) new_esEs22(xuu400002, xuu30002, app(ty_[], gb)) -> new_esEs23(xuu400002, xuu30002, gb) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, fbc), fbd), eac) -> new_esEs29(xuu400000, xuu30000, fbc, fbd) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs19(xuu96, xuu98, dae, daf, dag) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs13(LT, LT) -> True new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, efe) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, bad), bae)) -> new_esEs29(xuu400000, xuu30000, bad, bae) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, eab), eac)) -> new_esEs24(xuu40000, xuu3000, eab, eac) new_lt21(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_lt17(xuu96, xuu98, dae, daf, dag) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, eac) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], fda), efe) -> new_ltEs6(xuu550, xuu560, fda) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, fag), eac) -> new_esEs25(xuu400000, xuu30000, fag) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), eeh) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], ccd)) -> new_ltEs6(xuu551, xuu561, ccd) new_esEs36(xuu550, xuu560, app(ty_Maybe, ded)) -> new_esEs25(xuu550, xuu560, ded) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_lt15(xuu550, xuu560, cbg, cbh) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, cgb), cgc)) -> new_esEs29(xuu40001, xuu3001, cgb, cgc) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs19(xuu400000, xuu30000, ecf, ecg, ech) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, eac) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_esEs29(xuu81, xuu84, bfb, bfc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_esEs24(xuu551, xuu561, dfg, dfh) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, ecc), ecd)) -> new_esEs24(xuu400000, xuu30000, ecc, ecd) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], bdf)) -> new_lt11(xuu80, xuu83, bdf) new_compare30(Right(xuu40000), Right(xuu3000), efa, efb) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, efb), efa, efb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, cd), ce)) -> new_ltEs11(xuu550, xuu560, cd, ce) new_esEs37(xuu551, xuu561, app(ty_Maybe, dff)) -> new_esEs25(xuu551, xuu561, dff) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, eeg)) -> new_compare6(xuu4000, xuu300, eeg) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, ece)) -> new_esEs25(xuu400000, xuu30000, ece) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], hd) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt17(xuu550, xuu560, cca, ccb, ccc) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_esEs29(xuu80, xuu83, bdh, bea) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, fch) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_lt7(xuu96, xuu98, bch, bda) -> new_esEs17(new_compare17(xuu96, xuu98, bch, bda), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs19(xuu551, xuu561, dga, dgb, dgc) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], dah)) -> new_ltEs6(xuu97, xuu99, dah) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, dgf), dgg)) -> new_ltEs8(xuu552, xuu562, dgf, dgg) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, fch) -> LT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs19(xuu550, xuu560, cca, ccb, ccc) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fff), ffg)) -> new_esEs24(xuu40000, xuu3000, fff, ffg) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, hc)) -> new_esEs12(xuu400002, xuu30002, hc) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, efe) -> new_ltEs17(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(app(ty_@2, ed), ee)) -> new_esEs29(xuu400000, xuu30000, ed, ee) new_esEs32(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_esEs12(xuu80, xuu83, bdg) new_ltEs13(GT, GT) -> True new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, chg, chh) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, chg), new_asAs(new_esEs35(xuu96, xuu98, chg), new_ltEs21(xuu97, xuu99, chh)), chg, chh) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], ddh)) -> new_esEs23(xuu550, xuu560, ddh) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, ebh, eca) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, dea)) -> new_lt4(xuu550, xuu560, dea) new_esEs31(xuu400000, xuu30000, app(ty_[], he)) -> new_esEs23(xuu400000, xuu30000, he) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, dhf, dhg) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), hd) -> new_asAs(new_esEs31(xuu400000, xuu30000, hd), new_esEs23(xuu400001, xuu30001, hd)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, edg)) -> new_esEs25(xuu400001, xuu30001, edg) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, fae), faf), eac) -> new_esEs24(xuu400000, xuu30000, fae, faf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, efe) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_ltEs15(xuu550, xuu560, ffb, ffc, ffd) new_compare16(xuu137, xuu138, False, bcf, bcg) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, dcg)) -> new_compare29(xuu34, xuu35, dcg) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_esEs25(xuu550, xuu560, cbf) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs19(xuu400001, xuu30001, edh, eea, eeb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, ca), cb)) -> new_ltEs8(xuu550, xuu560, ca, cb) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, cfb)) -> new_esEs12(xuu40000, xuu3000, cfb) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_esEs24(xuu96, xuu98, dac, dad) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, eac) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), efd, efe) -> True new_compare15([], [], eef) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), bd) -> new_asAs(new_esEs13(xuu400000, xuu30000, bd), new_esEs14(xuu400001, xuu30001, bd)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, fde), efe) -> new_ltEs4(xuu550, xuu560, fde) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, bbg)) -> new_esEs25(xuu400000, xuu30000, bbg) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_esEs29(xuu96, xuu98, bch, bda) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], eg)) -> new_esEs23(xuu400001, xuu30001, eg) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_ltEs13(LT, GT) -> True new_esEs8(xuu40000, xuu3000, app(ty_[], fgg)) -> new_esEs23(xuu40000, xuu3000, fgg) new_esEs33(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_esEs24(xuu81, xuu84, bfe, bff) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, eda), edb)) -> new_esEs29(xuu400000, xuu30000, eda, edb) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], edd)) -> new_esEs23(xuu400001, xuu30001, edd) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, cfd), cfe)) -> new_esEs24(xuu40001, xuu3001, cfd, cfe) new_compare25(xuu62, xuu63, True, bhd, bhe) -> EQ new_compare210(xuu55, xuu56, True, efc) -> EQ new_lt22(xuu551, xuu561, app(ty_[], dfb)) -> new_lt11(xuu551, xuu561, dfb) new_lt23(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_lt17(xuu550, xuu560, deg, deh, dfa) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_ltEs22(xuu552, xuu562, app(ty_Ratio, dge)) -> new_ltEs7(xuu552, xuu562, dge) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs19(xuu40000, xuu3000, fhc, fhd, fhe) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs19(xuu400000, xuu30000, bbh, bca, bcb) new_compare7(EQ, GT) -> LT new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs19(xuu400000, xuu30000, baa, bab, bac) new_lt8(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_lt12(xuu81, xuu84, bfd) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_lt8(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt17(xuu81, xuu84, bfg, bfh, bga) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, ega)) -> new_esEs25(xuu40000, xuu3000, ega) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, egg)) -> new_esEs12(xuu40000, xuu3000, egg) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, eac) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, ead), eae)) -> new_esEs29(xuu40000, xuu3000, ead, eae) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs15(xuu97, xuu99, dbg, dbh, dca) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, cgd)) -> new_esEs12(xuu40001, xuu3001, cgd) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, hh)) -> new_esEs25(xuu400000, xuu30000, hh) new_compare8(True, True) -> EQ new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, eac) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), efd, efe) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, ehc)) -> new_ltEs7(xuu69, xuu70, ehc) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_[], fec)) -> new_ltEs6(xuu550, xuu560, fec) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Ratio, fcg)) -> new_esEs12(xuu400000, xuu30000, fcg) new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs19(xuu40000, xuu3000, egb, egc, egd) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, bdc, bdd, bde) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, bdc), new_asAs(new_esEs32(xuu80, xuu83, bdc), new_pePe(new_lt8(xuu81, xuu84, bdd), new_asAs(new_esEs33(xuu81, xuu84, bdd), new_ltEs18(xuu82, xuu85, bde)))), bdc, bdd, bde) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, fhb)) -> new_esEs25(xuu40000, xuu3000, fhb) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, bh)) -> new_ltEs7(xuu550, xuu560, bh) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_lt15(xuu81, xuu84, bfe, bff) new_compare15([], :(xuu3000, xuu3001), eef) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, df), dg)) -> new_esEs24(xuu400000, xuu30000, df, dg) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, efe) -> new_ltEs13(xuu550, xuu560) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, fdf), fdg), efe) -> new_ltEs11(xuu550, xuu560, fdf, fdg) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs15(xuu82, xuu85, bha, bhb, bhc) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs19(xuu400001, xuu30001, fc, fd, ff) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_compare19(xuu130, xuu131, False, dhf, dhg) -> GT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, app(ty_Maybe, fb)) -> new_esEs25(xuu400001, xuu30001, fb) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, ef)) -> new_esEs12(xuu400000, xuu30000, ef) new_ltEs20(xuu551, xuu561, app(app(ty_@2, ccf), ccg)) -> new_ltEs8(xuu551, xuu561, ccf, ccg) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], eaf)) -> new_esEs23(xuu40001, xuu3001, eaf) new_lt15(xuu96, xuu98, dac, dad) -> new_esEs17(new_compare30(xuu96, xuu98, dac, dad), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, dab)) -> new_lt12(xuu96, xuu98, dab) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs19(xuu80, xuu83, bee, bef, beg) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs15(xuu62, xuu63, cae, caf, cag) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], bbd)) -> new_esEs23(xuu400000, xuu30000, bbd) new_lt9(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_lt15(xuu80, xuu83, bec, bed) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, eee)) -> new_esEs12(xuu400001, xuu30001, eee) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_@2, fee), fef)) -> new_ltEs8(xuu550, xuu560, fee, fef) new_compare29(Just(xuu40000), Just(xuu3000), eeh) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, eeh), eeh) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, dba)) -> new_ltEs7(xuu97, xuu99, dba) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, efe) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, ehf)) -> new_ltEs4(xuu69, xuu70, ehf) new_compare15(:(xuu40000, xuu40001), [], eef) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_ltEs20(xuu551, xuu561, app(app(ty_Either, cda), cdb)) -> new_ltEs11(xuu551, xuu561, cda, cdb) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, faa), fab), fac)) -> new_ltEs15(xuu69, xuu70, faa, fab, fac) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, ceb), cec)) -> new_esEs24(xuu40000, xuu3000, ceb, cec) new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt8(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_lt4(xuu81, xuu84, bfa) new_ltEs18(xuu82, xuu85, app(app(ty_@2, bgd), bge)) -> new_ltEs8(xuu82, xuu85, bgd, bge) new_lt20(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_lt4(xuu550, xuu560, cbc) new_lt20(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_lt7(xuu550, xuu560, cbd, cbe) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, fah), fba), fbb), eac) -> new_esEs19(xuu400000, xuu30000, fah, fba, fbb) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs19(xuu40000, xuu3000, cee, cef, ceg) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, ge)) -> new_esEs25(xuu400002, xuu30002, ge) new_ltEs18(xuu82, xuu85, app(ty_Maybe, bgf)) -> new_ltEs4(xuu82, xuu85, bgf) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_Either, feh), ffa)) -> new_ltEs11(xuu550, xuu560, feh, ffa) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, ha), hb)) -> new_esEs29(xuu400002, xuu30002, ha, hb) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_compare7(LT, GT) -> LT new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), efa, efb) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs6(xuu40000, xuu3000, app(app(ty_@2, ege), egf)) -> new_esEs29(xuu40000, xuu3000, ege, egf) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bhg)) -> new_ltEs7(xuu62, xuu63, bhg) new_esEs35(xuu96, xuu98, app(ty_Ratio, be)) -> new_esEs12(xuu96, xuu98, be) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs19(xuu400002, xuu30002, gf, gg, gh) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, gc), gd)) -> new_esEs24(xuu400002, xuu30002, gc, gd) new_lt23(xuu550, xuu560, app(ty_Maybe, ded)) -> new_lt12(xuu550, xuu560, ded) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, ehg), ehh)) -> new_ltEs11(xuu69, xuu70, ehg, ehh) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, bgg), bgh)) -> new_ltEs11(xuu82, xuu85, bgg, bgh) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, be)) -> new_lt4(xuu96, xuu98, be) new_esEs33(xuu81, xuu84, app(ty_[], beh)) -> new_esEs23(xuu81, xuu84, beh) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, chg, chh) -> EQ new_esEs17(GT, GT) -> True new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs19(xuu400000, xuu30000, fcb, fcc, fcd) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_ltEs19(xuu62, xuu63, app(app(ty_Either, cac), cad)) -> new_ltEs11(xuu62, xuu63, cac, cad) new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, fdc), fdd), efe) -> new_ltEs8(xuu550, xuu560, fdc, fdd) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), cah, cba) -> new_pePe(new_lt20(xuu550, xuu560, cah), new_asAs(new_esEs34(xuu550, xuu560, cah), new_ltEs20(xuu551, xuu561, cba))) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, bd)) -> new_esEs12(xuu40000, xuu3000, bd) new_esEs38(xuu400000, xuu30000, app(ty_[], ecb)) -> new_esEs23(xuu400000, xuu30000, ecb) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, cce)) -> new_ltEs7(xuu551, xuu561, cce) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, ebe), ebf)) -> new_esEs29(xuu40001, xuu3001, ebe, ebf) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, eac) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_lt7(xuu96, xuu98, bch, bda) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, egh, eha) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, bf)) -> new_ltEs4(xuu55, xuu56, bf) new_esEs34(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_esEs12(xuu550, xuu560, cbc) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_compare26(xuu4000, xuu300, cdf, cdg, cdh) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Ratio, fed)) -> new_ltEs7(xuu550, xuu560, fed) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, dcb) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, fg), fh)) -> new_esEs29(xuu400001, xuu30001, fg, fh) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, dde), ddf), ddg)) -> new_ltEs15(xuu55, xuu56, dde, ddf, ddg) new_ltEs6(xuu55, xuu56, bbb) -> new_fsEs(new_compare15(xuu55, xuu56, bbb)) new_lt9(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_lt7(xuu80, xuu83, bdh, bea) new_compare0(xuu4000, xuu300, app(ty_Maybe, eeh)) -> new_compare29(xuu4000, xuu300, eeh) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ceh), cfa)) -> new_esEs29(xuu40000, xuu3000, ceh, cfa) new_ltEs21(xuu97, xuu99, app(app(ty_Either, dbe), dbf)) -> new_ltEs11(xuu97, xuu99, dbe, dbf) new_esEs37(xuu551, xuu561, app(ty_[], dfb)) -> new_esEs23(xuu551, xuu561, dfb) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], bg)) -> new_ltEs6(xuu550, xuu560, bg) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, eeh) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, edc)) -> new_esEs12(xuu400000, xuu30000, edc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], cge)) -> new_esEs23(xuu40002, xuu3002, cge) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, efd), efe)) -> new_ltEs11(xuu55, xuu56, efd, efe) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], cbb)) -> new_esEs23(xuu550, xuu560, cbb) new_compare211(xuu69, xuu70, False, egh, eha) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, eha), egh, eha) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, fbe), eac) -> new_esEs12(xuu400000, xuu30000, fbe) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], fad), eac) -> new_esEs23(xuu400000, xuu30000, fad) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, dbd)) -> new_ltEs4(xuu97, xuu99, dbd) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fgd), fge)) -> new_esEs29(xuu40000, xuu3000, fgd, fge) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xuu550, xuu560, app(ty_Ratio, dea)) -> new_esEs12(xuu550, xuu560, dea) new_lt23(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_lt7(xuu550, xuu560, deb, dec) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], dcc)) -> new_compare15(xuu34, xuu35, dcc) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, cab)) -> new_ltEs4(xuu62, xuu63, cab) new_esEs37(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_esEs12(xuu551, xuu561, dfc) new_esEs25(Nothing, Nothing, bbc) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Just(xuu30000), bbc) -> False new_esEs25(Just(xuu400000), Nothing, bbc) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_lt7(xuu81, xuu84, bfb, bfc) new_ltEs22(xuu552, xuu562, app(app(ty_Either, dha), dhb)) -> new_ltEs11(xuu552, xuu562, dha, dhb) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, fhf), fhg)) -> new_esEs29(xuu40000, xuu3000, fhf, fhg) new_ltEs20(xuu551, xuu561, app(ty_Maybe, cch)) -> new_ltEs4(xuu551, xuu561, cch) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], daa)) -> new_esEs23(xuu96, xuu98, daa) new_lt9(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_lt4(xuu80, xuu83, bdg) new_esEs28(False, False) -> True The set Q consists of the following terms: new_compare15([], [], x0) new_compare29(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_lt7(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Float) new_lt15(x0, x1, x2, x3) new_compare12(x0, x1) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, False, x2) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs28(False, True) new_esEs28(True, False) new_lt4(x0, x1, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_esEs5(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, False, x2, x3) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_@0) new_esEs23([], :(x0, x1), x2) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, ty_Int) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs23(:(x0, x1), :(x2, x3), x4) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Int) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_compare7(GT, EQ) new_compare7(EQ, GT) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt20(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, x2, x3, False, x4, x5) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Bool) new_compare30(Left(x0), Left(x1), x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs18(Float(x0, x1), Float(x2, x3)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_asAs(True, x0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare112(x0, x1, True, x2) new_esEs34(x0, x1, ty_Int) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Double) new_compare9(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_compare29(Just(x0), Just(x1), x2) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs24(x0, x1, ty_Double) new_compare18(Char(x0), Char(x1)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_not(True) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare16(x0, x1, True, x2, x3) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_lt10(x0, x1) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2) new_lt8(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_esEs35(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_compare19(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, True, x2) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_esEs23(:(x0, x1), [], x2) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare7(EQ, LT) new_compare7(LT, EQ) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs35(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs23([], [], x0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, ty_Ordering) new_ltEs6(x0, x1, x2) new_esEs37(x0, x1, ty_Double) new_lt12(x0, x1, x2) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqNat0(Zero, Succ(x0)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, GT, x2) new_esEs14(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Integer) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare15([], :(x0, x1), x2) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(True, False) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_compare8(False, True) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_lt17(x0, x1, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(:(x0, x1), :(x2, x3), x4) new_compare29(Nothing, Nothing, x0) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, LT, x2) new_esEs21(x0, x1, ty_Int) new_compare0(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_esEs32(x0, x1, ty_@0) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Nothing, Nothing, x0) new_esEs25(Just(x0), Just(x1), ty_Char) new_compare29(Just(x0), Nothing, x1) new_esEs31(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_esEs25(Just(x0), Nothing, x1) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_pePe(True, x0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_esEs28(True, True) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs26(Char(x0), Char(x1)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs10(x0, x1) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_compare15(:(x0, x1), [], x2) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_lt23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs30(Double(x0, x1), Double(x2, x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs17(GT, GT) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt19(x0, x1) new_esEs25(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare27(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_ltEs4(Just(x0), Nothing, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs31(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare7(EQ, EQ) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs25(Nothing, Nothing, x0) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_primCmpNat0(Zero, Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) 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(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 ---------------------------------------- (30) YES ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb), bb, bc) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs15(xuu552, xuu562, dhc, dhd, dhe) new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), dde, ddf, ddg) -> new_pePe(new_lt23(xuu550, xuu560, dde), new_asAs(new_esEs36(xuu550, xuu560, dde), new_pePe(new_lt22(xuu551, xuu561, ddf), new_asAs(new_esEs37(xuu551, xuu561, ddf), new_ltEs22(xuu552, xuu562, ddg))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs19(xuu40000, xuu3000, fga, fgb, fgc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_lt17(xuu551, xuu561, dga, dgb, dgc) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_esEs24(xuu550, xuu560, cbg, cbh) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), cdf, cdg, cdh) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, cdf), new_asAs(new_esEs10(xuu40001, xuu3001, cdg), new_esEs11(xuu40002, xuu3002, cdh))), cdf, cdg, cdh) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, bf) -> True new_lt23(xuu550, xuu560, app(ty_[], ddh)) -> new_lt11(xuu550, xuu560, ddh) new_ltEs4(Just(xuu550), Nothing, bf) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, ebg)) -> new_esEs12(xuu40001, xuu3001, ebg) new_compare111(xuu153, xuu154, xuu155, xuu156, False, ebh, eca) -> GT new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), dhh, eaa) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, dhh), new_esEs5(xuu40001, xuu3001, eaa)), dhh, eaa) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, eac) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, bhd, bhe) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bhd), bhd, bhe) new_ltEs22(xuu552, xuu562, app(ty_Maybe, dgh)) -> new_ltEs4(xuu552, xuu562, dgh) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, cc)) -> new_ltEs4(xuu550, xuu560, cc) new_compare30(Left(xuu40000), Left(xuu3000), efa, efb) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, efa), efa, efb) new_esEs9(xuu40000, xuu3000, app(ty_[], cea)) -> new_esEs23(xuu40000, xuu3000, cea) new_lt9(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_lt17(xuu80, xuu83, bee, bef, beg) new_ltEs19(xuu62, xuu63, app(ty_[], bhf)) -> new_ltEs6(xuu62, xuu63, bhf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, efe) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], hd)) -> new_esEs23(xuu40000, xuu3000, hd) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, bag, bah, bba) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, eec), eed)) -> new_esEs29(xuu400001, xuu30001, eec, eed) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_lt15(xuu550, xuu560, dee, def) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, chf)) -> new_esEs12(xuu40002, xuu3002, chf) new_esEs35(xuu96, xuu98, app(ty_Maybe, dab)) -> new_esEs25(xuu96, xuu98, dab) new_compare0(xuu4000, xuu300, app(app(ty_Either, efa), efb)) -> new_compare30(xuu4000, xuu300, efa, efb) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_ltEs18(xuu82, xuu85, app(ty_Ratio, bgc)) -> new_ltEs7(xuu82, xuu85, bgc) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, be) -> new_esEs17(new_compare6(xuu96, xuu98, be), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_lt7(xuu551, xuu561, dfd, dfe) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), ead, eae) -> new_asAs(new_esEs38(xuu400000, xuu30000, ead), new_esEs39(xuu400001, xuu30001, eae)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_lt4(xuu551, xuu561, dfc) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, ede), edf)) -> new_esEs24(xuu400001, xuu30001, ede, edf) new_esEs10(xuu40001, xuu3001, app(ty_[], cfc)) -> new_esEs23(xuu40001, xuu3001, cfc) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, eac) -> new_esEs26(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Maybe, fca)) -> new_esEs25(xuu400000, xuu30000, fca) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_esEs29(xuu550, xuu560, cbd, cbe) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Maybe, feg)) -> new_ltEs4(xuu550, xuu560, feg) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bcc), bcd)) -> new_esEs29(xuu400000, xuu30000, bcc, bcd) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs32(xuu80, xuu83, app(ty_[], bdf)) -> new_esEs23(xuu80, xuu83, bdf) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, beb)) -> new_lt12(xuu80, xuu83, beb) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs15(xuu550, xuu560, cf, cg, da) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, dcb) -> GT new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(ty_@2, cah), cba)) -> new_ltEs8(xuu55, xuu56, cah, cba) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs19(xuu81, xuu84, bfg, bfh, bga) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, efe) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, efg), efh)) -> new_esEs24(xuu40000, xuu3000, efg, efh) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs19(xuu40001, xuu3001, cfg, cfh, cga) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, fdb), efe) -> new_ltEs7(xuu550, xuu560, fdb) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, dbb), dbc)) -> new_ltEs8(xuu97, xuu99, dbb, dbc) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], cbb)) -> new_lt11(xuu550, xuu560, cbb) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, fgh), fha)) -> new_esEs24(xuu40000, xuu3000, fgh, fha) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, bdb) -> new_fsEs(new_compare6(xuu55, xuu56, bdb)) new_lt20(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_lt12(xuu550, xuu560, cbf) new_esEs36(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_esEs29(xuu550, xuu560, deb, dec) new_lt12(xuu96, xuu98, dab) -> new_esEs17(new_compare29(xuu96, xuu98, dab), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], de)) -> new_esEs23(xuu400000, xuu30000, de) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_esEs25(xuu81, xuu84, bfd) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_Either, fbg), fbh)) -> new_esEs24(xuu400000, xuu30000, fbg, fbh) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, hf), hg)) -> new_esEs24(xuu400000, xuu30000, hf, hg) new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_esEs21(xuu400001, xuu30001, app(ty_Ratio, ga)) -> new_esEs12(xuu400001, xuu30001, ga) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, bce)) -> new_esEs12(xuu400000, xuu30000, bce) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_esEs27(@0, @0) -> True new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs33(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_esEs12(xuu81, xuu84, bfa) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], eef)) -> new_compare15(xuu4000, xuu300, eef) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, ced)) -> new_esEs25(xuu40000, xuu3000, ced) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_esEs24(Left(xuu400000), Right(xuu30000), eab, eac) -> False new_esEs24(Right(xuu400000), Left(xuu30000), eab, eac) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, dff)) -> new_lt12(xuu551, xuu561, dff) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_[], fbf)) -> new_esEs23(xuu400000, xuu30000, fbf) new_esEs23(:(xuu400000, xuu400001), [], hd) -> False new_esEs23([], :(xuu30000, xuu30001), hd) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, fhh)) -> new_esEs12(xuu40000, xuu3000, fhh) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, ffh)) -> new_esEs25(xuu40000, xuu3000, ffh) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), eef) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, eef) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bhh), caa)) -> new_ltEs8(xuu62, xuu63, bhh, caa) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], eff)) -> new_esEs23(xuu40000, xuu3000, eff) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_compare26(xuu34, xuu35, ddb, ddc, ddd) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, dh)) -> new_esEs25(xuu400000, xuu30000, dh) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, eh), fa)) -> new_esEs24(xuu400001, xuu30001, eh, fa) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, cff)) -> new_esEs25(xuu40001, xuu3001, cff) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs15(xuu551, xuu561, cdc, cdd, cde) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, bdb)) -> new_ltEs7(xuu55, xuu56, bdb) new_esEs32(xuu80, xuu83, app(ty_Maybe, beb)) -> new_esEs25(xuu80, xuu83, beb) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, efe) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, baf)) -> new_esEs12(xuu400000, xuu30000, baf) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs19(xuu400000, xuu30000, ea, eb, ec) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, dce), dcf)) -> new_compare17(xuu34, xuu35, dce, dcf) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, dch), dda)) -> new_compare30(xuu34, xuu35, dch, dda) new_esEs32(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_esEs24(xuu80, xuu83, bec, bed) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fgf)) -> new_esEs12(xuu40000, xuu3000, fgf) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Char) -> new_ltEs17(xuu550, xuu560) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_compare30(Left(xuu40000), Right(xuu3000), efa, efb) -> LT new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_lt15(xuu96, xuu98, dac, dad) new_esEs37(xuu551, xuu561, app(app(ty_@2, dfd), dfe)) -> new_esEs29(xuu551, xuu561, dfd, dfe) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs19(xuu40002, xuu3002, cha, chb, chc) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, cgf), cgg)) -> new_esEs24(xuu40002, xuu3002, cgf, cgg) new_compare210(xuu55, xuu56, False, efc) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, efc), efc) new_ltEs23(xuu55, xuu56, app(ty_[], bbb)) -> new_ltEs6(xuu55, xuu56, bbb) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(ty_@2, fce), fcf)) -> new_esEs29(xuu400000, xuu30000, fce, fcf) new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, ehd), ehe)) -> new_ltEs8(xuu69, xuu70, ehd, ehe) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs19(xuu550, xuu560, deg, deh, dfa) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, dae, daf, dag) -> new_esEs17(new_compare26(xuu96, xuu98, dae, daf, dag), LT) new_lt8(xuu81, xuu84, app(ty_[], beh)) -> new_lt11(xuu81, xuu84, beh) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), bf) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, daa) -> new_esEs17(new_compare15(xuu96, xuu98, daa), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, bag, bah, bba) -> GT new_compare16(xuu137, xuu138, True, bcf, bcg) -> LT new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], daa)) -> new_lt11(xuu96, xuu98, daa) new_esEs36(xuu550, xuu560, app(app(ty_Either, dee), def)) -> new_esEs24(xuu550, xuu560, dee, def) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, dcd)) -> new_compare6(xuu34, xuu35, dcd) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, cgh)) -> new_esEs25(xuu40002, xuu3002, cgh) new_esEs7(xuu40000, xuu3000, app(ty_[], ffe)) -> new_esEs23(xuu40000, xuu3000, ffe) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, chd), che)) -> new_esEs29(xuu40002, xuu3002, chd, che) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, db), dc), dd)) -> new_esEs19(xuu40000, xuu3000, db, dc, dd) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_lt15(xuu551, xuu561, dfg, dfh) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bbe), bbf)) -> new_esEs24(xuu400000, xuu30000, bbe, bbf) new_compare0(xuu4000, xuu300, app(app(ty_@2, dhh), eaa)) -> new_compare17(xuu4000, xuu300, dhh, eaa) new_compare29(Just(xuu40000), Nothing, eeh) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, bdc, bdd, bde) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], bgb)) -> new_ltEs6(xuu82, xuu85, bgb) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, ebb), ebc), ebd)) -> new_esEs19(xuu40001, xuu3001, ebb, ebc, ebd) new_ltEs24(xuu69, xuu70, app(ty_[], ehb)) -> new_ltEs6(xuu69, xuu70, ehb) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, eag), eah)) -> new_esEs24(xuu40001, xuu3001, eag, eah) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, fdh), fea), feb), efe) -> new_ltEs15(xuu550, xuu560, fdh, fea, feb) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, eba)) -> new_esEs25(xuu40001, xuu3001, eba) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), db, dc, dd) -> new_asAs(new_esEs20(xuu400000, xuu30000, db), new_asAs(new_esEs21(xuu400001, xuu30001, dc), new_esEs22(xuu400002, xuu30002, dd))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, app(ty_[], dgd)) -> new_ltEs6(xuu552, xuu562, dgd) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, bbc)) -> new_esEs25(xuu40000, xuu3000, bbc) new_esEs22(xuu400002, xuu30002, app(ty_[], gb)) -> new_esEs23(xuu400002, xuu30002, gb) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, fbc), fbd), eac) -> new_esEs29(xuu400000, xuu30000, fbc, fbd) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs19(xuu96, xuu98, dae, daf, dag) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs13(LT, LT) -> True new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, efe) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, bad), bae)) -> new_esEs29(xuu400000, xuu30000, bad, bae) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, eab), eac)) -> new_esEs24(xuu40000, xuu3000, eab, eac) new_lt21(xuu96, xuu98, app(app(app(ty_@3, dae), daf), dag)) -> new_lt17(xuu96, xuu98, dae, daf, dag) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, eac) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], fda), efe) -> new_ltEs6(xuu550, xuu560, fda) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, fag), eac) -> new_esEs25(xuu400000, xuu30000, fag) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), eeh) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], ccd)) -> new_ltEs6(xuu551, xuu561, ccd) new_esEs36(xuu550, xuu560, app(ty_Maybe, ded)) -> new_esEs25(xuu550, xuu560, ded) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, cbg), cbh)) -> new_lt15(xuu550, xuu560, cbg, cbh) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, cgb), cgc)) -> new_esEs29(xuu40001, xuu3001, cgb, cgc) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs19(xuu400000, xuu30000, ecf, ecg, ech) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, eac) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_esEs29(xuu81, xuu84, bfb, bfc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, dfg), dfh)) -> new_esEs24(xuu551, xuu561, dfg, dfh) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, ecc), ecd)) -> new_esEs24(xuu400000, xuu30000, ecc, ecd) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], bdf)) -> new_lt11(xuu80, xuu83, bdf) new_compare30(Right(xuu40000), Right(xuu3000), efa, efb) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, efb), efa, efb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, cd), ce)) -> new_ltEs11(xuu550, xuu560, cd, ce) new_esEs37(xuu551, xuu561, app(ty_Maybe, dff)) -> new_esEs25(xuu551, xuu561, dff) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, eeg)) -> new_compare6(xuu4000, xuu300, eeg) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, ece)) -> new_esEs25(xuu400000, xuu30000, ece) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], hd) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_lt17(xuu550, xuu560, cca, ccb, ccc) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_esEs29(xuu80, xuu83, bdh, bea) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, fch) -> GT new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_lt7(xuu96, xuu98, bch, bda) -> new_esEs17(new_compare17(xuu96, xuu98, bch, bda), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs19(xuu551, xuu561, dga, dgb, dgc) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], dah)) -> new_ltEs6(xuu97, xuu99, dah) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, dgf), dgg)) -> new_ltEs8(xuu552, xuu562, dgf, dgg) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, fch) -> LT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs19(xuu550, xuu560, cca, ccb, ccc) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fff), ffg)) -> new_esEs24(xuu40000, xuu3000, fff, ffg) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, hc)) -> new_esEs12(xuu400002, xuu30002, hc) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, efe) -> new_ltEs17(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(app(ty_@2, ed), ee)) -> new_esEs29(xuu400000, xuu30000, ed, ee) new_esEs32(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_esEs12(xuu80, xuu83, bdg) new_ltEs13(GT, GT) -> True new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, chg, chh) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, chg), new_asAs(new_esEs35(xuu96, xuu98, chg), new_ltEs21(xuu97, xuu99, chh)), chg, chh) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], ddh)) -> new_esEs23(xuu550, xuu560, ddh) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, ebh, eca) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, dea)) -> new_lt4(xuu550, xuu560, dea) new_esEs31(xuu400000, xuu30000, app(ty_[], he)) -> new_esEs23(xuu400000, xuu30000, he) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, dhf, dhg) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), hd) -> new_asAs(new_esEs31(xuu400000, xuu30000, hd), new_esEs23(xuu400001, xuu30001, hd)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, edg)) -> new_esEs25(xuu400001, xuu30001, edg) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, bag, bah, bba) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, bag, bah, bba) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, fae), faf), eac) -> new_esEs24(xuu400000, xuu30000, fae, faf) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, efe) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_ltEs15(xuu550, xuu560, ffb, ffc, ffd) new_compare16(xuu137, xuu138, False, bcf, bcg) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, dcg)) -> new_compare29(xuu34, xuu35, dcg) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, cbf)) -> new_esEs25(xuu550, xuu560, cbf) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs19(xuu400001, xuu30001, edh, eea, eeb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, ca), cb)) -> new_ltEs8(xuu550, xuu560, ca, cb) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, cfb)) -> new_esEs12(xuu40000, xuu3000, cfb) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, dac), dad)) -> new_esEs24(xuu96, xuu98, dac, dad) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, eac) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), efd, efe) -> True new_compare15([], [], eef) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), bd) -> new_asAs(new_esEs13(xuu400000, xuu30000, bd), new_esEs14(xuu400001, xuu30001, bd)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, fde), efe) -> new_ltEs4(xuu550, xuu560, fde) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, bbg)) -> new_esEs25(xuu400000, xuu30000, bbg) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_esEs29(xuu96, xuu98, bch, bda) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], eg)) -> new_esEs23(xuu400001, xuu30001, eg) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_ltEs13(LT, GT) -> True new_esEs8(xuu40000, xuu3000, app(ty_[], fgg)) -> new_esEs23(xuu40000, xuu3000, fgg) new_esEs33(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_esEs24(xuu81, xuu84, bfe, bff) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, eda), edb)) -> new_esEs29(xuu400000, xuu30000, eda, edb) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], edd)) -> new_esEs23(xuu400001, xuu30001, edd) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, cfd), cfe)) -> new_esEs24(xuu40001, xuu3001, cfd, cfe) new_compare25(xuu62, xuu63, True, bhd, bhe) -> EQ new_compare210(xuu55, xuu56, True, efc) -> EQ new_lt22(xuu551, xuu561, app(ty_[], dfb)) -> new_lt11(xuu551, xuu561, dfb) new_lt23(xuu550, xuu560, app(app(app(ty_@3, deg), deh), dfa)) -> new_lt17(xuu550, xuu560, deg, deh, dfa) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_ltEs22(xuu552, xuu562, app(ty_Ratio, dge)) -> new_ltEs7(xuu552, xuu562, dge) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, ebh, eca) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, ebh, eca) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs19(xuu40000, xuu3000, fhc, fhd, fhe) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs19(xuu400000, xuu30000, bbh, bca, bcb) new_compare7(EQ, GT) -> LT new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs19(xuu400000, xuu30000, baa, bab, bac) new_lt8(xuu81, xuu84, app(ty_Maybe, bfd)) -> new_lt12(xuu81, xuu84, bfd) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_lt8(xuu81, xuu84, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt17(xuu81, xuu84, bfg, bfh, bga) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, ega)) -> new_esEs25(xuu40000, xuu3000, ega) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, egg)) -> new_esEs12(xuu40000, xuu3000, egg) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, eac) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, ead), eae)) -> new_esEs29(xuu40000, xuu3000, ead, eae) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs15(xuu97, xuu99, dbg, dbh, dca) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, cgd)) -> new_esEs12(xuu40001, xuu3001, cgd) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, hh)) -> new_esEs25(xuu400000, xuu30000, hh) new_compare8(True, True) -> EQ new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, eac) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), efd, efe) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, ehc)) -> new_ltEs7(xuu69, xuu70, ehc) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_[], fec)) -> new_ltEs6(xuu550, xuu560, fec) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(ty_Ratio, fcg)) -> new_esEs12(xuu400000, xuu30000, fcg) new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs19(xuu40000, xuu3000, egb, egc, egd) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, bdc, bdd, bde) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, bdc), new_asAs(new_esEs32(xuu80, xuu83, bdc), new_pePe(new_lt8(xuu81, xuu84, bdd), new_asAs(new_esEs33(xuu81, xuu84, bdd), new_ltEs18(xuu82, xuu85, bde)))), bdc, bdd, bde) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, fhb)) -> new_esEs25(xuu40000, xuu3000, fhb) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, bh)) -> new_ltEs7(xuu550, xuu560, bh) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, bfe), bff)) -> new_lt15(xuu81, xuu84, bfe, bff) new_compare15([], :(xuu3000, xuu3001), eef) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, df), dg)) -> new_esEs24(xuu400000, xuu30000, df, dg) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, efe) -> new_ltEs13(xuu550, xuu560) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, fdf), fdg), efe) -> new_ltEs11(xuu550, xuu560, fdf, fdg) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs15(xuu82, xuu85, bha, bhb, bhc) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs19(xuu400001, xuu30001, fc, fd, ff) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_compare19(xuu130, xuu131, False, dhf, dhg) -> GT new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, app(ty_Maybe, fb)) -> new_esEs25(xuu400001, xuu30001, fb) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, ef)) -> new_esEs12(xuu400000, xuu30000, ef) new_ltEs20(xuu551, xuu561, app(app(ty_@2, ccf), ccg)) -> new_ltEs8(xuu551, xuu561, ccf, ccg) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], eaf)) -> new_esEs23(xuu40001, xuu3001, eaf) new_lt15(xuu96, xuu98, dac, dad) -> new_esEs17(new_compare30(xuu96, xuu98, dac, dad), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, dab)) -> new_lt12(xuu96, xuu98, dab) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs19(xuu80, xuu83, bee, bef, beg) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs15(xuu62, xuu63, cae, caf, cag) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], bbd)) -> new_esEs23(xuu400000, xuu30000, bbd) new_lt9(xuu80, xuu83, app(app(ty_Either, bec), bed)) -> new_lt15(xuu80, xuu83, bec, bed) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, eee)) -> new_esEs12(xuu400001, xuu30001, eee) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_@2, fee), fef)) -> new_ltEs8(xuu550, xuu560, fee, fef) new_compare29(Just(xuu40000), Just(xuu3000), eeh) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, eeh), eeh) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, dba)) -> new_ltEs7(xuu97, xuu99, dba) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, efe) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), efd, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, ehf)) -> new_ltEs4(xuu69, xuu70, ehf) new_compare15(:(xuu40000, xuu40001), [], eef) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_ltEs20(xuu551, xuu561, app(app(ty_Either, cda), cdb)) -> new_ltEs11(xuu551, xuu561, cda, cdb) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, faa), fab), fac)) -> new_ltEs15(xuu69, xuu70, faa, fab, fac) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, ceb), cec)) -> new_esEs24(xuu40000, xuu3000, ceb, cec) new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt8(xuu81, xuu84, app(ty_Ratio, bfa)) -> new_lt4(xuu81, xuu84, bfa) new_ltEs18(xuu82, xuu85, app(app(ty_@2, bgd), bge)) -> new_ltEs8(xuu82, xuu85, bgd, bge) new_lt20(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_lt4(xuu550, xuu560, cbc) new_lt20(xuu550, xuu560, app(app(ty_@2, cbd), cbe)) -> new_lt7(xuu550, xuu560, cbd, cbe) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, fah), fba), fbb), eac) -> new_esEs19(xuu400000, xuu30000, fah, fba, fbb) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs19(xuu40000, xuu3000, cee, cef, ceg) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, ge)) -> new_esEs25(xuu400002, xuu30002, ge) new_ltEs18(xuu82, xuu85, app(ty_Maybe, bgf)) -> new_ltEs4(xuu82, xuu85, bgf) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(app(ty_Either, feh), ffa)) -> new_ltEs11(xuu550, xuu560, feh, ffa) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, ha), hb)) -> new_esEs29(xuu400002, xuu30002, ha, hb) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_compare7(LT, GT) -> LT new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), efa, efb) -> GT new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs6(xuu40000, xuu3000, app(app(ty_@2, ege), egf)) -> new_esEs29(xuu40000, xuu3000, ege, egf) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bhg)) -> new_ltEs7(xuu62, xuu63, bhg) new_esEs35(xuu96, xuu98, app(ty_Ratio, be)) -> new_esEs12(xuu96, xuu98, be) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs19(xuu400002, xuu30002, gf, gg, gh) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, gc), gd)) -> new_esEs24(xuu400002, xuu30002, gc, gd) new_lt23(xuu550, xuu560, app(ty_Maybe, ded)) -> new_lt12(xuu550, xuu560, ded) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, ehg), ehh)) -> new_ltEs11(xuu69, xuu70, ehg, ehh) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, bgg), bgh)) -> new_ltEs11(xuu82, xuu85, bgg, bgh) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, be)) -> new_lt4(xuu96, xuu98, be) new_esEs33(xuu81, xuu84, app(ty_[], beh)) -> new_esEs23(xuu81, xuu84, beh) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, chg, chh) -> EQ new_esEs17(GT, GT) -> True new_esEs24(Right(xuu400000), Right(xuu30000), eab, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs19(xuu400000, xuu30000, fcb, fcc, fcd) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_ltEs19(xuu62, xuu63, app(app(ty_Either, cac), cad)) -> new_ltEs11(xuu62, xuu63, cac, cad) new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, fdc), fdd), efe) -> new_ltEs8(xuu550, xuu560, fdc, fdd) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), cah, cba) -> new_pePe(new_lt20(xuu550, xuu560, cah), new_asAs(new_esEs34(xuu550, xuu560, cah), new_ltEs20(xuu551, xuu561, cba))) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, bd)) -> new_esEs12(xuu40000, xuu3000, bd) new_esEs38(xuu400000, xuu30000, app(ty_[], ecb)) -> new_esEs23(xuu400000, xuu30000, ecb) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, cce)) -> new_ltEs7(xuu551, xuu561, cce) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, ebe), ebf)) -> new_esEs29(xuu40001, xuu3001, ebe, ebf) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, eac) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, bch), bda)) -> new_lt7(xuu96, xuu98, bch, bda) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, egh, eha) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, bf)) -> new_ltEs4(xuu55, xuu56, bf) new_esEs34(xuu550, xuu560, app(ty_Ratio, cbc)) -> new_esEs12(xuu550, xuu560, cbc) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_compare26(xuu4000, xuu300, cdf, cdg, cdh) new_ltEs11(Right(xuu550), Right(xuu560), efd, app(ty_Ratio, fed)) -> new_ltEs7(xuu550, xuu560, fed) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, dcb) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, fg), fh)) -> new_esEs29(xuu400001, xuu30001, fg, fh) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, dde), ddf), ddg)) -> new_ltEs15(xuu55, xuu56, dde, ddf, ddg) new_ltEs6(xuu55, xuu56, bbb) -> new_fsEs(new_compare15(xuu55, xuu56, bbb)) new_lt9(xuu80, xuu83, app(app(ty_@2, bdh), bea)) -> new_lt7(xuu80, xuu83, bdh, bea) new_compare0(xuu4000, xuu300, app(ty_Maybe, eeh)) -> new_compare29(xuu4000, xuu300, eeh) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ceh), cfa)) -> new_esEs29(xuu40000, xuu3000, ceh, cfa) new_ltEs21(xuu97, xuu99, app(app(ty_Either, dbe), dbf)) -> new_ltEs11(xuu97, xuu99, dbe, dbf) new_esEs37(xuu551, xuu561, app(ty_[], dfb)) -> new_esEs23(xuu551, xuu561, dfb) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], bg)) -> new_ltEs6(xuu550, xuu560, bg) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, eeh) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, edc)) -> new_esEs12(xuu400000, xuu30000, edc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), eab, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], cge)) -> new_esEs23(xuu40002, xuu3002, cge) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, efd), efe)) -> new_ltEs11(xuu55, xuu56, efd, efe) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], cbb)) -> new_esEs23(xuu550, xuu560, cbb) new_compare211(xuu69, xuu70, False, egh, eha) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, eha), egh, eha) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, fbe), eac) -> new_esEs12(xuu400000, xuu30000, fbe) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], fad), eac) -> new_esEs23(xuu400000, xuu30000, fad) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, dbd)) -> new_ltEs4(xuu97, xuu99, dbd) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fgd), fge)) -> new_esEs29(xuu40000, xuu3000, fgd, fge) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs36(xuu550, xuu560, app(ty_Ratio, dea)) -> new_esEs12(xuu550, xuu560, dea) new_lt23(xuu550, xuu560, app(app(ty_@2, deb), dec)) -> new_lt7(xuu550, xuu560, deb, dec) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], dcc)) -> new_compare15(xuu34, xuu35, dcc) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, cab)) -> new_ltEs4(xuu62, xuu63, cab) new_esEs37(xuu551, xuu561, app(ty_Ratio, dfc)) -> new_esEs12(xuu551, xuu561, dfc) new_esEs25(Nothing, Nothing, bbc) -> True new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Just(xuu30000), bbc) -> False new_esEs25(Just(xuu400000), Nothing, bbc) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, bfb), bfc)) -> new_lt7(xuu81, xuu84, bfb, bfc) new_ltEs22(xuu552, xuu562, app(app(ty_Either, dha), dhb)) -> new_ltEs11(xuu552, xuu562, dha, dhb) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, fhf), fhg)) -> new_esEs29(xuu40000, xuu3000, fhf, fhg) new_ltEs20(xuu551, xuu561, app(ty_Maybe, cch)) -> new_ltEs4(xuu551, xuu561, cch) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], daa)) -> new_esEs23(xuu96, xuu98, daa) new_lt9(xuu80, xuu83, app(ty_Ratio, bdg)) -> new_lt4(xuu80, xuu83, bdg) new_esEs28(False, False) -> True The set Q consists of the following terms: new_compare15([], [], x0) new_compare29(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_lt7(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Float) new_lt15(x0, x1, x2, x3) new_compare12(x0, x1) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs13(EQ, EQ) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare210(x0, x1, False, x2) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs28(False, True) new_esEs28(True, False) new_lt4(x0, x1, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_esEs5(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, False, x2, x3) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, ty_@0) new_esEs23([], :(x0, x1), x2) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, ty_Int) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_esEs23(:(x0, x1), :(x2, x3), x4) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Int) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_compare7(GT, EQ) new_compare7(EQ, GT) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt20(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Bool) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, x2, x3, False, x4, x5) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Bool) new_compare30(Left(x0), Left(x1), x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs18(Float(x0, x1), Float(x2, x3)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_asAs(True, x0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_esEs7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare112(x0, x1, True, x2) new_esEs34(x0, x1, ty_Int) new_compare30(Right(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Just(x0), Just(x1), ty_Double) new_compare9(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_compare29(Just(x0), Just(x1), x2) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs24(x0, x1, ty_Double) new_compare18(Char(x0), Char(x1)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_not(True) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs9(x0, x1) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare16(x0, x1, True, x2, x3) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_lt10(x0, x1) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs8(x0, x1, ty_Int) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_compare112(x0, x1, False, x2) new_lt8(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_esEs35(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_compare19(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Char) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_esEs38(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, True, x2) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_esEs23(:(x0, x1), [], x2) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare7(EQ, LT) new_compare7(LT, EQ) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs35(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_compare7(GT, GT) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs23([], [], x0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Float) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, ty_Ordering) new_ltEs6(x0, x1, x2) new_esEs37(x0, x1, ty_Double) new_lt12(x0, x1, x2) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primEqNat0(Zero, Succ(x0)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, GT, x2) new_esEs14(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, ty_Integer) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_esEs31(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare15([], :(x0, x1), x2) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_compare8(True, False) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_compare8(False, True) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_lt17(x0, x1, x2, x3, x4) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(:(x0, x1), :(x2, x3), x4) new_compare29(Nothing, Nothing, x0) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, LT, x2) new_esEs21(x0, x1, ty_Int) new_compare0(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_esEs32(x0, x1, ty_@0) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Nothing, Nothing, x0) new_esEs25(Just(x0), Just(x1), ty_Char) new_compare29(Just(x0), Nothing, x1) new_esEs31(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_esEs25(Just(x0), Nothing, x1) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_pePe(True, x0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_esEs28(True, True) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_esEs26(Char(x0), Char(x1)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs10(x0, x1) new_compare0(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs33(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs15(x0, x1) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_compare15(:(x0, x1), [], x2) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, ty_Integer) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_lt23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs30(Double(x0, x1), Double(x2, x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs17(GT, GT) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt19(x0, x1) new_esEs25(Nothing, Just(x0), x1) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare27(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_ltEs4(Just(x0), Nothing, x1) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(x0, x1, ty_@0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs31(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Integer) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs31(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare7(EQ, EQ) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_lt20(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs25(Nothing, Nothing, x0) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_primCmpNat0(Zero, Zero) 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_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, 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(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, 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(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 *new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 *new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), 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(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), 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(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, 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 ---------------------------------------- (33) YES ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs0(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu400000, xuu30000, cf) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu400000, xuu30000, bca, bcb) new_esEs1(Just(xuu400000), Just(xuu30000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu400000, xuu30000, eh, fa) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu400001, xuu30001, bdc, bdd) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xuu400002, xuu30002, bbe, bbf) new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu400000, xuu30000, dg, dh) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ca) -> new_esEs(xuu400001, xuu30001, ca) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_Maybe, gf), gb, gc) -> new_esEs1(xuu400000, xuu30000, gf) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu400000, xuu30000, bg, bh) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(ty_[], baf)) -> new_esEs(xuu400002, xuu30002, baf) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_Maybe, bc)) -> new_esEs1(xuu400000, xuu30000, bc) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(ty_Maybe, hh), gc) -> new_esEs1(xuu400001, xuu30001, hh) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(ty_[], he), gc) -> new_esEs(xuu400001, xuu30001, he) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_[], h)) -> new_esEs(xuu400000, xuu30000, h) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(xuu400000, xuu30000, hb, hc) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(xuu400001, xuu30001, bad, bae) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(xuu400002, xuu30002, bba) new_esEs0(Right(xuu400000), Right(xuu30000), de, app(ty_[], df)) -> new_esEs(xuu400000, xuu30000, df) new_esEs1(Just(xuu400000), Just(xuu30000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu400000, xuu30000, fg, fh) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_[], ga), gb, gc) -> new_esEs(xuu400000, xuu30000, ga) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_Maybe, bcc), bbh) -> new_esEs1(xuu400000, xuu30000, bcc) new_esEs0(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu400000, xuu30000, cg, da, db) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xuu400001, xuu30001, baa, bab, bac) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu400001, xuu30001, bea, beb) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(ty_Maybe, bde)) -> new_esEs1(xuu400001, xuu30001, bde) new_esEs0(Left(xuu400000), Left(xuu30000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu400000, xuu30000, dc, dd) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xuu400000, xuu30000, gg, gh, ha) new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu400000, xuu30000, ee, ef) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(xuu400001, xuu30001, hf, hg) new_esEs0(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu400000, xuu30000, cd, ce) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(xuu400002, xuu30002, bag, bah) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(xuu400000, xuu30000, gd, ge) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu400000, xuu30000, bcg, bch) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(ty_[], bdb)) -> new_esEs(xuu400001, xuu30001, bdb) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xuu400000, xuu30000, bcd, bce, bcf) new_esEs0(Right(xuu400000), Right(xuu30000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu400000, xuu30000, ea) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu400000, xuu30000, ba, bb) new_esEs1(Just(xuu400000), Just(xuu30000), app(ty_[], eg)) -> new_esEs(xuu400000, xuu30000, eg) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_[], bbg), bbh) -> new_esEs(xuu400000, xuu30000, bbg) new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu400000, xuu30000, eb, ec, ed) new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xuu400002, xuu30002, bbb, bbc, bbd) new_esEs1(Just(xuu400000), Just(xuu30000), app(ty_Maybe, fb)) -> new_esEs1(xuu400000, xuu30000, fb) new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xuu400001, xuu30001, bdf, bdg, bdh) new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xuu400000, xuu30000, bd, be, bf) new_esEs1(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu400000, xuu30000, fc, fd, ff) new_esEs0(Left(xuu400000), Left(xuu30000), app(ty_[], cb), cc) -> new_esEs(xuu400000, xuu30000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (35) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(Just(xuu400000), Just(xuu30000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu400000, xuu30000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu400000), Just(xuu30000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu400000, xuu30000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu400000), Just(xuu30000), app(ty_Maybe, fb)) -> new_esEs1(xuu400000, xuu30000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu400000, xuu30000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(xuu400000), Just(xuu30000), app(ty_[], eg)) -> new_esEs(xuu400000, xuu30000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu400000, xuu30000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu400000, xuu30000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_Maybe, bc)) -> new_esEs1(xuu400000, xuu30000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xuu400000, xuu30000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu400000, xuu30000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu400000, xuu30000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu400000, xuu30000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu400001, xuu30001, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(xuu400001, xuu30001, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(xuu400002, xuu30002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(xuu400000, xuu30000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Left(xuu400000), Left(xuu30000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu400000, xuu30000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu400000, xuu30000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu400000, xuu30000, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu400000), Right(xuu30000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu400000, xuu30000, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu400000, xuu30000, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu400000), Right(xuu30000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu400000, xuu30000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu400000), Right(xuu30000), de, app(ty_[], df)) -> new_esEs(xuu400000, xuu30000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu400000), Left(xuu30000), app(ty_[], cb), cc) -> new_esEs(xuu400000, xuu30000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu400001, xuu30001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu400000, xuu30000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xuu400002, xuu30002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(xuu400000, xuu30000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(xuu400001, xuu30001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_Maybe, bcc), bbh) -> new_esEs1(xuu400000, xuu30000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(ty_Maybe, bde)) -> new_esEs1(xuu400001, xuu30001, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_Maybe, gf), gb, gc) -> new_esEs1(xuu400000, xuu30000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(ty_Maybe, hh), gc) -> new_esEs1(xuu400001, xuu30001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(xuu400002, xuu30002, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xuu400000, xuu30000, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xuu400001, xuu30001, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), bda, app(ty_[], bdb)) -> new_esEs(xuu400001, xuu30001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_[], bbg), bbh) -> new_esEs(xuu400000, xuu30000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xuu400001, xuu30001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xuu400000, xuu30000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xuu400002, xuu30002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ca) -> new_esEs(xuu400001, xuu30001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_[], h)) -> new_esEs(xuu400000, xuu30000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, gb, app(ty_[], baf)) -> new_esEs(xuu400002, xuu30002, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), hd, app(ty_[], he), gc) -> new_esEs(xuu400001, xuu30001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_[], ga), gb, gc) -> new_esEs(xuu400000, xuu30000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (36) YES ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The TRS R consists of the following rules: new_lt9(xuu80, xuu83, ty_Int) -> new_lt16(xuu80, xuu83) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, h) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, h), app(ty_[], h)) new_ltEs22(xuu552, xuu562, app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs15(xuu552, xuu562, fca, fcb, fcc) new_ltEs15(@3(xuu550, xuu551, xuu552), @3(xuu560, xuu561, xuu562), egc, egd, ege) -> new_pePe(new_lt23(xuu550, xuu560, egc), new_asAs(new_esEs36(xuu550, xuu560, egc), new_pePe(new_lt22(xuu551, xuu561, egd), new_asAs(new_esEs37(xuu551, xuu561, egd), new_ltEs22(xuu552, xuu562, ege))))) new_pePe(True, xuu192) -> True new_esEs31(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs5(xuu62, xuu63) new_compare8(True, False) -> GT new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Bool) -> new_lt6(xuu96, xuu98) new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs19(xuu40000, xuu3000, cgc, cgd, cge) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs33(xuu81, xuu84, ty_Bool) -> new_esEs28(xuu81, xuu84) new_esEs33(xuu81, xuu84, ty_Integer) -> new_esEs16(xuu81, xuu84) new_lt22(xuu551, xuu561, app(app(app(ty_@3, fag), fah), fba)) -> new_lt17(xuu551, xuu561, fag, fah, fba) new_ltEs4(Just(xuu550), Just(xuu560), ty_Float) -> new_ltEs9(xuu550, xuu560) new_esEs34(xuu550, xuu560, app(app(ty_Either, bah), bba)) -> new_esEs24(xuu550, xuu560, bah, bba) new_compare26(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bga, bgb, bgc) -> new_compare24(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs9(xuu40000, xuu3000, bga), new_asAs(new_esEs10(xuu40001, xuu3001, bgb), new_esEs11(xuu40002, xuu3002, bgc))), bga, bgb, bgc) new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_emptyFM(h, ba) -> EmptyFM new_esEs32(xuu80, xuu83, ty_Int) -> new_esEs15(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_ltEs4(Nothing, Nothing, bf) -> True new_lt23(xuu550, xuu560, app(ty_[], egf)) -> new_lt11(xuu550, xuu560, egf) new_ltEs4(Just(xuu550), Nothing, bf) -> False new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fea)) -> new_esEs12(xuu40001, xuu3001, fea) new_compare111(xuu153, xuu154, xuu155, xuu156, False, bgd, bge) -> GT new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu38, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu330, xuu331, xuu333, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), [], xuu31, xuu334, xuu38, app(ty_[], h), ba), app(ty_[], h), ba) new_compare17(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bfd, bfe) -> new_compare27(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs4(xuu40000, xuu3000, bfd), new_esEs5(xuu40001, xuu3001, bfe)), bfd, bfe) new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs22(xuu400002, xuu30002, ty_Int) -> new_esEs15(xuu400002, xuu30002) new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), :(xuu300, xuu301), xuu31, xuu26, xuu3433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_[], h), ba), app(ty_[], h), ba) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Int, bhh) -> new_esEs15(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_compare25(xuu62, xuu63, False, dhf, dhg) -> new_compare19(xuu62, xuu63, new_ltEs19(xuu62, xuu63, dhf), dhf, dhg) new_ltEs22(xuu552, xuu562, app(ty_Maybe, fbf)) -> new_ltEs4(xuu552, xuu562, fbf) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Maybe, cc)) -> new_ltEs4(xuu550, xuu560, cc) new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) -> Branch(:(xuu22, xuu23), new_addListToFM0(xuu18, xuu24, ccg), xuu19, xuu20, xuu21) new_compare30(Left(xuu40000), Left(xuu3000), bfg, bfh) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bfg), bfg, bfh) new_esEs9(xuu40000, xuu3000, app(ty_[], ebb)) -> new_esEs23(xuu40000, xuu3000, ebb) new_lt9(xuu80, xuu83, app(app(app(ty_@3, fa), fb), fc)) -> new_lt17(xuu80, xuu83, fa, fb, fc) new_ltEs11(Left(xuu550), Left(xuu560), ty_Double, cda) -> new_ltEs16(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_[], dhh)) -> new_ltEs6(xuu62, xuu63, dhh) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs14(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_[], ded)) -> new_esEs23(xuu40000, xuu3000, ded) new_lt23(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Int) -> new_lt16(xuu551, xuu561) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, xuu175, db, dc, dd) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, xuu175, db, dc, dd) new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) -> Branch([], new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) new_esEs39(xuu400001, xuu30001, app(app(ty_@2, fgc), fgd)) -> new_esEs29(xuu400001, xuu30001, fgc, fgd) new_esEs15(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch40(xuu26, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu26, xuu300, xuu301, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba))), h, ba) new_esEs37(xuu551, xuu561, ty_Char) -> new_esEs26(xuu551, xuu561) new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) new_lt23(xuu550, xuu560, app(app(ty_Either, ehc), ehd)) -> new_lt15(xuu550, xuu560, ehc, ehd) new_esEs22(xuu400002, xuu30002, ty_Float) -> new_esEs18(xuu400002, xuu30002) new_mkBranch(xuu289, xuu290, xuu291, xuu292, xuu293, bc, bd) -> Branch(xuu290, xuu291, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu292, bc, bd)), new_sizeFM(xuu293, bc, bd)), xuu292, xuu293) new_ltEs20(xuu551, xuu561, ty_Integer) -> new_ltEs10(xuu551, xuu561) new_lt23(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_esEs36(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_not(True) -> False new_esEs38(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs21(xuu97, xuu99, ty_@0) -> new_ltEs5(xuu97, xuu99) new_esEs35(xuu96, xuu98, app(ty_Maybe, bdb)) -> new_esEs25(xuu96, xuu98, bdb) new_esEs11(xuu40002, xuu3002, app(ty_Ratio, eeg)) -> new_esEs12(xuu40002, xuu3002, eeg) new_compare0(xuu4000, xuu300, app(app(ty_Either, bfg), bfh)) -> new_compare30(xuu4000, xuu300, bfg, bfh) new_ltEs18(xuu82, xuu85, ty_Ordering) -> new_ltEs13(xuu82, xuu85) new_mkBalBranch6MkBalBranch4(xuu33, xuu31, Branch(xuu380, xuu381, xuu382, xuu383, xuu384), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, xuu383, xuu384, new_lt16(new_sizeFM0(xuu383, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu384, h, ba))), h, ba) new_ltEs18(xuu82, xuu85, app(ty_Ratio, gh)) -> new_ltEs7(xuu82, xuu85, gh) new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_lt4(xuu96, xuu98, be) -> new_esEs17(new_compare6(xuu96, xuu98, be), LT) new_lt22(xuu551, xuu561, app(app(ty_@2, fab), fac)) -> new_lt7(xuu551, xuu561, fab, fac) new_esEs29(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), fcf, fcg) -> new_asAs(new_esEs38(xuu400000, xuu30000, fcf), new_esEs39(xuu400001, xuu30001, fcg)) new_ltEs20(xuu551, xuu561, ty_Int) -> new_ltEs12(xuu551, xuu561) new_esEs28(True, True) -> True new_lt22(xuu551, xuu561, app(ty_Ratio, faa)) -> new_lt4(xuu551, xuu561, faa) new_esEs37(xuu551, xuu561, ty_Int) -> new_esEs15(xuu551, xuu561) new_esEs39(xuu400001, xuu30001, app(app(ty_Either, ffe), fff)) -> new_esEs24(xuu400001, xuu30001, ffe, fff) new_esEs10(xuu40001, xuu3001, app(ty_[], ecd)) -> new_esEs23(xuu40001, xuu3001, ecd) new_primEqNat0(Succ(xuu4000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu300000)) -> False new_esEs33(xuu81, xuu84, ty_@0) -> new_esEs27(xuu81, xuu84) new_lt8(xuu81, xuu84, ty_Bool) -> new_lt6(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Char, bhh) -> new_esEs26(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(ty_Maybe, cbg)) -> new_esEs25(xuu400000, xuu30000, cbg) new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(app(ty_@2, bae), baf)) -> new_esEs29(xuu550, xuu560, bae, baf) new_ltEs24(xuu69, xuu70, ty_Double) -> new_ltEs16(xuu69, xuu70) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(ty_Maybe, cfa)) -> new_ltEs4(xuu550, xuu560, cfa) new_esEs21(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_compare7(EQ, EQ) -> EQ new_esEs37(xuu551, xuu561, ty_Float) -> new_esEs18(xuu551, xuu561) new_ltEs23(xuu55, xuu56, ty_Char) -> new_ltEs17(xuu55, xuu56) new_lt20(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, db, dc, dd) -> LT new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, ty_Float) -> new_esEs18(xuu80, xuu83) new_lt23(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_ltEs18(xuu82, xuu85, ty_Char) -> new_ltEs17(xuu82, xuu85) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_@2, dgh), dha)) -> new_esEs29(xuu400000, xuu30000, dgh, dha) new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT new_ltEs21(xuu97, xuu99, ty_Bool) -> new_ltEs14(xuu97, xuu99) new_esEs31(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs32(xuu80, xuu83, app(ty_[], eb)) -> new_esEs23(xuu80, xuu83, eb) new_mkBalBranch6MkBalBranch30(EmptyFM, xuu300, xuu301, xuu31, xuu34, True, h, ba) -> error([]) new_esEs38(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_Maybe, ef)) -> new_lt12(xuu80, xuu83, ef) new_esEs38(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), app(app(app(ty_@3, cf), cg), da)) -> new_ltEs15(xuu550, xuu560, cf, cg, da) new_ltEs18(xuu82, xuu85, ty_Integer) -> new_ltEs10(xuu82, xuu85) new_primPlusNat1(Succ(xuu19400), Succ(xuu19300)) -> Succ(Succ(new_primPlusNat1(xuu19400, xuu19300))) new_primCompAux00(xuu34, xuu35, GT, eeh) -> GT new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) -> new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare15(:(xuu22, xuu23), :(xuu16, xuu17), ccf), ccf, ccg) new_compare7(GT, GT) -> EQ new_primCmpNat0(Zero, Succ(xuu30000)) -> LT new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch3(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu38, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu38, new_lt16(new_sizeFM0(xuu334, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu333, h, ba))), h, ba) new_ltEs23(xuu55, xuu56, app(app(ty_@2, baa), bab)) -> new_ltEs8(xuu55, xuu56, baa, bab) new_sizeFM(EmptyFM, bc, bd) -> Pos(Zero) new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, ccf, ccg) -> new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs33(xuu81, xuu84, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs19(xuu81, xuu84, gd, ge, gf) new_ltEs11(Left(xuu550), Left(xuu560), ty_@0, cda) -> new_ltEs5(xuu550, xuu560) new_esEs21(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs34(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs6(xuu40000, xuu3000, app(app(ty_Either, bgg), bgh)) -> new_esEs24(xuu40000, xuu3000, bgg, bgh) new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs19(xuu40001, xuu3001, ech, eda, edb) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Ratio, cdc), cda) -> new_ltEs7(xuu550, xuu560, cdc) new_mkBalBranch(xuu300, xuu301, xuu31, xuu26, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, new_compare12(new_primPlusInt(new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Int) -> new_ltEs12(xuu550, xuu560) new_esEs32(xuu80, xuu83, ty_Char) -> new_esEs26(xuu80, xuu83) new_ltEs21(xuu97, xuu99, app(app(ty_@2, beb), bec)) -> new_ltEs8(xuu97, xuu99, beb, bec) new_ltEs10(xuu55, xuu56) -> new_fsEs(new_compare9(xuu55, xuu56)) new_esEs39(xuu400001, xuu30001, ty_Ordering) -> new_esEs17(xuu400001, xuu30001) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs16(xuu62, xuu63) new_lt20(xuu550, xuu560, app(ty_[], bac)) -> new_lt11(xuu550, xuu560, bac) new_esEs8(xuu40000, xuu3000, app(app(ty_Either, chb), chc)) -> new_esEs24(xuu40000, xuu3000, chb, chc) new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, Branch(xuu2640, xuu2641, xuu2642, xuu2643, xuu2644), xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2640, xuu2641, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu260, xuu261, xuu263, xuu2643, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), :(xuu300, xuu301), xuu31, xuu2644, xuu34, app(ty_[], h), ba), app(ty_[], h), ba) new_ltEs14(True, True) -> True new_ltEs7(xuu55, xuu56, dhe) -> new_fsEs(new_compare6(xuu55, xuu56, dhe)) new_lt20(xuu550, xuu560, app(ty_Maybe, bag)) -> new_lt12(xuu550, xuu560, bag) new_esEs36(xuu550, xuu560, app(app(ty_@2, egh), eha)) -> new_esEs29(xuu550, xuu560, egh, eha) new_lt12(xuu96, xuu98, bdb) -> new_esEs17(new_compare29(xuu96, xuu98, bdb), LT) new_esEs20(xuu400000, xuu30000, app(ty_[], daf)) -> new_esEs23(xuu400000, xuu30000, daf) new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_esEs33(xuu81, xuu84, app(ty_Maybe, ga)) -> new_esEs25(xuu81, xuu84, ga) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(app(ty_Either, cbe), cbf)) -> new_esEs24(xuu400000, xuu30000, cbe, cbf) new_esEs31(xuu400000, xuu30000, app(app(ty_Either, def), deg)) -> new_esEs24(xuu400000, xuu30000, def, deg) new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT new_ltEs22(xuu552, xuu562, ty_Int) -> new_ltEs12(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, app(ty_Ratio, dda)) -> new_esEs12(xuu400001, xuu30001, dda) new_ltEs20(xuu551, xuu561, ty_Char) -> new_ltEs17(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Ratio, dhb)) -> new_esEs12(xuu400000, xuu30000, dhb) new_ltEs5(xuu55, xuu56) -> new_fsEs(new_compare28(xuu55, xuu56)) new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch40(xuu26, xuu300, xuu301, xuu31, EmptyFM, True, h, ba) -> error([]) new_esEs27(@0, @0) -> True new_esEs33(xuu81, xuu84, app(ty_Ratio, ff)) -> new_esEs12(xuu81, xuu84, ff) new_lt9(xuu80, xuu83, ty_Integer) -> new_lt14(xuu80, xuu83) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, app(ty_[], bfb)) -> new_compare15(xuu4000, xuu300, bfb) new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, xuu383, xuu384, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu380, xuu381, new_mkBranch(Succ(Succ(Succ(Zero))), [], xuu31, xuu33, xuu383, app(ty_[], h), ba), xuu384, app(ty_[], h), ba) new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare12(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) new_esEs30(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_compare7(LT, LT) -> EQ new_primMulNat0(Succ(xuu300000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero new_esEs34(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, app(ty_Maybe, ebe)) -> new_esEs25(xuu40000, xuu3000, ebe) new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, LT, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) new_lt22(xuu551, xuu561, ty_Integer) -> new_lt14(xuu551, xuu561) new_compare8(False, False) -> EQ new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) new_esEs24(Left(xuu400000), Right(xuu30000), cbc, bhh) -> False new_esEs24(Right(xuu400000), Left(xuu30000), cbc, bhh) -> False new_lt20(xuu550, xuu560, ty_@0) -> new_lt10(xuu550, xuu560) new_esEs18(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs15(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) new_lt22(xuu551, xuu561, app(ty_Maybe, fad)) -> new_lt12(xuu551, xuu561, fad) new_ltEs22(xuu552, xuu562, ty_Double) -> new_ltEs16(xuu552, xuu562) new_lt18(xuu96, xuu98) -> new_esEs17(new_compare10(xuu96, xuu98), LT) new_ltEs22(xuu552, xuu562, ty_Float) -> new_ltEs9(xuu552, xuu562) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(ty_[], cbd)) -> new_esEs23(xuu400000, xuu30000, cbd) new_esEs23(:(xuu400000, xuu400001), [], ded) -> False new_esEs23([], :(xuu30000, xuu30001), ded) -> False new_lt14(xuu96, xuu98) -> new_esEs17(new_compare9(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(ty_Ratio, dab)) -> new_esEs12(xuu40000, xuu3000, dab) new_ltEs13(GT, LT) -> False new_esEs7(xuu40000, xuu3000, app(ty_Maybe, cgb)) -> new_esEs25(xuu40000, xuu3000, cgb) new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) new_primPlusNat1(Succ(xuu19400), Zero) -> Succ(xuu19400) new_primPlusNat1(Zero, Succ(xuu19300)) -> Succ(xuu19300) new_lt20(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_compare15(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bfb) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, bfb) new_ltEs19(xuu62, xuu63, app(app(ty_@2, eab), eac)) -> new_ltEs8(xuu62, xuu63, eab, eac) new_addToFM_C0(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, h, ba) -> new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, h, ba) new_ltEs21(xuu97, xuu99, ty_Double) -> new_ltEs16(xuu97, xuu99) new_esEs6(xuu40000, xuu3000, app(ty_[], bgf)) -> new_esEs23(xuu40000, xuu3000, bgf) new_esEs22(xuu400002, xuu30002, ty_Char) -> new_esEs26(xuu400002, xuu30002) new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, efh), ega), egb)) -> new_compare26(xuu34, xuu35, efh, ega, egb) new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare7(xuu4000, xuu300) new_esEs11(xuu40002, xuu3002, ty_Double) -> new_esEs30(xuu40002, xuu3002) new_esEs34(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs20(xuu400000, xuu30000, app(ty_Maybe, dba)) -> new_esEs25(xuu400000, xuu30000, dba) new_esEs21(xuu400001, xuu30001, app(app(ty_Either, dca), dcb)) -> new_esEs24(xuu400001, xuu30001, dca, dcb) new_esEs10(xuu40001, xuu3001, app(ty_Maybe, ecg)) -> new_esEs25(xuu40001, xuu3001, ecg) new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare12(xuu34, xuu35) new_ltEs20(xuu551, xuu561, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs15(xuu551, xuu561, bcd, bce, bcf) new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs23(xuu55, xuu56, app(ty_Ratio, dhe)) -> new_ltEs7(xuu55, xuu56, dhe) new_esEs32(xuu80, xuu83, app(ty_Maybe, ef)) -> new_esEs25(xuu80, xuu83, ef) new_esEs35(xuu96, xuu98, ty_@0) -> new_esEs27(xuu96, xuu98) new_addListToFM0(xuu31, xuu401, ba) -> xuu401 new_ltEs11(Left(xuu550), Left(xuu560), ty_Bool, cda) -> new_ltEs14(xuu550, xuu560) new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) new_esEs31(xuu400000, xuu30000, app(ty_Ratio, dff)) -> new_esEs12(xuu400000, xuu30000, dff) new_lt21(xuu96, xuu98, ty_@0) -> new_lt10(xuu96, xuu98) new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, ccf, ccg) -> new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) new_esEs20(xuu400000, xuu30000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs19(xuu400000, xuu30000, dbb, dbc, dbd) new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_ltEs4(Just(xuu550), Just(xuu560), ty_Double) -> new_ltEs16(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Int) -> new_esEs15(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, efc), efd)) -> new_compare17(xuu34, xuu35, efc, efd) new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, eff), efg)) -> new_compare30(xuu34, xuu35, eff, efg) new_esEs32(xuu80, xuu83, app(app(ty_Either, eg), eh)) -> new_esEs24(xuu80, xuu83, eg, eh) new_esEs7(xuu40000, xuu3000, app(ty_Ratio, cgh)) -> new_esEs12(xuu40000, xuu3000, cgh) new_esEs11(xuu40002, xuu3002, ty_Bool) -> new_esEs28(xuu40002, xuu3002) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Char) -> new_ltEs17(xuu550, xuu560) new_mkBalBranch6MkBalBranch30(xuu26, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), :(xuu300, xuu301), xuu31, xuu26, xuu34, app(ty_[], h), ba) new_mkBalBranch0(xuu31, xuu33, xuu38, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, new_esEs17(new_compare12(new_primPlusInt(new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba), new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba)), Pos(Succ(Succ(Zero)))), LT), h, ba) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare18(xuu34, xuu35) new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_lt21(xuu96, xuu98, ty_Float) -> new_lt13(xuu96, xuu98) new_lt23(xuu550, xuu560, ty_Integer) -> new_lt14(xuu550, xuu560) new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, True, h, ba) -> new_mkBranch(Zero, [], xuu31, xuu33, xuu38, app(ty_[], h), ba) new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu34, h, ba) new_primPlusInt(Neg(xuu1940), Neg(xuu1930)) -> Neg(new_primPlusNat1(xuu1940, xuu1930)) new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs16(xuu40001, xuu3001) new_compare30(Left(xuu40000), Right(xuu3000), bfg, bfh) -> LT new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_lt21(xuu96, xuu98, app(app(ty_Either, bdc), bdd)) -> new_lt15(xuu96, xuu98, bdc, bdd) new_esEs37(xuu551, xuu561, app(app(ty_@2, fab), fac)) -> new_esEs29(xuu551, xuu561, fab, fac) new_esEs11(xuu40002, xuu3002, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs19(xuu40002, xuu3002, eeb, eec, eed) new_esEs35(xuu96, xuu98, ty_Char) -> new_esEs26(xuu96, xuu98) new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, xuu264, xuu300, xuu301, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu260, xuu261, xuu263, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), :(xuu300, xuu301), xuu31, xuu264, xuu34, app(ty_[], h), ba), app(ty_[], h), ba) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs26(xuu400000, xuu30000) new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu26, h, ba) new_lt21(xuu96, xuu98, ty_Ordering) -> new_lt5(xuu96, xuu98) new_esEs36(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_Either, edg), edh)) -> new_esEs24(xuu40002, xuu3002, edg, edh) new_compare210(xuu55, xuu56, False, fgf) -> new_compare112(xuu55, xuu56, new_ltEs23(xuu55, xuu56, fgf), fgf) new_ltEs23(xuu55, xuu56, app(ty_[], dfg)) -> new_ltEs6(xuu55, xuu56, dfg) new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, ccf, ccg) -> new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) new_esEs4(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(app(ty_@2, ccc), ccd)) -> new_esEs29(xuu400000, xuu30000, ccc, ccd) new_esEs20(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare111(xuu153, xuu154, xuu155, xuu156, True, bgd, bge) -> LT new_esEs38(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs33(xuu81, xuu84, ty_Ordering) -> new_esEs17(xuu81, xuu84) new_esEs34(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_@2, fhc), fhd)) -> new_ltEs8(xuu69, xuu70, fhc, fhd) new_esEs35(xuu96, xuu98, ty_Bool) -> new_esEs28(xuu96, xuu98) new_esEs36(xuu550, xuu560, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs19(xuu550, xuu560, ehe, ehf, ehg) new_ltEs4(Just(xuu550), Just(xuu560), ty_Char) -> new_ltEs17(xuu550, xuu560) new_lt17(xuu96, xuu98, bde, bdf, bdg) -> new_esEs17(new_compare26(xuu96, xuu98, bde, bdf, bdg), LT) new_lt8(xuu81, xuu84, app(ty_[], fd)) -> new_lt11(xuu81, xuu84, fd) new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare7(xuu34, xuu35) new_ltEs4(Nothing, Just(xuu560), bf) -> True new_lt6(xuu96, xuu98) -> new_esEs17(new_compare8(xuu96, xuu98), LT) new_compare7(GT, EQ) -> GT new_esEs31(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt11(xuu96, xuu98, bda) -> new_esEs17(new_compare15(xuu96, xuu98, bda), LT) new_esEs4(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs4(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, False, db, dc, dd) -> GT new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_compare16(xuu137, xuu138, True, dhc, dhd) -> LT new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, ccf, ccg) -> new_mkBalBranch(xuu16, xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, :(xuu22, xuu23), xuu24, ccf, ccg), ccf, ccg) new_ltEs18(xuu82, xuu85, ty_Float) -> new_ltEs9(xuu82, xuu85) new_lt21(xuu96, xuu98, app(ty_[], bda)) -> new_lt11(xuu96, xuu98, bda) new_esEs36(xuu550, xuu560, app(app(ty_Either, ehc), ehd)) -> new_esEs24(xuu550, xuu560, ehc, ehd) new_esEs32(xuu80, xuu83, ty_Double) -> new_esEs30(xuu80, xuu83) new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, Branch(xuu3340, xuu3341, xuu3342, xuu3343, xuu3344), xuu31, xuu38, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3340, xuu3341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu330, xuu331, xuu333, xuu3343, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), [], xuu31, xuu3344, xuu38, app(ty_[], h), ba), app(ty_[], h), ba) new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) new_esEs21(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_esEs14(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_lt5(xuu96, xuu98) -> new_esEs17(new_compare7(xuu96, xuu98), LT) new_lt9(xuu80, xuu83, ty_Float) -> new_lt13(xuu80, xuu83) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, efb)) -> new_compare6(xuu34, xuu35, efb) new_esEs11(xuu40002, xuu3002, app(ty_Maybe, eea)) -> new_esEs25(xuu40002, xuu3002, eea) new_esEs7(xuu40000, xuu3000, app(ty_[], cfg)) -> new_esEs23(xuu40000, xuu3000, cfg) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs11(xuu40002, xuu3002, app(app(ty_@2, eee), eef)) -> new_esEs29(xuu40002, xuu3002, eee, eef) new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, EmptyFM, xuu384, False, h, ba) -> error([]) new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare11(xuu34, xuu35) new_lt8(xuu81, xuu84, ty_Char) -> new_lt19(xuu81, xuu84) new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, GT, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) new_ltEs17(xuu55, xuu56) -> new_fsEs(new_compare18(xuu55, xuu56)) new_esEs36(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_ltEs14(False, True) -> True new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_esEs4(xuu40000, xuu3000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs19(xuu40000, xuu3000, dac, dad, dae) new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, LT, h, ba) -> new_mkBranch(Zero, :(xuu300, xuu301), xuu31, xuu26, xuu34, app(ty_[], h), ba) new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, EQ, h, ba) -> new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) new_mkBalBranch6MkBalBranch40(xuu26, xuu300, xuu301, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt16(new_sizeFM0(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba))), h, ba) new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Char) -> new_esEs26(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Char) -> new_lt19(xuu80, xuu83) new_lt22(xuu551, xuu561, app(app(ty_Either, fae), faf)) -> new_lt15(xuu551, xuu561, fae, faf) new_lt22(xuu551, xuu561, ty_Ordering) -> new_lt5(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), app(app(ty_Either, dgb), dgc)) -> new_esEs24(xuu400000, xuu30000, dgb, dgc) new_compare0(xuu4000, xuu300, app(app(ty_@2, bfd), bfe)) -> new_compare17(xuu4000, xuu300, bfd, bfe) new_compare29(Just(xuu40000), Nothing, bff) -> GT new_esEs21(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, dg, dh, ea) -> EQ new_lt23(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs18(xuu82, xuu85, app(ty_[], gg)) -> new_ltEs6(xuu82, xuu85, gg) new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs19(xuu40001, xuu3001, fdd, fde, fdf) new_ltEs24(xuu69, xuu70, app(ty_[], fha)) -> new_ltEs6(xuu69, xuu70, fha) new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fda), fdb)) -> new_esEs24(xuu40001, xuu3001, fda, fdb) new_esEs37(xuu551, xuu561, ty_Ordering) -> new_esEs17(xuu551, xuu561) new_ltEs11(Left(xuu550), Left(xuu560), app(app(app(ty_@3, cea), ceb), cec), cda) -> new_ltEs15(xuu550, xuu560, cea, ceb, cec) new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fdc)) -> new_esEs25(xuu40001, xuu3001, fdc) new_compare6(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) new_esEs19(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), dac, dad, dae) -> new_asAs(new_esEs20(xuu400000, xuu30000, dac), new_asAs(new_esEs21(xuu400001, xuu30001, dad), new_esEs22(xuu400002, xuu30002, dae))) new_ltEs20(xuu551, xuu561, ty_Float) -> new_ltEs9(xuu551, xuu561) new_lt8(xuu81, xuu84, ty_Float) -> new_lt13(xuu81, xuu84) new_esEs21(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_fsEs(xuu187) -> new_not(new_esEs17(xuu187, GT)) new_esEs20(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_gt(xuu184, xuu183) -> new_esEs17(new_compare12(xuu184, xuu183), GT) new_ltEs4(Just(xuu550), Just(xuu560), ty_@0) -> new_ltEs5(xuu550, xuu560) new_sizeFM0(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba) -> xuu342 new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs9(xuu62, xuu63) new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs18(xuu40000, xuu3000) new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, ccf, ccg) -> new_mkBalBranch(xuu16, xuu17, xuu18, new_addToFM_C0(xuu20, :(xuu22, xuu23), xuu24, ccf, ccg), xuu21, ccf, ccg) new_ltEs22(xuu552, xuu562, app(ty_[], fbb)) -> new_ltEs6(xuu552, xuu562, fbb) new_esEs4(xuu40000, xuu3000, app(ty_Maybe, dfh)) -> new_esEs25(xuu40000, xuu3000, dfh) new_sizeFM(Branch(xuu2930, xuu2931, xuu2932, xuu2933, xuu2934), bc, bd) -> xuu2932 new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba) -> new_sizeFM0(xuu33, h, ba) new_esEs22(xuu400002, xuu30002, app(ty_[], ddb)) -> new_esEs23(xuu400002, xuu30002, ddb) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_@2, cah), cba), bhh) -> new_esEs29(xuu400000, xuu30000, cah, cba) new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, EmptyFM, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> error([]) new_lt20(xuu550, xuu560, ty_Float) -> new_lt13(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Bool) -> new_lt6(xuu551, xuu561) new_compare0(xuu4000, xuu300, ty_Int) -> new_compare12(xuu4000, xuu300) new_esEs35(xuu96, xuu98, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs19(xuu96, xuu98, bde, bdf, bdg) new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs26(xuu40001, xuu3001) new_esEs16(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) new_ltEs13(LT, LT) -> True new_compare18(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Int, cda) -> new_ltEs12(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, app(app(ty_@2, dfd), dfe)) -> new_esEs29(xuu400000, xuu30000, dfd, dfe) new_esEs39(xuu400001, xuu30001, ty_@0) -> new_esEs27(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, app(app(ty_Either, cbc), bhh)) -> new_esEs24(xuu40000, xuu3000, cbc, bhh) new_lt21(xuu96, xuu98, app(app(app(ty_@3, bde), bdf), bdg)) -> new_lt17(xuu96, xuu98, bde, bdf, bdg) new_esEs11(xuu40002, xuu3002, ty_Integer) -> new_esEs16(xuu40002, xuu3002) new_esEs24(Left(xuu400000), Left(xuu30000), ty_@0, bhh) -> new_esEs27(xuu400000, xuu30000) new_esEs34(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_[], cdb), cda) -> new_ltEs6(xuu550, xuu560, cdb) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cad), bhh) -> new_esEs25(xuu400000, xuu30000, cad) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_@0) -> new_ltEs5(xuu550, xuu560) new_primPlusNat0(Succ(xuu2040), xuu4000100) -> Succ(Succ(new_primPlusNat1(xuu2040, xuu4000100))) new_compare29(Nothing, Just(xuu3000), bff) -> LT new_ltEs20(xuu551, xuu561, app(ty_[], bbe)) -> new_ltEs6(xuu551, xuu561, bbe) new_esEs36(xuu550, xuu560, app(ty_Maybe, ehb)) -> new_esEs25(xuu550, xuu560, ehb) new_lt20(xuu550, xuu560, ty_Ordering) -> new_lt5(xuu550, xuu560) new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu550, xuu560, app(app(ty_Either, bah), bba)) -> new_lt15(xuu550, xuu560, bah, bba) new_ltEs4(Just(xuu550), Just(xuu560), ty_Bool) -> new_ltEs14(xuu550, xuu560) new_lt20(xuu550, xuu560, ty_Char) -> new_lt19(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Float) -> new_lt13(xuu551, xuu561) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs38(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs39(xuu400001, xuu30001, ty_Float) -> new_esEs18(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, app(app(ty_@2, edc), edd)) -> new_esEs29(xuu40001, xuu3001, edc, edd) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Bool) -> new_ltEs14(xuu550, xuu560) new_esEs38(xuu400000, xuu30000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs19(xuu400000, xuu30000, fef, feg, feh) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Float, bhh) -> new_esEs18(xuu400000, xuu30000) new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_esEs33(xuu81, xuu84, app(app(ty_@2, fg), fh)) -> new_esEs29(xuu81, xuu84, fg, fh) new_esEs25(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs4(Just(xuu550), Just(xuu560), ty_Ordering) -> new_ltEs13(xuu550, xuu560) new_esEs35(xuu96, xuu98, ty_Ordering) -> new_esEs17(xuu96, xuu98) new_ltEs14(False, False) -> True new_esEs37(xuu551, xuu561, app(app(ty_Either, fae), faf)) -> new_esEs24(xuu551, xuu561, fae, faf) new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) new_esEs11(xuu40002, xuu3002, ty_Ordering) -> new_esEs17(xuu40002, xuu3002) new_compare8(False, True) -> LT new_esEs39(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_ltEs12(xuu55, xuu56) -> new_fsEs(new_compare12(xuu55, xuu56)) new_ltEs4(Just(xuu550), Just(xuu560), ty_Integer) -> new_ltEs10(xuu550, xuu560) new_esEs34(xuu550, xuu560, ty_Ordering) -> new_esEs17(xuu550, xuu560) new_primMinusNat0(Zero, Succ(xuu19300)) -> Neg(Succ(xuu19300)) new_compare12(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, EQ, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs27(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Integer) -> new_esEs16(xuu550, xuu560) new_lt22(xuu551, xuu561, ty_Char) -> new_lt19(xuu551, xuu561) new_esEs38(xuu400000, xuu30000, app(app(ty_Either, fec), fed)) -> new_esEs24(xuu400000, xuu30000, fec, fed) new_esEs13(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_lt9(xuu80, xuu83, app(ty_[], eb)) -> new_lt11(xuu80, xuu83, eb) new_compare30(Right(xuu40000), Right(xuu3000), bfg, bfh) -> new_compare211(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bfh), bfg, bfh) new_mkBalBranch6MkBalBranch4(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu38, new_gt(new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba))), h, ba) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_Either, cd), ce)) -> new_ltEs11(xuu550, xuu560, cd, ce) new_esEs37(xuu551, xuu561, app(ty_Maybe, fad)) -> new_esEs25(xuu551, xuu561, fad) new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_compare0(xuu4000, xuu300, app(ty_Ratio, bfc)) -> new_compare6(xuu4000, xuu300, bfc) new_esEs35(xuu96, xuu98, ty_Integer) -> new_esEs16(xuu96, xuu98) new_lt21(xuu96, xuu98, ty_Char) -> new_lt19(xuu96, xuu98) new_esEs38(xuu400000, xuu30000, app(ty_Maybe, fee)) -> new_esEs25(xuu400000, xuu30000, fee) new_ltEs14(True, False) -> False new_lt16(xuu96, xuu98) -> new_esEs17(new_compare12(xuu96, xuu98), LT) new_esEs23([], [], ded) -> True new_esEs39(xuu400001, xuu30001, ty_Bool) -> new_esEs28(xuu400001, xuu30001) new_lt20(xuu550, xuu560, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt17(xuu550, xuu560, bbb, bbc, bbd) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs32(xuu80, xuu83, app(app(ty_@2, ed), ee)) -> new_esEs29(xuu80, xuu83, ed, ee) new_esEs4(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare112(xuu122, xuu123, False, cch) -> GT new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs18(xuu400000, xuu30000) new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, h, ba) -> new_mkBalBranch0(xuu31, xuu33, new_addToFM_C0(xuu34, :(xuu4000, xuu4001), xuu401, h, ba), h, ba) new_lt7(xuu96, xuu98, de, df) -> new_esEs17(new_compare17(xuu96, xuu98, de, df), LT) new_esEs37(xuu551, xuu561, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs19(xuu551, xuu561, fag, fah, fba) new_lt20(xuu550, xuu560, ty_Bool) -> new_lt6(xuu550, xuu560) new_ltEs21(xuu97, xuu99, app(ty_[], bdh)) -> new_ltEs6(xuu97, xuu99, bdh) new_esEs4(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT new_esEs33(xuu81, xuu84, ty_Char) -> new_esEs26(xuu81, xuu84) new_ltEs22(xuu552, xuu562, app(app(ty_@2, fbd), fbe)) -> new_ltEs8(xuu552, xuu562, fbd, fbe) new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare8(xuu34, xuu35) new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs15(xuu40001, xuu3001) new_lt13(xuu96, xuu98) -> new_esEs17(new_compare11(xuu96, xuu98), LT) new_compare112(xuu122, xuu123, True, cch) -> LT new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBranch(Succ(Zero), [], xuu31, xuu33, xuu38, app(ty_[], h), ba) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Float) -> new_ltEs9(xuu550, xuu560) new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT new_esEs34(xuu550, xuu560, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs19(xuu550, xuu560, bbb, bbc, bbd) new_esEs7(xuu40000, xuu3000, app(app(ty_Either, cfh), cga)) -> new_esEs24(xuu40000, xuu3000, cfh, cga) new_esEs33(xuu81, xuu84, ty_Float) -> new_esEs18(xuu81, xuu84) new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_esEs20(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) new_esEs22(xuu400002, xuu30002, app(ty_Ratio, dec)) -> new_esEs12(xuu400002, xuu30002, dec) new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs11(Left(xuu550), Left(xuu560), ty_Char, cda) -> new_ltEs17(xuu550, xuu560) new_esEs32(xuu80, xuu83, app(ty_Ratio, ec)) -> new_esEs12(xuu80, xuu83, ec) new_ltEs13(GT, GT) -> True new_esEs20(xuu400000, xuu30000, app(app(ty_@2, dbe), dbf)) -> new_esEs29(xuu400000, xuu30000, dbe, dbf) new_esEs34(xuu550, xuu560, ty_@0) -> new_esEs27(xuu550, xuu560) new_compare27(xuu96, xuu97, xuu98, xuu99, False, bcg, bch) -> new_compare110(xuu96, xuu97, xuu98, xuu99, new_lt21(xuu96, xuu98, bcg), new_asAs(new_esEs35(xuu96, xuu98, bcg), new_ltEs21(xuu97, xuu99, bch)), bcg, bch) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs17(xuu40001, xuu3001) new_lt10(xuu96, xuu98) -> new_esEs17(new_compare28(xuu96, xuu98), LT) new_esEs36(xuu550, xuu560, app(ty_[], egf)) -> new_esEs23(xuu550, xuu560, egf) new_compare110(xuu153, xuu154, xuu155, xuu156, False, xuu158, bgd, bge) -> new_compare111(xuu153, xuu154, xuu155, xuu156, xuu158, bgd, bge) new_esEs17(LT, LT) -> True new_ltEs13(EQ, GT) -> True new_esEs35(xuu96, xuu98, ty_Double) -> new_esEs30(xuu96, xuu98) new_lt23(xuu550, xuu560, app(ty_Ratio, egg)) -> new_lt4(xuu550, xuu560, egg) new_esEs31(xuu400000, xuu30000, app(ty_[], dee)) -> new_esEs23(xuu400000, xuu30000, dee) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs12(xuu62, xuu63) new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), :(xuu300, xuu301), xuu31, xuu26, xuu343, app(ty_[], h), ba), xuu344, app(ty_[], h), ba) new_ltEs13(EQ, EQ) -> True new_compare19(xuu130, xuu131, True, fcd, fce) -> LT new_esEs23(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ded) -> new_asAs(new_esEs31(xuu400000, xuu30000, ded), new_esEs23(xuu400001, xuu30001, ded)) new_esEs39(xuu400001, xuu30001, app(ty_Maybe, ffg)) -> new_esEs25(xuu400001, xuu30001, ffg) new_esEs11(xuu40002, xuu3002, ty_Int) -> new_esEs15(xuu40002, xuu3002) new_compare13(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, xuu175, db, dc, dd) -> new_compare14(xuu168, xuu169, xuu170, xuu171, xuu172, xuu173, True, db, dc, dd) new_primCmpNat0(Zero, Zero) -> EQ new_esEs37(xuu551, xuu561, ty_Integer) -> new_esEs16(xuu551, xuu561) new_ltEs21(xuu97, xuu99, ty_Float) -> new_ltEs9(xuu97, xuu99) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cab), cac), bhh) -> new_esEs24(xuu400000, xuu30000, cab, cac) new_ltEs11(Left(xuu550), Left(xuu560), ty_Integer, cda) -> new_ltEs10(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs15(xuu550, xuu560, cfd, cfe, cff) new_compare16(xuu137, xuu138, False, dhc, dhd) -> GT new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs10(xuu62, xuu63) new_ltEs24(xuu69, xuu70, ty_Ordering) -> new_ltEs13(xuu69, xuu70) new_esEs20(xuu400000, xuu30000, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, ty_Bool) -> new_esEs28(xuu551, xuu561) new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, efe)) -> new_compare29(xuu34, xuu35, efe) new_esEs38(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_esEs34(xuu550, xuu560, app(ty_Maybe, bag)) -> new_esEs25(xuu550, xuu560, bag) new_esEs39(xuu400001, xuu30001, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs19(xuu400001, xuu30001, ffh, fga, fgb) new_ltEs4(Just(xuu550), Just(xuu560), app(app(ty_@2, ca), cb)) -> new_ltEs8(xuu550, xuu560, ca, cb) new_ltEs20(xuu551, xuu561, ty_Bool) -> new_ltEs14(xuu551, xuu561) new_esEs9(xuu40000, xuu3000, app(ty_Ratio, ecc)) -> new_esEs12(xuu40000, xuu3000, ecc) new_primMinusNat0(Succ(xuu19400), Zero) -> Pos(Succ(xuu19400)) new_ltEs24(xuu69, xuu70, ty_Integer) -> new_ltEs10(xuu69, xuu70) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_esEs35(xuu96, xuu98, app(app(ty_Either, bdc), bdd)) -> new_esEs24(xuu96, xuu98, bdc, bdd) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Bool, bhh) -> new_esEs28(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, ty_Double) -> new_ltEs16(xuu82, xuu85) new_esEs33(xuu81, xuu84, ty_Int) -> new_esEs15(xuu81, xuu84) new_ltEs11(Left(xuu550), Right(xuu560), ced, cda) -> True new_compare15([], [], bfb) -> EQ new_esEs12(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), bb) -> new_asAs(new_esEs13(xuu400000, xuu30000, bb), new_esEs14(xuu400001, xuu30001, bb)) new_lt21(xuu96, xuu98, ty_Integer) -> new_lt14(xuu96, xuu98) new_ltEs24(xuu69, xuu70, ty_Char) -> new_ltEs17(xuu69, xuu70) new_ltEs11(Left(xuu550), Left(xuu560), app(ty_Maybe, cdf), cda) -> new_ltEs4(xuu550, xuu560, cdf) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_Maybe, dgd)) -> new_esEs25(xuu400000, xuu30000, dgd) new_ltEs20(xuu551, xuu561, ty_@0) -> new_ltEs5(xuu551, xuu561) new_esEs35(xuu96, xuu98, app(app(ty_@2, de), df)) -> new_esEs29(xuu96, xuu98, de, df) new_lt8(xuu81, xuu84, ty_Int) -> new_lt16(xuu81, xuu84) new_esEs32(xuu80, xuu83, ty_Ordering) -> new_esEs17(xuu80, xuu83) new_esEs21(xuu400001, xuu30001, app(ty_[], dbh)) -> new_esEs23(xuu400001, xuu30001, dbh) new_ltEs21(xuu97, xuu99, ty_Int) -> new_ltEs12(xuu97, xuu99) new_ltEs13(LT, GT) -> True new_esEs8(xuu40000, xuu3000, app(ty_[], cha)) -> new_esEs23(xuu40000, xuu3000, cha) new_esEs21(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs33(xuu81, xuu84, app(app(ty_Either, gb), gc)) -> new_esEs24(xuu81, xuu84, gb, gc) new_esEs32(xuu80, xuu83, ty_Bool) -> new_esEs28(xuu80, xuu83) new_esEs38(xuu400000, xuu30000, app(app(ty_@2, ffa), ffb)) -> new_esEs29(xuu400000, xuu30000, ffa, ffb) new_esEs32(xuu80, xuu83, ty_Integer) -> new_esEs16(xuu80, xuu83) new_primCmpNat0(Succ(xuu400000), Zero) -> GT new_esEs39(xuu400001, xuu30001, app(ty_[], ffd)) -> new_esEs23(xuu400001, xuu30001, ffd) new_pePe(False, xuu192) -> xuu192 new_ltEs18(xuu82, xuu85, ty_@0) -> new_ltEs5(xuu82, xuu85) new_esEs10(xuu40001, xuu3001, app(app(ty_Either, ece), ecf)) -> new_esEs24(xuu40001, xuu3001, ece, ecf) new_compare25(xuu62, xuu63, True, dhf, dhg) -> EQ new_compare210(xuu55, xuu56, True, fgf) -> EQ new_lt22(xuu551, xuu561, app(ty_[], ehh)) -> new_lt11(xuu551, xuu561, ehh) new_lt23(xuu550, xuu560, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_lt17(xuu550, xuu560, ehe, ehf, ehg) new_esEs37(xuu551, xuu561, ty_@0) -> new_esEs27(xuu551, xuu561) new_compare11(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs11(xuu40002, xuu3002, ty_Float) -> new_esEs18(xuu40002, xuu3002) new_primMinusNat0(Succ(xuu19400), Succ(xuu19300)) -> new_primMinusNat0(xuu19400, xuu19300) new_ltEs22(xuu552, xuu562, app(ty_Ratio, fbc)) -> new_ltEs7(xuu552, xuu562, fbc) new_compare110(xuu153, xuu154, xuu155, xuu156, True, xuu158, bgd, bge) -> new_compare111(xuu153, xuu154, xuu155, xuu156, True, bgd, bge) new_lt19(xuu96, xuu98) -> new_esEs17(new_compare18(xuu96, xuu98), LT) new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, che), chf), chg)) -> new_esEs19(xuu40000, xuu3000, che, chf, chg) new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False new_esEs25(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs19(xuu400000, xuu30000, dge, dgf, dgg) new_compare7(EQ, GT) -> LT new_lt8(xuu81, xuu84, app(ty_Maybe, ga)) -> new_lt12(xuu81, xuu84, ga) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_compare10(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_esEs31(xuu400000, xuu30000, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs19(xuu400000, xuu30000, dfa, dfb, dfc) new_lt8(xuu81, xuu84, app(app(app(ty_@3, gd), ge), gf)) -> new_lt17(xuu81, xuu84, gd, ge, gf) new_esEs39(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_esEs17(EQ, EQ) -> True new_lt22(xuu551, xuu561, ty_@0) -> new_lt10(xuu551, xuu561) new_esEs6(xuu40000, xuu3000, app(ty_Maybe, bha)) -> new_esEs25(xuu40000, xuu3000, bha) new_ltEs20(xuu551, xuu561, ty_Double) -> new_ltEs16(xuu551, xuu561) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_esEs22(xuu400002, xuu30002, ty_@0) -> new_esEs27(xuu400002, xuu30002) new_esEs6(xuu40000, xuu3000, app(ty_Ratio, bhg)) -> new_esEs12(xuu40000, xuu3000, bhg) new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) -> Branch(:(xuu4000, xuu4001), new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Integer, bhh) -> new_esEs16(xuu400000, xuu30000) new_esEs36(xuu550, xuu560, ty_Float) -> new_esEs18(xuu550, xuu560) new_esEs4(xuu40000, xuu3000, app(app(ty_@2, fcf), fcg)) -> new_esEs29(xuu40000, xuu3000, fcf, fcg) new_ltEs21(xuu97, xuu99, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs15(xuu97, xuu99, beg, beh, bfa) new_esEs11(xuu40002, xuu3002, ty_Char) -> new_esEs26(xuu40002, xuu3002) new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ede)) -> new_esEs12(xuu40001, xuu3001, ede) new_esEs31(xuu400000, xuu30000, app(ty_Maybe, deh)) -> new_esEs25(xuu400000, xuu30000, deh) new_compare8(True, True) -> EQ new_mkBalBranch6MkBalBranch30(Branch(xuu260, xuu261, xuu262, xuu263, xuu264), xuu300, xuu301, xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, xuu264, xuu300, xuu301, xuu31, xuu34, new_lt16(new_sizeFM0(xuu264, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu263, h, ba))), h, ba) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Ordering, bhh) -> new_esEs17(xuu400000, xuu30000) new_primPlusNat0(Zero, xuu4000100) -> Succ(xuu4000100) new_ltEs11(Right(xuu550), Left(xuu560), ced, cda) -> False new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs26(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(ty_Ratio, fhb)) -> new_ltEs7(xuu69, xuu70, fhb) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(ty_[], cee)) -> new_ltEs6(xuu550, xuu560, cee) new_primPlusInt(Pos(xuu1940), Pos(xuu1930)) -> Pos(new_primPlusNat1(xuu1940, xuu1930)) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs17(xuu62, xuu63) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(ty_Ratio, cce)) -> new_esEs12(xuu400000, xuu30000, cce) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs19(xuu40000, xuu3000, bhb, bhc, bhd) new_compare24(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, dg, dh, ea) -> new_compare13(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt9(xuu80, xuu83, dg), new_asAs(new_esEs32(xuu80, xuu83, dg), new_pePe(new_lt8(xuu81, xuu84, dh), new_asAs(new_esEs33(xuu81, xuu84, dh), new_ltEs18(xuu82, xuu85, ea)))), dg, dh, ea) new_esEs36(xuu550, xuu560, ty_Int) -> new_esEs15(xuu550, xuu560) new_lt21(xuu96, xuu98, ty_Int) -> new_lt16(xuu96, xuu98) new_lt9(xuu80, xuu83, ty_Bool) -> new_lt6(xuu80, xuu83) new_esEs8(xuu40000, xuu3000, app(ty_Maybe, chd)) -> new_esEs25(xuu40000, xuu3000, chd) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_Ratio, bh)) -> new_ltEs7(xuu550, xuu560, bh) new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu26, xuu300, xuu301, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba))), h, ba) new_esEs33(xuu81, xuu84, ty_Double) -> new_esEs30(xuu81, xuu84) new_ltEs23(xuu55, xuu56, ty_Double) -> new_ltEs16(xuu55, xuu56) new_lt8(xuu81, xuu84, app(app(ty_Either, gb), gc)) -> new_lt15(xuu81, xuu84, gb, gc) new_compare15([], :(xuu3000, xuu3001), bfb) -> LT new_lt8(xuu81, xuu84, ty_Ordering) -> new_lt5(xuu81, xuu84) new_ltEs22(xuu552, xuu562, ty_Char) -> new_ltEs17(xuu552, xuu562) new_esEs21(xuu400001, xuu30001, ty_Char) -> new_esEs26(xuu400001, xuu30001) new_esEs20(xuu400000, xuu30000, app(app(ty_Either, dag), dah)) -> new_esEs24(xuu400000, xuu30000, dag, dah) new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_ltEs11(Left(xuu550), Left(xuu560), ty_Ordering, cda) -> new_ltEs13(xuu550, xuu560) new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs28(xuu40000, xuu3000) new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare8(xuu4000, xuu300) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_Either, cdg), cdh), cda) -> new_ltEs11(xuu550, xuu560, cdg, cdh) new_esEs13(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_ltEs18(xuu82, xuu85, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs15(xuu82, xuu85, hf, hg, hh) new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) new_ltEs18(xuu82, xuu85, ty_Bool) -> new_ltEs14(xuu82, xuu85) new_esEs21(xuu400001, xuu30001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs19(xuu400001, xuu30001, dcd, dce, dcf) new_lt8(xuu81, xuu84, ty_Integer) -> new_lt14(xuu81, xuu84) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Int) -> new_ltEs12(xuu550, xuu560) new_compare19(xuu130, xuu131, False, fcd, fce) -> GT new_esEs21(xuu400001, xuu30001, app(ty_Maybe, dcc)) -> new_esEs25(xuu400001, xuu30001, dcc) new_esEs20(xuu400000, xuu30000, app(ty_Ratio, dbg)) -> new_esEs12(xuu400000, xuu30000, dbg) new_ltEs20(xuu551, xuu561, app(app(ty_@2, bbg), bbh)) -> new_ltEs8(xuu551, xuu561, bbg, bbh) new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) new_esEs22(xuu400002, xuu30002, ty_Bool) -> new_esEs28(xuu400002, xuu30002) new_esEs5(xuu40001, xuu3001, app(ty_[], fch)) -> new_esEs23(xuu40001, xuu3001, fch) new_lt15(xuu96, xuu98, bdc, bdd) -> new_esEs17(new_compare30(xuu96, xuu98, bdc, bdd), LT) new_ltEs13(GT, EQ) -> False new_lt21(xuu96, xuu98, app(ty_Maybe, bdb)) -> new_lt12(xuu96, xuu98, bdb) new_esEs32(xuu80, xuu83, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs19(xuu80, xuu83, fa, fb, fc) new_compare0(xuu4000, xuu300, ty_Float) -> new_compare11(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_Int) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu55, xuu56, ty_Float) -> new_ltEs9(xuu55, xuu56) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, eag), eah), eba)) -> new_ltEs15(xuu62, xuu63, eag, eah, eba) new_esEs22(xuu400002, xuu30002, ty_Double) -> new_esEs30(xuu400002, xuu30002) new_ltEs21(xuu97, xuu99, ty_Char) -> new_ltEs17(xuu97, xuu99) new_lt9(xuu80, xuu83, app(app(ty_Either, eg), eh)) -> new_lt15(xuu80, xuu83, eg, eh) new_esEs35(xuu96, xuu98, ty_Float) -> new_esEs18(xuu96, xuu98) new_esEs25(Just(xuu400000), Just(xuu30000), app(ty_[], dga)) -> new_esEs23(xuu400000, xuu30000, dga) new_esEs34(xuu550, xuu560, ty_Bool) -> new_esEs28(xuu550, xuu560) new_lt9(xuu80, xuu83, ty_Ordering) -> new_lt5(xuu80, xuu83) new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs16(xuu55, xuu56) -> new_fsEs(new_compare10(xuu55, xuu56)) new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) new_esEs39(xuu400001, xuu30001, app(ty_Ratio, fge)) -> new_esEs12(xuu400001, xuu30001, fge) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(app(ty_@2, ceg), ceh)) -> new_ltEs8(xuu550, xuu560, ceg, ceh) new_compare29(Just(xuu40000), Just(xuu3000), bff) -> new_compare210(xuu40000, xuu3000, new_esEs6(xuu40000, xuu3000, bff), bff) new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) new_ltEs21(xuu97, xuu99, app(ty_Ratio, bea)) -> new_ltEs7(xuu97, xuu99, bea) new_lt8(xuu81, xuu84, ty_@0) -> new_lt10(xuu81, xuu84) new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) new_ltEs23(xuu55, xuu56, ty_Bool) -> new_ltEs14(xuu55, xuu56) new_ltEs11(Left(xuu550), Left(xuu560), ty_Float, cda) -> new_ltEs9(xuu550, xuu560) new_ltEs11(Right(xuu550), Right(xuu560), ced, ty_Double) -> new_ltEs16(xuu550, xuu560) new_ltEs24(xuu69, xuu70, app(ty_Maybe, fhe)) -> new_ltEs4(xuu69, xuu70, fhe) new_compare15(:(xuu40000, xuu40001), [], bfb) -> GT new_esEs37(xuu551, xuu561, ty_Double) -> new_esEs30(xuu551, xuu561) new_ltEs9(xuu55, xuu56) -> new_fsEs(new_compare11(xuu55, xuu56)) new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, Branch(xuu3830, xuu3831, xuu3832, xuu3833, xuu3834), xuu384, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3830, xuu3831, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), [], xuu31, xuu33, xuu3833, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu380, xuu381, xuu3834, xuu384, app(ty_[], h), ba), app(ty_[], h), ba) new_ltEs20(xuu551, xuu561, app(app(ty_Either, bcb), bcc)) -> new_ltEs11(xuu551, xuu561, bcb, bcc) new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) new_ltEs24(xuu69, xuu70, app(app(app(ty_@3, fhh), gaa), gab)) -> new_ltEs15(xuu69, xuu70, fhh, gaa, gab) new_compare7(EQ, LT) -> GT new_compare7(GT, LT) -> GT new_ltEs23(xuu55, xuu56, ty_Int) -> new_ltEs12(xuu55, xuu56) new_ltEs22(xuu552, xuu562, ty_Integer) -> new_ltEs10(xuu552, xuu562) new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs18(xuu40001, xuu3001) new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare28(xuu34, xuu35) new_esEs31(xuu400000, xuu30000, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_ltEs24(xuu69, xuu70, ty_Float) -> new_ltEs9(xuu69, xuu70) new_lt9(xuu80, xuu83, ty_Double) -> new_lt18(xuu80, xuu83) new_asAs(True, xuu114) -> xuu114 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs9(xuu40000, xuu3000, app(app(ty_Either, ebc), ebd)) -> new_esEs24(xuu40000, xuu3000, ebc, ebd) new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, ccf, ccg) -> new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, ccf, ccg) new_lt8(xuu81, xuu84, app(ty_Ratio, ff)) -> new_lt4(xuu81, xuu84, ff) new_ltEs18(xuu82, xuu85, app(app(ty_@2, ha), hb)) -> new_ltEs8(xuu82, xuu85, ha, hb) new_lt20(xuu550, xuu560, app(ty_Ratio, bad)) -> new_lt4(xuu550, xuu560, bad) new_lt20(xuu550, xuu560, app(app(ty_@2, bae), baf)) -> new_lt7(xuu550, xuu560, bae, baf) new_esEs24(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, cae), caf), cag), bhh) -> new_esEs19(xuu400000, xuu30000, cae, caf, cag) new_esEs39(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs19(xuu40000, xuu3000, ebf, ebg, ebh) new_esEs14(xuu400001, xuu30001, ty_Int) -> new_esEs15(xuu400001, xuu30001) new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs28(xuu40001, xuu3001) new_esEs22(xuu400002, xuu30002, app(ty_Maybe, dde)) -> new_esEs25(xuu400002, xuu30002, dde) new_ltEs18(xuu82, xuu85, app(ty_Maybe, hc)) -> new_ltEs4(xuu82, xuu85, hc) new_ltEs21(xuu97, xuu99, ty_Ordering) -> new_ltEs13(xuu97, xuu99) new_primPlusInt(Pos(xuu1940), Neg(xuu1930)) -> new_primMinusNat0(xuu1940, xuu1930) new_primPlusInt(Neg(xuu1940), Pos(xuu1930)) -> new_primMinusNat0(xuu1930, xuu1940) new_mkBalBranch6MkBalBranch3(EmptyFM, xuu31, xuu38, True, h, ba) -> error([]) new_esEs31(xuu400000, xuu30000, ty_@0) -> new_esEs27(xuu400000, xuu30000) new_esEs31(xuu400000, xuu30000, ty_Float) -> new_esEs18(xuu400000, xuu30000) new_compare0(xuu4000, xuu300, ty_Char) -> new_compare18(xuu4000, xuu300) new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(app(ty_Either, cfb), cfc)) -> new_ltEs11(xuu550, xuu560, cfb, cfc) new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs30(xuu40001, xuu3001) new_lt21(xuu96, xuu98, ty_Double) -> new_lt18(xuu96, xuu98) new_esEs22(xuu400002, xuu30002, app(app(ty_@2, dea), deb)) -> new_esEs29(xuu400002, xuu30002, dea, deb) new_esEs11(xuu40002, xuu3002, ty_@0) -> new_esEs27(xuu40002, xuu3002) new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) new_esEs32(xuu80, xuu83, ty_@0) -> new_esEs27(xuu80, xuu83) new_compare7(LT, GT) -> LT new_compare7(LT, EQ) -> LT new_compare30(Right(xuu40000), Left(xuu3000), bfg, bfh) -> GT new_mkBalBranch6MkBalBranch4(xuu33, xuu31, EmptyFM, True, h, ba) -> error([]) new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs6(xuu40000, xuu3000, app(app(ty_@2, bhe), bhf)) -> new_esEs29(xuu40000, xuu3000, bhe, bhf) new_esEs35(xuu96, xuu98, app(ty_Ratio, be)) -> new_esEs12(xuu96, xuu98, be) new_ltEs19(xuu62, xuu63, app(ty_Ratio, eaa)) -> new_ltEs7(xuu62, xuu63, eaa) new_esEs20(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_esEs22(xuu400002, xuu30002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs19(xuu400002, xuu30002, ddf, ddg, ddh) new_esEs22(xuu400002, xuu30002, app(app(ty_Either, ddc), ddd)) -> new_esEs24(xuu400002, xuu30002, ddc, ddd) new_lt23(xuu550, xuu560, app(ty_Maybe, ehb)) -> new_lt12(xuu550, xuu560, ehb) new_esEs20(xuu400000, xuu30000, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_ltEs24(xuu69, xuu70, app(app(ty_Either, fhf), fhg)) -> new_ltEs11(xuu69, xuu70, fhf, fhg) new_ltEs13(EQ, LT) -> False new_ltEs18(xuu82, xuu85, app(app(ty_Either, hd), he)) -> new_ltEs11(xuu82, xuu85, hd, he) new_compare0(xuu4000, xuu300, ty_Double) -> new_compare10(xuu4000, xuu300) new_lt21(xuu96, xuu98, app(ty_Ratio, be)) -> new_lt4(xuu96, xuu98, be) new_esEs33(xuu81, xuu84, app(ty_[], fd)) -> new_esEs23(xuu81, xuu84, fd) new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs16(xuu40000, xuu3000) new_compare27(xuu96, xuu97, xuu98, xuu99, True, bcg, bch) -> EQ new_esEs24(Right(xuu400000), Right(xuu30000), cbc, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs19(xuu400000, xuu30000, cbh, cca, ccb) new_esEs17(GT, GT) -> True new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_ltEs19(xuu62, xuu63, app(app(ty_Either, eae), eaf)) -> new_ltEs11(xuu62, xuu63, eae, eaf) new_ltEs11(Left(xuu550), Left(xuu560), app(app(ty_@2, cdd), cde), cda) -> new_ltEs8(xuu550, xuu560, cdd, cde) new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, LT, h, ba) -> new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs27(xuu40001, xuu3001) new_ltEs8(@2(xuu550, xuu551), @2(xuu560, xuu561), baa, bab) -> new_pePe(new_lt20(xuu550, xuu560, baa), new_asAs(new_esEs34(xuu550, xuu560, baa), new_ltEs20(xuu551, xuu561, bab))) new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_esEs36(xuu550, xuu560, ty_Double) -> new_esEs30(xuu550, xuu560) new_esEs31(xuu400000, xuu30000, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs13(xuu62, xuu63) new_esEs4(xuu40000, xuu3000, app(ty_Ratio, bb)) -> new_esEs12(xuu40000, xuu3000, bb) new_esEs38(xuu400000, xuu30000, app(ty_[], feb)) -> new_esEs23(xuu400000, xuu30000, feb) new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False new_ltEs20(xuu551, xuu561, app(ty_Ratio, bbf)) -> new_ltEs7(xuu551, xuu561, bbf) new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) new_lt23(xuu550, xuu560, ty_Int) -> new_lt16(xuu550, xuu560) new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fdg), fdh)) -> new_esEs29(xuu40001, xuu3001, fdg, fdh) new_esEs24(Left(xuu400000), Left(xuu30000), ty_Double, bhh) -> new_esEs30(xuu400000, xuu30000) new_lt21(xuu96, xuu98, app(app(ty_@2, de), df)) -> new_lt7(xuu96, xuu98, de, df) new_esEs38(xuu400000, xuu30000, ty_Int) -> new_esEs15(xuu400000, xuu30000) new_compare211(xuu69, xuu70, True, fgg, fgh) -> EQ new_ltEs23(xuu55, xuu56, app(ty_Maybe, bf)) -> new_ltEs4(xuu55, xuu56, bf) new_esEs34(xuu550, xuu560, app(ty_Ratio, bad)) -> new_esEs12(xuu550, xuu560, bad) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Bool) -> new_esEs28(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu400001, xuu30001, ty_Integer) -> new_esEs16(xuu400001, xuu30001) new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_compare26(xuu4000, xuu300, bga, bgb, bgc) new_ltEs11(Right(xuu550), Right(xuu560), ced, app(ty_Ratio, cef)) -> new_ltEs7(xuu550, xuu560, cef) new_ltEs18(xuu82, xuu85, ty_Int) -> new_ltEs12(xuu82, xuu85) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Ordering) -> new_esEs17(xuu400000, xuu30000) new_ltEs20(xuu551, xuu561, ty_Ordering) -> new_ltEs13(xuu551, xuu561) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs15(xuu400000, xuu30000) new_primCompAux00(xuu34, xuu35, LT, eeh) -> LT new_ltEs21(xuu97, xuu99, ty_Integer) -> new_ltEs10(xuu97, xuu99) new_esEs21(xuu400001, xuu30001, app(app(ty_@2, dcg), dch)) -> new_esEs29(xuu400001, xuu30001, dcg, dch) new_lt20(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_esEs28(False, True) -> False new_esEs28(True, False) -> False new_lt9(xuu80, xuu83, ty_@0) -> new_lt10(xuu80, xuu83) new_ltEs23(xuu55, xuu56, ty_Integer) -> new_ltEs10(xuu55, xuu56) new_not(False) -> True new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_addToFM_C0(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, h, ba) -> new_mkBalBranch(xuu300, xuu301, xuu31, new_addToFM_C0(xuu33, [], xuu401, h, ba), xuu34, h, ba) new_ltEs23(xuu55, xuu56, app(app(app(ty_@3, egc), egd), ege)) -> new_ltEs15(xuu55, xuu56, egc, egd, ege) new_addToFM_C0(Branch([], xuu31, xuu32, xuu33, xuu34), [], xuu401, h, ba) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, h, ba) new_ltEs6(xuu55, xuu56, dfg) -> new_fsEs(new_compare15(xuu55, xuu56, dfg)) new_lt9(xuu80, xuu83, app(app(ty_@2, ed), ee)) -> new_lt7(xuu80, xuu83, ed, ee) new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, EmptyFM, xuu31, xuu38, False, h, ba) -> error([]) new_compare0(xuu4000, xuu300, app(ty_Maybe, bff)) -> new_compare29(xuu4000, xuu300, bff) new_ltEs24(xuu69, xuu70, ty_Bool) -> new_ltEs14(xuu69, xuu70) new_esEs38(xuu400000, xuu30000, ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs9(xuu40000, xuu3000, app(app(ty_@2, eca), ecb)) -> new_esEs29(xuu40000, xuu3000, eca, ecb) new_ltEs21(xuu97, xuu99, app(app(ty_Either, bee), bef)) -> new_ltEs11(xuu97, xuu99, bee, bef) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Char) -> new_esEs26(xuu400000, xuu30000) new_esEs37(xuu551, xuu561, app(ty_[], ehh)) -> new_esEs23(xuu551, xuu561, ehh) new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, GT, h, ba) -> new_mkBalBranch0(xuu31, xuu33, new_addToFM_C0(xuu34, [], xuu401, h, ba), h, ba) new_compare10(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare12(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) new_ltEs4(Just(xuu550), Just(xuu560), app(ty_[], bg)) -> new_ltEs6(xuu550, xuu560, bg) new_esEs22(xuu400002, xuu30002, ty_Ordering) -> new_esEs17(xuu400002, xuu30002) new_compare29(Nothing, Nothing, bff) -> EQ new_esEs22(xuu400002, xuu30002, ty_Integer) -> new_esEs16(xuu400002, xuu30002) new_esEs38(xuu400000, xuu30000, app(ty_Ratio, ffc)) -> new_esEs12(xuu400000, xuu30000, ffc) new_esEs25(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs30(xuu400000, xuu30000) new_esEs24(Right(xuu400000), Right(xuu30000), cbc, ty_Integer) -> new_esEs16(xuu400000, xuu30000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_addToFM_C0(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, h, ba) -> new_addToFM_C22(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, h), h, ba) new_compare0(xuu4000, xuu300, ty_@0) -> new_compare28(xuu4000, xuu300) new_ltEs24(xuu69, xuu70, ty_@0) -> new_ltEs5(xuu69, xuu70) new_ltEs22(xuu552, xuu562, ty_Bool) -> new_ltEs14(xuu552, xuu562) new_esEs4(xuu40000, xuu3000, ty_Int) -> new_esEs15(xuu40000, xuu3000) new_compare28(@0, @0) -> EQ new_esEs11(xuu40002, xuu3002, app(ty_[], edf)) -> new_esEs23(xuu40002, xuu3002, edf) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs23(xuu55, xuu56, app(app(ty_Either, ced), cda)) -> new_ltEs11(xuu55, xuu56, ced, cda) new_compare11(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare12(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs17(xuu40000, xuu3000) new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) new_esEs34(xuu550, xuu560, app(ty_[], bac)) -> new_esEs23(xuu550, xuu560, bac) new_compare211(xuu69, xuu70, False, fgg, fgh) -> new_compare16(xuu69, xuu70, new_ltEs24(xuu69, xuu70, fgh), fgg, fgh) new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare10(xuu34, xuu35) new_ltEs13(LT, EQ) -> True new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu33, xuu31, xuu38, new_gt(new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba))), h, ba) new_lt8(xuu81, xuu84, ty_Double) -> new_lt18(xuu81, xuu84) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_Ratio, cbb), bhh) -> new_esEs12(xuu400000, xuu30000, cbb) new_esEs24(Left(xuu400000), Left(xuu30000), app(ty_[], caa), bhh) -> new_esEs23(xuu400000, xuu30000, caa) new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs22(xuu552, xuu562, ty_@0) -> new_ltEs5(xuu552, xuu562) new_ltEs23(xuu55, xuu56, ty_Ordering) -> new_ltEs13(xuu55, xuu56) new_ltEs21(xuu97, xuu99, app(ty_Maybe, bed)) -> new_ltEs4(xuu97, xuu99, bed) new_esEs7(xuu40000, xuu3000, app(app(ty_@2, cgf), cgg)) -> new_esEs29(xuu40000, xuu3000, cgf, cgg) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba) -> new_sizeFM0(xuu38, h, ba) new_esEs36(xuu550, xuu560, app(ty_Ratio, egg)) -> new_esEs12(xuu550, xuu560, egg) new_lt23(xuu550, xuu560, app(app(ty_@2, egh), eha)) -> new_lt7(xuu550, xuu560, egh, eha) new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], efa)) -> new_compare15(xuu34, xuu35, efa) new_lt23(xuu550, xuu560, ty_Double) -> new_lt18(xuu550, xuu560) new_ltEs19(xuu62, xuu63, app(ty_Maybe, ead)) -> new_ltEs4(xuu62, xuu63, ead) new_esEs37(xuu551, xuu561, app(ty_Ratio, faa)) -> new_esEs12(xuu551, xuu561, faa) new_primEqNat0(Zero, Zero) -> True new_esEs25(Nothing, Nothing, dfh) -> True new_esEs25(Nothing, Just(xuu30000), dfh) -> False new_esEs25(Just(xuu400000), Nothing, dfh) -> False new_ltEs23(xuu55, xuu56, ty_@0) -> new_ltEs5(xuu55, xuu56) new_esEs39(xuu400001, xuu30001, ty_Double) -> new_esEs30(xuu400001, xuu30001) new_esEs4(xuu40000, xuu3000, ty_Double) -> new_esEs30(xuu40000, xuu3000) new_ltEs22(xuu552, xuu562, ty_Ordering) -> new_ltEs13(xuu552, xuu562) new_lt22(xuu551, xuu561, ty_Double) -> new_lt18(xuu551, xuu561) new_asAs(False, xuu114) -> False new_lt8(xuu81, xuu84, app(app(ty_@2, fg), fh)) -> new_lt7(xuu81, xuu84, fg, fh) new_ltEs22(xuu552, xuu562, app(app(ty_Either, fbg), fbh)) -> new_ltEs11(xuu552, xuu562, fbg, fbh) new_esEs8(xuu40000, xuu3000, app(app(ty_@2, chh), daa)) -> new_esEs29(xuu40000, xuu3000, chh, daa) new_ltEs20(xuu551, xuu561, app(ty_Maybe, bca)) -> new_ltEs4(xuu551, xuu561, bca) new_esEs26(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs35(xuu96, xuu98, app(ty_[], bda)) -> new_esEs23(xuu96, xuu98, bda) new_lt9(xuu80, xuu83, app(ty_Ratio, ec)) -> new_lt4(xuu80, xuu83, ec) new_esEs28(False, False) -> True The set Q consists of the following terms: new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch30(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, True, x9, x10) new_esEs37(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Integer) new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, ty_Integer) new_esEs24(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs25(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Float) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) new_primPlusNat1(Zero, Succ(x0)) new_primPlusNat1(Zero, Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_esEs37(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare29(Nothing, Just(x0), x1) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, True, x2) new_compare12(x0, x1) new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare15(:(x0, x1), [], x2) new_ltEs13(EQ, EQ) new_addToFM_C12(x0, x1, x2, x3, x4, GT, x5, x6) new_compare0(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) new_ltEs12(x0, x1) new_lt9(x0, x1, ty_Ordering) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare0(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs28(False, True) new_esEs28(True, False) new_lt4(x0, x1, x2) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) new_esEs24(Left(x0), Left(x1), ty_@0, x2) new_ltEs24(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Double) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs35(x0, x1, ty_Integer) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs25(Nothing, Just(x0), x1) new_esEs13(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, ty_Bool) new_lt16(x0, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(Left(x0), Left(x1), ty_Float, x2) new_mkBalBranch6MkBalBranch30(EmptyFM, x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) new_compare0(x0, x1, ty_@0) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs21(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(Just(x0), Just(x1), ty_Int) new_esEs20(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, EmptyFM, x4, x5, x6, x7, False, x8, x9) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_compare211(x0, x1, False, x2, x3) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(GT, EQ) new_compare7(EQ, GT) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, LT, x5, x6) new_esEs22(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs25(Just(x0), Just(x1), ty_Float) new_compare27(x0, x1, x2, x3, False, x4, x5) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt20(x0, x1, ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Float) new_compare8(False, False) new_lt21(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_esEs39(x0, x1, ty_@0) new_lt8(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4) new_esEs4(x0, x1, ty_Bool) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs14(False, False) new_esEs34(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_ltEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs33(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Float) new_ltEs16(x0, x1) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, EQ, x5, x6) new_esEs4(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(Float(x0, x1), Float(x2, x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_gt(x0, x1) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) new_primMulNat0(Succ(x0), Succ(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_asAs(True, x0) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_ltEs4(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Double) new_esEs25(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs25(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_esEs35(x0, x1, ty_@0) new_ltEs18(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) new_compare210(x0, x1, False, x2) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_esEs8(x0, x1, ty_Integer) new_compare7(GT, LT) new_compare7(LT, GT) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt15(x0, x1, x2, x3) new_sizeFM0(EmptyFM, x0, x1) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Just(x0), Just(x1), ty_Double) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primCompAux00(x0, x1, GT, x2) new_compare9(Integer(x0), Integer(x1)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, False, x2, x3) new_lt22(x0, x1, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) new_esEs24(Right(x0), Right(x1), x2, ty_Ordering) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_sr(x0, x1) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_esEs36(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Char(x0), Char(x1)) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_mkBalBranch0(x0, x1, x2, x3, x4) new_compare111(x0, x1, x2, x3, True, x4, x5) new_not(True) new_lt7(x0, x1, x2, x3) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, ty_Int) new_ltEs9(x0, x1) new_ltEs13(EQ, GT) new_ltEs13(GT, EQ) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_compare28(@0, @0) new_ltEs22(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Ordering) new_compare29(Just(x0), Just(x1), x2) new_lt21(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_esEs23([], [], x0) new_ltEs24(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_addToFM_C12(x0, x1, x2, x3, x4, LT, x5, x6) new_ltEs19(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs13(LT, LT) new_esEs8(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, x4, False, x5, x6) new_esEs17(EQ, EQ) new_esEs32(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Double) new_compare0(x0, x1, ty_Int) new_esEs8(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_lt10(x0, x1) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, False, x11, x12) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_primMulInt(Pos(x0), Pos(x1)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs8(x0, x1, ty_Int) new_lt22(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs6(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs11(x0, x1, ty_Bool) new_compare8(True, True) new_lt12(x0, x1, x2) new_esEs35(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, True, x7, x8) new_esEs28(False, False) new_esEs9(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs21(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, x4, False, x5, x6) new_lt21(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) new_primEqNat0(Succ(x0), Succ(x1)) new_primMinusNat0(Succ(x0), Zero) new_compare29(Just(x0), Nothing, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs24(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) new_esEs33(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_not(False) new_lt9(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, False, x6, x7) new_compare7(EQ, LT) new_compare7(LT, EQ) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, ty_Double) new_esEs17(LT, LT) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs25(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare7(GT, GT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) new_lt8(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Ordering) new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat1(Succ(x0), Zero) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs24(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs25(Nothing, Nothing, x0) new_lt17(x0, x1, x2, x3, x4) new_compare19(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Right(x1), x2, x3) new_esEs24(Right(x0), Left(x1), x2, x3) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_primMinusNat0(Zero, Succ(x0)) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs23(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_lt8(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqNat0(Zero, Succ(x0)) new_lt8(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt8(x0, x1, app(ty_Maybe, x2)) new_primMinusNat0(Zero, Zero) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(x0, x1, ty_Ordering) new_emptyFM(x0, x1) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Integer) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Double) new_sIZE_RATIO new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs36(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Int) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt22(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Ordering) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs14(x0, x1, ty_Integer) new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_ltEs18(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs23(:(x0, x1), [], x2) new_esEs31(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) new_ltEs23(x0, x1, ty_Integer) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_ltEs22(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare8(True, False) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(False, True) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs13(GT, LT) new_ltEs13(LT, GT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, ty_Double) new_lt9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, True, x2, x3) new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) new_compare210(x0, x1, True, x2) new_sizeFM(EmptyFM, x0, x1) new_esEs36(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_ltEs18(x0, x1, ty_Char) new_esEs10(x0, x1, ty_@0) new_compare15(:(x0, x1), :(x2, x3), x4) new_lt9(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_esEs24(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs21(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, ty_Char) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, x5, x6) new_ltEs4(Nothing, Nothing, x0) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, EmptyFM, True, x4, x5) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs25(Just(x0), Just(x1), ty_Char) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_esEs24(Right(x0), Right(x1), x2, ty_@0) new_esEs24(Left(x0), Left(x1), ty_Char, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Ordering) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_esEs25(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1) new_lt6(x0, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(x0, x1, ty_Float) new_ltEs18(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) new_esEs14(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_lt9(x0, x1, ty_Float) new_esEs24(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_compare30(Left(x0), Right(x1), x2, x3) new_compare30(Right(x0), Left(x1), x2, x3) new_compare30(Right(x0), Right(x1), x2, x3) new_pePe(True, x0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs39(x0, x1, ty_Double) new_lt9(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(True, True) new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Char) new_lt9(x0, x1, ty_Int) new_lt5(x0, x1) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs26(Char(x0), Char(x1)) new_esEs22(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Int) new_lt8(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Int) new_esEs23([], :(x0, x1), x2) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_compare30(Left(x0), Left(x1), x2, x3) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, x2) new_esEs4(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs10(x0, x1) new_esEs23(:(x0, x1), :(x2, x3), x4) new_compare0(x0, x1, ty_Ordering) new_esEs25(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs24(Right(x0), Right(x1), x2, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_addToFM_C12(x0, x1, x2, x3, x4, EQ, x5, x6) new_esEs25(Just(x0), Just(x1), app(ty_[], x2)) new_compare15([], [], x0) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, x12, False, x13, x14) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_@0) new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) new_esEs24(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Integer) new_ltEs4(Nothing, Just(x0), x1) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, False, x2, x3) new_esEs24(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Right(x0), Right(x1), x2, ty_Char) new_esEs38(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs25(Just(x0), Nothing, x1) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs14(True, True) new_primMulNat0(Zero, Succ(x0)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, ty_Int) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs21(x0, x1, ty_@0) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs30(Double(x0, x1), Double(x2, x3)) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) new_compare16(x0, x1, True, x2, x3) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs17(GT, GT) new_esEs24(Left(x0), Left(x1), ty_Int, x2) new_primCompAux00(x0, x1, EQ, ty_Double) new_lt19(x0, x1) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare25(x0, x1, True, x2, x3) new_ltEs17(x0, x1) new_esEs38(x0, x1, ty_Bool) new_compare15([], :(x0, x1), x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Bool) new_ltEs4(Just(x0), Nothing, x1) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_primPlusInt(Pos(x0), Pos(x1)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_ltEs4(Just(x0), Just(x1), ty_@0) new_ltEs23(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, GT, x5, x6) new_lt23(x0, x1, ty_Char) new_fsEs(x0) new_esEs5(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Int) new_ltEs13(GT, GT) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, ty_Bool) new_ltEs13(EQ, LT) new_ltEs13(LT, EQ) new_esEs24(Right(x0), Right(x1), x2, ty_Bool) new_esEs25(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare29(Nothing, Nothing, x0) new_compare112(x0, x1, False, x2) new_esEs31(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_asAs(False, x0) new_compare26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs16(Integer(x0), Integer(x1)) new_esEs39(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs31(x0, x1, ty_Int) new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(EQ, EQ) new_lt23(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_@0) new_ltEs14(False, True) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs14(True, False) new_esEs22(x0, x1, ty_Int) new_lt9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs25(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_compare7(LT, LT) new_ltEs19(x0, x1, ty_Char) new_esEs27(@0, @0) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8) new_ltEs5(x0, x1) new_esEs5(x0, x1, app(ty_[], x2)) new_addListToFM0(x0, x1, x2) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs22(x0, x1, ty_Ordering) new_esEs24(Right(x0), Right(x1), x2, ty_Float) new_esEs22(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs22(x0, x1, ty_Char) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare0(x0, x1, app(ty_Maybe, x2)) new_esEs24(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs39(x0, x1, ty_Bool) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_ltEs19(x0, x1, ty_Int) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(app(ty_@3, 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_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (39) YES ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu300000), Succ(xuu4000100)) -> new_primMulNat(xuu300000, Succ(xuu4000100)) R is empty. Q is empty. 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_primMulNat(Succ(xuu300000), Succ(xuu4000100)) -> new_primMulNat(xuu300000, Succ(xuu4000100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat(xuu4000000, xuu300000) 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(xuu4000000), Succ(xuu300000)) -> new_primEqNat(xuu4000000, xuu300000) 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(xuu19400), Succ(xuu19300)) -> new_primMinusNat(xuu19400, xuu19300) 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(xuu19400), Succ(xuu19300)) -> new_primMinusNat(xuu19400, xuu19300) 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(xuu19400), Succ(xuu19300)) -> new_primPlusNat(xuu19400, xuu19300) 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(xuu19400), Succ(xuu19300)) -> new_primPlusNat(xuu19400, xuu19300) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (51) YES