/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 7 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 3 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, 219 ms] (24) YES (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] (30) YES (31) QDP (32) DependencyGraphProof [EQUIVALENT, 0 ms] (33) AND (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 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_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 = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\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_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); 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 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; } ---------------------------------------- (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 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_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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_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 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 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 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; } ---------------------------------------- (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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_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); " "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); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap 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 :: (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 = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: 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; } ---------------------------------------- (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'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " 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 "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); " "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 wyu; " "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "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; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; " "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; " "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); " "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; " "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); " "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; " "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "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); " "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; " "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); " "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); " 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 "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 wyx wyy wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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_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 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (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 = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyu; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap 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_C",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM_C xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM_C xuu3 xuu4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 5[label="FiniteMap.addListToFM_C xuu3 xuu4 xuu5",fontsize=16,color="black",shape="triangle"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 xuu5",fontsize=16,color="burlywood",shape="triangle"];3763[label="xuu5/xuu50 : xuu51",fontsize=10,color="white",style="solid",shape="box"];6 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 7[label="",style="solid", color="burlywood", weight=3]; 3764[label="xuu5/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 (xuu50 : xuu51)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd xuu3) xuu4 []",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 xuu3) (FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50) xuu51",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 xuu50",fontsize=16,color="burlywood",shape="box"];3765[label="xuu50/(xuu500,xuu501)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu51",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd xuu3 xuu4 (xuu500,xuu501)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C xuu3 xuu4 xuu500 xuu501",fontsize=16,color="burlywood",shape="triangle"];3766[label="xuu4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 15[label="",style="solid", color="burlywood", weight=3]; 3767[label="xuu4/FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44",fontsize=10,color="white",style="solid",shape="box"];14 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 xuu3 FiniteMap.EmptyFM xuu500 xuu501",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 xuu3 (FiniteMap.Branch xuu40 xuu41 xuu42 xuu43 xuu44) xuu500 xuu501",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu500 xuu501",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (xuu500 < xuu40)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.Branch xuu500 xuu501 (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 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 xuu500 xuu501 (compare xuu500 xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3768[label="xuu500/xuu5000 : xuu5001",fontsize=10,color="white",style="solid",shape="box"];22 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 25[label="",style="solid", color="burlywood", weight=3]; 3769[label="xuu500/[]",fontsize=10,color="white",style="solid",shape="box"];22 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 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 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3770[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];25 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 28[label="",style="solid", color="burlywood", weight=3]; 3771[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];25 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 29[label="",style="solid", color="burlywood", weight=3]; 26[label="FiniteMap.addToFM_C2 xuu3 xuu40 xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] xuu40 == LT)",fontsize=16,color="burlywood",shape="box"];3772[label="xuu40/xuu400 : xuu401",fontsize=10,color="white",style="solid",shape="box"];26 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 30[label="",style="solid", color="burlywood", weight=3]; 3773[label="xuu40/[]",fontsize=10,color="white",style="solid",shape="box"];26 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 31[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) (xuu400 : xuu401) == LT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) [] == LT)",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] (xuu400 : xuu401) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 32 -> 120[label="",style="dashed", color="red", weight=0]; 32[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (primCompAux xuu5000 xuu400 (compare xuu5001 xuu401) == LT)",fontsize=16,color="magenta"];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]; 32 -> 130[label="",style="dashed", color="magenta", weight=3]; 32 -> 131[label="",style="dashed", color="magenta", weight=3]; 33[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (GT == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 34[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 (LT == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (EQ == LT)",fontsize=16,color="black",shape="box"];35 -> 39[label="",style="solid", color="black", weight=3]; 121[label="xuu5001",fontsize=16,color="green",shape="box"];122[label="xuu501",fontsize=16,color="green",shape="box"];123[label="xuu401",fontsize=16,color="green",shape="box"];124[label="xuu42",fontsize=16,color="green",shape="box"];125[label="xuu43",fontsize=16,color="green",shape="box"];126[label="xuu44",fontsize=16,color="green",shape="box"];127[label="xuu3",fontsize=16,color="green",shape="box"];128[label="xuu41",fontsize=16,color="green",shape="box"];129[label="xuu400",fontsize=16,color="green",shape="box"];130[label="primCompAux xuu5000 xuu400 (compare xuu5001 xuu401)",fontsize=16,color="black",shape="triangle"];130 -> 147[label="",style="solid", color="black", weight=3]; 131[label="xuu5000",fontsize=16,color="green",shape="box"];120[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu32 == LT)",fontsize=16,color="burlywood",shape="triangle"];3774[label="xuu32/LT",fontsize=10,color="white",style="solid",shape="box"];120 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 148[label="",style="solid", color="burlywood", weight=3]; 3775[label="xuu32/EQ",fontsize=10,color="white",style="solid",shape="box"];120 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 149[label="",style="solid", color="burlywood", weight=3]; 3776[label="xuu32/GT",fontsize=10,color="white",style="solid",shape="box"];120 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 150[label="",style="solid", color="burlywood", weight=3]; 37[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="black",shape="box"];37 -> 52[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C2 xuu3 (xuu400 : xuu401) xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];38 -> 53[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C2 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="black",shape="box"];39 -> 54[label="",style="solid", color="black", weight=3]; 147 -> 160[label="",style="dashed", color="red", weight=0]; 147[label="primCompAux0 (compare xuu5001 xuu401) (compare xuu5000 xuu400)",fontsize=16,color="magenta"];147 -> 161[label="",style="dashed", color="magenta", weight=3]; 147 -> 162[label="",style="dashed", color="magenta", weight=3]; 147 -> 163[label="",style="dashed", color="magenta", weight=3]; 148[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == LT)",fontsize=16,color="black",shape="box"];148 -> 164[label="",style="solid", color="black", weight=3]; 149[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == LT)",fontsize=16,color="black",shape="box"];149 -> 165[label="",style="solid", color="black", weight=3]; 150[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == LT)",fontsize=16,color="black",shape="box"];150 -> 166[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (xuu5000 : xuu5001 > [])",fontsize=16,color="black",shape="box"];52 -> 72[label="",style="solid", color="black", weight=3]; 53 -> 73[label="",style="dashed", color="red", weight=0]; 53[label="FiniteMap.mkBalBranch (xuu400 : xuu401) xuu41 (FiniteMap.addToFM_C xuu3 xuu43 [] xuu501) xuu44",fontsize=16,color="magenta"];53 -> 74[label="",style="dashed", color="magenta", weight=3]; 54[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 ([] > [])",fontsize=16,color="black",shape="box"];54 -> 75[label="",style="solid", color="black", weight=3]; 161[label="compare xuu5000 xuu400",fontsize=16,color="blue",shape="box"];3777[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 167[label="",style="solid", color="blue", weight=3]; 3778[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 168[label="",style="solid", color="blue", weight=3]; 3779[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 169[label="",style="solid", color="blue", weight=3]; 3780[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 170[label="",style="solid", color="blue", weight=3]; 3781[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 171[label="",style="solid", color="blue", weight=3]; 3782[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 172[label="",style="solid", color="blue", weight=3]; 3783[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 173[label="",style="solid", color="blue", weight=3]; 3784[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 174[label="",style="solid", color="blue", weight=3]; 3785[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 175[label="",style="solid", color="blue", weight=3]; 3786[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 176[label="",style="solid", color="blue", weight=3]; 3787[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 177[label="",style="solid", color="blue", weight=3]; 3788[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 178[label="",style="solid", color="blue", weight=3]; 3789[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 179[label="",style="solid", color="blue", weight=3]; 3790[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 180[label="",style="solid", color="blue", weight=3]; 162[label="xuu401",fontsize=16,color="green",shape="box"];163[label="xuu5001",fontsize=16,color="green",shape="box"];160[label="primCompAux0 (compare xuu37 xuu38) xuu39",fontsize=16,color="burlywood",shape="triangle"];3791[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];160 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 181[label="",style="solid", color="burlywood", weight=3]; 3792[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];160 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 182[label="",style="solid", color="burlywood", weight=3]; 3793[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];160 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 183[label="",style="solid", color="burlywood", weight=3]; 164[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];164 -> 191[label="",style="solid", color="black", weight=3]; 165[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];165 -> 192[label="",style="solid", color="black", weight=3]; 166 -> 165[label="",style="dashed", color="red", weight=0]; 166[label="FiniteMap.addToFM_C2 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];72 -> 94[label="",style="dashed", color="red", weight=0]; 72[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (compare (xuu5000 : xuu5001) [] == GT)",fontsize=16,color="magenta"];72 -> 95[label="",style="dashed", color="magenta", weight=3]; 74 -> 14[label="",style="dashed", color="red", weight=0]; 74[label="FiniteMap.addToFM_C xuu3 xuu43 [] xuu501",fontsize=16,color="magenta"];74 -> 96[label="",style="dashed", color="magenta", weight=3]; 74 -> 97[label="",style="dashed", color="magenta", weight=3]; 73[label="FiniteMap.mkBalBranch (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="black",shape="triangle"];73 -> 98[label="",style="solid", color="black", weight=3]; 75 -> 99[label="",style="dashed", color="red", weight=0]; 75[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (compare [] [] == GT)",fontsize=16,color="magenta"];75 -> 100[label="",style="dashed", color="magenta", weight=3]; 167[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3794[label="xuu5000/xuu50000 : xuu50001",fontsize=10,color="white",style="solid",shape="box"];167 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 193[label="",style="solid", color="burlywood", weight=3]; 3795[label="xuu5000/[]",fontsize=10,color="white",style="solid",shape="box"];167 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 194[label="",style="solid", color="burlywood", weight=3]; 168[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3796[label="xuu5000/()",fontsize=10,color="white",style="solid",shape="box"];168 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 195[label="",style="solid", color="burlywood", weight=3]; 169[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];169 -> 196[label="",style="solid", color="black", weight=3]; 170[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];170 -> 197[label="",style="solid", color="black", weight=3]; 171[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];171 -> 198[label="",style="solid", color="black", weight=3]; 172[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3797[label="xuu5000/xuu50000 :% xuu50001",fontsize=10,color="white",style="solid",shape="box"];172 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 199[label="",style="solid", color="burlywood", weight=3]; 173[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];173 -> 200[label="",style="solid", color="black", weight=3]; 174[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];174 -> 201[label="",style="solid", color="black", weight=3]; 175[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];175 -> 202[label="",style="solid", color="black", weight=3]; 176[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];176 -> 203[label="",style="solid", color="black", weight=3]; 177[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];177 -> 204[label="",style="solid", color="black", weight=3]; 178[label="compare xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3798[label="xuu5000/Integer xuu50000",fontsize=10,color="white",style="solid",shape="box"];178 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 205[label="",style="solid", color="burlywood", weight=3]; 179[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];179 -> 206[label="",style="solid", color="black", weight=3]; 180[label="compare xuu5000 xuu400",fontsize=16,color="black",shape="triangle"];180 -> 207[label="",style="solid", color="black", weight=3]; 181[label="primCompAux0 (compare xuu37 xuu38) LT",fontsize=16,color="black",shape="box"];181 -> 208[label="",style="solid", color="black", weight=3]; 182[label="primCompAux0 (compare xuu37 xuu38) EQ",fontsize=16,color="black",shape="box"];182 -> 209[label="",style="solid", color="black", weight=3]; 183[label="primCompAux0 (compare xuu37 xuu38) GT",fontsize=16,color="black",shape="box"];183 -> 210[label="",style="solid", color="black", weight=3]; 191 -> 73[label="",style="dashed", color="red", weight=0]; 191[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 (FiniteMap.addToFM_C xuu18 xuu23 (xuu25 : xuu26) xuu27) xuu24",fontsize=16,color="magenta"];191 -> 215[label="",style="dashed", color="magenta", weight=3]; 191 -> 216[label="",style="dashed", color="magenta", weight=3]; 191 -> 217[label="",style="dashed", color="magenta", weight=3]; 191 -> 218[label="",style="dashed", color="magenta", weight=3]; 191 -> 219[label="",style="dashed", color="magenta", weight=3]; 192[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu25 : xuu26 > xuu19 : xuu20)",fontsize=16,color="black",shape="box"];192 -> 220[label="",style="solid", color="black", weight=3]; 95[label="compare (xuu5000 : xuu5001) []",fontsize=16,color="black",shape="box"];95 -> 151[label="",style="solid", color="black", weight=3]; 94[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (xuu30 == GT)",fontsize=16,color="burlywood",shape="triangle"];3799[label="xuu30/LT",fontsize=10,color="white",style="solid",shape="box"];94 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 152[label="",style="solid", color="burlywood", weight=3]; 3800[label="xuu30/EQ",fontsize=10,color="white",style="solid",shape="box"];94 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 153[label="",style="solid", color="burlywood", weight=3]; 3801[label="xuu30/GT",fontsize=10,color="white",style="solid",shape="box"];94 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 154[label="",style="solid", color="burlywood", weight=3]; 96[label="xuu43",fontsize=16,color="green",shape="box"];97[label="[]",fontsize=16,color="green",shape="box"];98[label="FiniteMap.mkBalBranch6 (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="black",shape="box"];98 -> 155[label="",style="solid", color="black", weight=3]; 100[label="compare [] []",fontsize=16,color="black",shape="box"];100 -> 156[label="",style="solid", color="black", weight=3]; 99[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (xuu31 == GT)",fontsize=16,color="burlywood",shape="triangle"];3802[label="xuu31/LT",fontsize=10,color="white",style="solid",shape="box"];99 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 157[label="",style="solid", color="burlywood", weight=3]; 3803[label="xuu31/EQ",fontsize=10,color="white",style="solid",shape="box"];99 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 158[label="",style="solid", color="burlywood", weight=3]; 3804[label="xuu31/GT",fontsize=10,color="white",style="solid",shape="box"];99 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 159[label="",style="solid", color="burlywood", weight=3]; 193[label="compare (xuu50000 : xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3805[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];193 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 221[label="",style="solid", color="burlywood", weight=3]; 3806[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];193 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 222[label="",style="solid", color="burlywood", weight=3]; 194[label="compare [] xuu400",fontsize=16,color="burlywood",shape="box"];3807[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];194 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 223[label="",style="solid", color="burlywood", weight=3]; 3808[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];194 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 224[label="",style="solid", color="burlywood", weight=3]; 195[label="compare () xuu400",fontsize=16,color="burlywood",shape="box"];3809[label="xuu400/()",fontsize=10,color="white",style="solid",shape="box"];195 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 225[label="",style="solid", color="burlywood", weight=3]; 196[label="primCmpInt xuu5000 xuu400",fontsize=16,color="burlywood",shape="triangle"];3810[label="xuu5000/Pos xuu50000",fontsize=10,color="white",style="solid",shape="box"];196 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 226[label="",style="solid", color="burlywood", weight=3]; 3811[label="xuu5000/Neg xuu50000",fontsize=10,color="white",style="solid",shape="box"];196 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 227[label="",style="solid", color="burlywood", weight=3]; 197[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];197 -> 228[label="",style="solid", color="black", weight=3]; 198[label="primCmpFloat xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3812[label="xuu5000/Float xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];198 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 229[label="",style="solid", color="burlywood", weight=3]; 199[label="compare (xuu50000 :% xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3813[label="xuu400/xuu4000 :% xuu4001",fontsize=10,color="white",style="solid",shape="box"];199 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 230[label="",style="solid", color="burlywood", weight=3]; 200[label="primCmpDouble xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3814[label="xuu5000/Double xuu50000 xuu50001",fontsize=10,color="white",style="solid",shape="box"];200 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 231[label="",style="solid", color="burlywood", weight=3]; 201[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];201 -> 232[label="",style="solid", color="black", weight=3]; 202[label="primCmpChar xuu5000 xuu400",fontsize=16,color="burlywood",shape="box"];3815[label="xuu5000/Char xuu50000",fontsize=10,color="white",style="solid",shape="box"];202 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 233[label="",style="solid", color="burlywood", weight=3]; 203[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];203 -> 234[label="",style="solid", color="black", weight=3]; 204[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];204 -> 235[label="",style="solid", color="black", weight=3]; 205[label="compare (Integer xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3816[label="xuu400/Integer xuu4000",fontsize=10,color="white",style="solid",shape="box"];205 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 236[label="",style="solid", color="burlywood", weight=3]; 206[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];206 -> 237[label="",style="solid", color="black", weight=3]; 207[label="compare3 xuu5000 xuu400",fontsize=16,color="black",shape="box"];207 -> 238[label="",style="solid", color="black", weight=3]; 208[label="LT",fontsize=16,color="green",shape="box"];209[label="compare xuu37 xuu38",fontsize=16,color="blue",shape="box"];3817[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 239[label="",style="solid", color="blue", weight=3]; 3818[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 240[label="",style="solid", color="blue", weight=3]; 3819[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 241[label="",style="solid", color="blue", weight=3]; 3820[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 242[label="",style="solid", color="blue", weight=3]; 3821[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 243[label="",style="solid", color="blue", weight=3]; 3822[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 244[label="",style="solid", color="blue", weight=3]; 3823[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 245[label="",style="solid", color="blue", weight=3]; 3824[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 246[label="",style="solid", color="blue", weight=3]; 3825[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 247[label="",style="solid", color="blue", weight=3]; 3826[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 248[label="",style="solid", color="blue", weight=3]; 3827[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 249[label="",style="solid", color="blue", weight=3]; 3828[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 250[label="",style="solid", color="blue", weight=3]; 3829[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 251[label="",style="solid", color="blue", weight=3]; 3830[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];209 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 252[label="",style="solid", color="blue", weight=3]; 210[label="GT",fontsize=16,color="green",shape="box"];215[label="xuu20",fontsize=16,color="green",shape="box"];216[label="xuu24",fontsize=16,color="green",shape="box"];217[label="xuu19",fontsize=16,color="green",shape="box"];218 -> 14[label="",style="dashed", color="red", weight=0]; 218[label="FiniteMap.addToFM_C xuu18 xuu23 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];218 -> 259[label="",style="dashed", color="magenta", weight=3]; 218 -> 260[label="",style="dashed", color="magenta", weight=3]; 218 -> 261[label="",style="dashed", color="magenta", weight=3]; 218 -> 262[label="",style="dashed", color="magenta", weight=3]; 219[label="xuu21",fontsize=16,color="green",shape="box"];220 -> 263[label="",style="dashed", color="red", weight=0]; 220[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (compare (xuu25 : xuu26) (xuu19 : xuu20) == GT)",fontsize=16,color="magenta"];220 -> 264[label="",style="dashed", color="magenta", weight=3]; 151[label="GT",fontsize=16,color="green",shape="box"];152[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (LT == GT)",fontsize=16,color="black",shape="box"];152 -> 184[label="",style="solid", color="black", weight=3]; 153[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (EQ == GT)",fontsize=16,color="black",shape="box"];153 -> 185[label="",style="solid", color="black", weight=3]; 154[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 (GT == GT)",fontsize=16,color="black",shape="box"];154 -> 186[label="",style="solid", color="black", weight=3]; 155[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];155 -> 187[label="",style="solid", color="black", weight=3]; 156[label="EQ",fontsize=16,color="green",shape="box"];157[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (LT == GT)",fontsize=16,color="black",shape="box"];157 -> 188[label="",style="solid", color="black", weight=3]; 158[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (EQ == GT)",fontsize=16,color="black",shape="box"];158 -> 189[label="",style="solid", color="black", weight=3]; 159[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 (GT == GT)",fontsize=16,color="black",shape="box"];159 -> 190[label="",style="solid", color="black", weight=3]; 221[label="compare (xuu50000 : xuu50001) (xuu4000 : xuu4001)",fontsize=16,color="black",shape="box"];221 -> 265[label="",style="solid", color="black", weight=3]; 222[label="compare (xuu50000 : xuu50001) []",fontsize=16,color="black",shape="box"];222 -> 266[label="",style="solid", color="black", weight=3]; 223[label="compare [] (xuu4000 : xuu4001)",fontsize=16,color="black",shape="box"];223 -> 267[label="",style="solid", color="black", weight=3]; 224[label="compare [] []",fontsize=16,color="black",shape="box"];224 -> 268[label="",style="solid", color="black", weight=3]; 225[label="compare () ()",fontsize=16,color="black",shape="box"];225 -> 269[label="",style="solid", color="black", weight=3]; 226[label="primCmpInt (Pos xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3831[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];226 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 270[label="",style="solid", color="burlywood", weight=3]; 3832[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];226 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 271[label="",style="solid", color="burlywood", weight=3]; 227[label="primCmpInt (Neg xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3833[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];227 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 272[label="",style="solid", color="burlywood", weight=3]; 3834[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];227 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 273[label="",style="solid", color="burlywood", weight=3]; 228[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3835[label="xuu5000/(xuu50000,xuu50001,xuu50002)",fontsize=10,color="white",style="solid",shape="box"];228 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 274[label="",style="solid", color="burlywood", weight=3]; 229[label="primCmpFloat (Float xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3836[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];229 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 275[label="",style="solid", color="burlywood", weight=3]; 3837[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];229 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 276[label="",style="solid", color="burlywood", weight=3]; 230[label="compare (xuu50000 :% xuu50001) (xuu4000 :% xuu4001)",fontsize=16,color="black",shape="box"];230 -> 277[label="",style="solid", color="black", weight=3]; 231[label="primCmpDouble (Double xuu50000 xuu50001) xuu400",fontsize=16,color="burlywood",shape="box"];3838[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];231 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 278[label="",style="solid", color="burlywood", weight=3]; 3839[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];231 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 279[label="",style="solid", color="burlywood", weight=3]; 232[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3840[label="xuu5000/False",fontsize=10,color="white",style="solid",shape="box"];232 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 280[label="",style="solid", color="burlywood", weight=3]; 3841[label="xuu5000/True",fontsize=10,color="white",style="solid",shape="box"];232 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 281[label="",style="solid", color="burlywood", weight=3]; 233[label="primCmpChar (Char xuu50000) xuu400",fontsize=16,color="burlywood",shape="box"];3842[label="xuu400/Char xuu4000",fontsize=10,color="white",style="solid",shape="box"];233 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 282[label="",style="solid", color="burlywood", weight=3]; 234[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3843[label="xuu5000/Left xuu50000",fontsize=10,color="white",style="solid",shape="box"];234 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 283[label="",style="solid", color="burlywood", weight=3]; 3844[label="xuu5000/Right xuu50000",fontsize=10,color="white",style="solid",shape="box"];234 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 284[label="",style="solid", color="burlywood", weight=3]; 235[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3845[label="xuu5000/Nothing",fontsize=10,color="white",style="solid",shape="box"];235 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 285[label="",style="solid", color="burlywood", weight=3]; 3846[label="xuu5000/Just xuu50000",fontsize=10,color="white",style="solid",shape="box"];235 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 286[label="",style="solid", color="burlywood", weight=3]; 236[label="compare (Integer xuu50000) (Integer xuu4000)",fontsize=16,color="black",shape="box"];236 -> 287[label="",style="solid", color="black", weight=3]; 237[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3847[label="xuu5000/(xuu50000,xuu50001)",fontsize=10,color="white",style="solid",shape="box"];237 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 288[label="",style="solid", color="burlywood", weight=3]; 238[label="compare2 xuu5000 xuu400 (xuu5000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3848[label="xuu5000/LT",fontsize=10,color="white",style="solid",shape="box"];238 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 289[label="",style="solid", color="burlywood", weight=3]; 3849[label="xuu5000/EQ",fontsize=10,color="white",style="solid",shape="box"];238 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 290[label="",style="solid", color="burlywood", weight=3]; 3850[label="xuu5000/GT",fontsize=10,color="white",style="solid",shape="box"];238 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 291[label="",style="solid", color="burlywood", weight=3]; 239 -> 167[label="",style="dashed", color="red", weight=0]; 239[label="compare xuu37 xuu38",fontsize=16,color="magenta"];239 -> 292[label="",style="dashed", color="magenta", weight=3]; 239 -> 293[label="",style="dashed", color="magenta", weight=3]; 240 -> 168[label="",style="dashed", color="red", weight=0]; 240[label="compare xuu37 xuu38",fontsize=16,color="magenta"];240 -> 294[label="",style="dashed", color="magenta", weight=3]; 240 -> 295[label="",style="dashed", color="magenta", weight=3]; 241 -> 169[label="",style="dashed", color="red", weight=0]; 241[label="compare xuu37 xuu38",fontsize=16,color="magenta"];241 -> 296[label="",style="dashed", color="magenta", weight=3]; 241 -> 297[label="",style="dashed", color="magenta", weight=3]; 242 -> 170[label="",style="dashed", color="red", weight=0]; 242[label="compare xuu37 xuu38",fontsize=16,color="magenta"];242 -> 298[label="",style="dashed", color="magenta", weight=3]; 242 -> 299[label="",style="dashed", color="magenta", weight=3]; 243 -> 171[label="",style="dashed", color="red", weight=0]; 243[label="compare xuu37 xuu38",fontsize=16,color="magenta"];243 -> 300[label="",style="dashed", color="magenta", weight=3]; 243 -> 301[label="",style="dashed", color="magenta", weight=3]; 244 -> 172[label="",style="dashed", color="red", weight=0]; 244[label="compare xuu37 xuu38",fontsize=16,color="magenta"];244 -> 302[label="",style="dashed", color="magenta", weight=3]; 244 -> 303[label="",style="dashed", color="magenta", weight=3]; 245 -> 173[label="",style="dashed", color="red", weight=0]; 245[label="compare xuu37 xuu38",fontsize=16,color="magenta"];245 -> 304[label="",style="dashed", color="magenta", weight=3]; 245 -> 305[label="",style="dashed", color="magenta", weight=3]; 246 -> 174[label="",style="dashed", color="red", weight=0]; 246[label="compare xuu37 xuu38",fontsize=16,color="magenta"];246 -> 306[label="",style="dashed", color="magenta", weight=3]; 246 -> 307[label="",style="dashed", color="magenta", weight=3]; 247 -> 175[label="",style="dashed", color="red", weight=0]; 247[label="compare xuu37 xuu38",fontsize=16,color="magenta"];247 -> 308[label="",style="dashed", color="magenta", weight=3]; 247 -> 309[label="",style="dashed", color="magenta", weight=3]; 248 -> 176[label="",style="dashed", color="red", weight=0]; 248[label="compare xuu37 xuu38",fontsize=16,color="magenta"];248 -> 310[label="",style="dashed", color="magenta", weight=3]; 248 -> 311[label="",style="dashed", color="magenta", weight=3]; 249 -> 177[label="",style="dashed", color="red", weight=0]; 249[label="compare xuu37 xuu38",fontsize=16,color="magenta"];249 -> 312[label="",style="dashed", color="magenta", weight=3]; 249 -> 313[label="",style="dashed", color="magenta", weight=3]; 250 -> 178[label="",style="dashed", color="red", weight=0]; 250[label="compare xuu37 xuu38",fontsize=16,color="magenta"];250 -> 314[label="",style="dashed", color="magenta", weight=3]; 250 -> 315[label="",style="dashed", color="magenta", weight=3]; 251 -> 179[label="",style="dashed", color="red", weight=0]; 251[label="compare xuu37 xuu38",fontsize=16,color="magenta"];251 -> 316[label="",style="dashed", color="magenta", weight=3]; 251 -> 317[label="",style="dashed", color="magenta", weight=3]; 252 -> 180[label="",style="dashed", color="red", weight=0]; 252[label="compare xuu37 xuu38",fontsize=16,color="magenta"];252 -> 318[label="",style="dashed", color="magenta", weight=3]; 252 -> 319[label="",style="dashed", color="magenta", weight=3]; 259[label="xuu23",fontsize=16,color="green",shape="box"];260[label="xuu18",fontsize=16,color="green",shape="box"];261[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];262[label="xuu27",fontsize=16,color="green",shape="box"];264 -> 167[label="",style="dashed", color="red", weight=0]; 264[label="compare (xuu25 : xuu26) (xuu19 : xuu20)",fontsize=16,color="magenta"];264 -> 320[label="",style="dashed", color="magenta", weight=3]; 264 -> 321[label="",style="dashed", color="magenta", weight=3]; 263[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (xuu42 == GT)",fontsize=16,color="burlywood",shape="triangle"];3851[label="xuu42/LT",fontsize=10,color="white",style="solid",shape="box"];263 -> 3851[label="",style="solid", color="burlywood", weight=9]; 3851 -> 322[label="",style="solid", color="burlywood", weight=3]; 3852[label="xuu42/EQ",fontsize=10,color="white",style="solid",shape="box"];263 -> 3852[label="",style="solid", color="burlywood", weight=9]; 3852 -> 323[label="",style="solid", color="burlywood", weight=3]; 3853[label="xuu42/GT",fontsize=10,color="white",style="solid",shape="box"];263 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 324[label="",style="solid", color="burlywood", weight=3]; 184[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="black",shape="triangle"];184 -> 211[label="",style="solid", color="black", weight=3]; 185 -> 184[label="",style="dashed", color="red", weight=0]; 185[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 False",fontsize=16,color="magenta"];186[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 True",fontsize=16,color="black",shape="box"];186 -> 212[label="",style="solid", color="black", weight=3]; 187 -> 213[label="",style="dashed", color="red", weight=0]; 187[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (compare (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];187 -> 214[label="",style="dashed", color="magenta", weight=3]; 188[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="black",shape="triangle"];188 -> 253[label="",style="solid", color="black", weight=3]; 189 -> 188[label="",style="dashed", color="red", weight=0]; 189[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 False",fontsize=16,color="magenta"];190[label="FiniteMap.addToFM_C1 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];190 -> 254[label="",style="solid", color="black", weight=3]; 265 -> 130[label="",style="dashed", color="red", weight=0]; 265[label="primCompAux xuu50000 xuu4000 (compare xuu50001 xuu4001)",fontsize=16,color="magenta"];265 -> 337[label="",style="dashed", color="magenta", weight=3]; 265 -> 338[label="",style="dashed", color="magenta", weight=3]; 265 -> 339[label="",style="dashed", color="magenta", weight=3]; 265 -> 340[label="",style="dashed", color="magenta", weight=3]; 266[label="GT",fontsize=16,color="green",shape="box"];267[label="LT",fontsize=16,color="green",shape="box"];268[label="EQ",fontsize=16,color="green",shape="box"];269[label="EQ",fontsize=16,color="green",shape="box"];270[label="primCmpInt (Pos (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3854[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];270 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 341[label="",style="solid", color="burlywood", weight=3]; 3855[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];270 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 342[label="",style="solid", color="burlywood", weight=3]; 271[label="primCmpInt (Pos Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3856[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];271 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 343[label="",style="solid", color="burlywood", weight=3]; 3857[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];271 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 344[label="",style="solid", color="burlywood", weight=3]; 272[label="primCmpInt (Neg (Succ xuu500000)) xuu400",fontsize=16,color="burlywood",shape="box"];3858[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];272 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 345[label="",style="solid", color="burlywood", weight=3]; 3859[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];272 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 346[label="",style="solid", color="burlywood", weight=3]; 273[label="primCmpInt (Neg Zero) xuu400",fontsize=16,color="burlywood",shape="box"];3860[label="xuu400/Pos xuu4000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 347[label="",style="solid", color="burlywood", weight=3]; 3861[label="xuu400/Neg xuu4000",fontsize=10,color="white",style="solid",shape="box"];273 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 348[label="",style="solid", color="burlywood", weight=3]; 274[label="compare2 (xuu50000,xuu50001,xuu50002) xuu400 ((xuu50000,xuu50001,xuu50002) == xuu400)",fontsize=16,color="burlywood",shape="box"];3862[label="xuu400/(xuu4000,xuu4001,xuu4002)",fontsize=10,color="white",style="solid",shape="box"];274 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 349[label="",style="solid", color="burlywood", weight=3]; 275[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3863[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];275 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 350[label="",style="solid", color="burlywood", weight=3]; 276[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3864[label="xuu400/Float xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];276 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 351[label="",style="solid", color="burlywood", weight=3]; 277[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="blue",shape="box"];3865[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];277 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 352[label="",style="solid", color="blue", weight=3]; 3866[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];277 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 353[label="",style="solid", color="blue", weight=3]; 278[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3867[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];278 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 354[label="",style="solid", color="burlywood", weight=3]; 279[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) xuu400",fontsize=16,color="burlywood",shape="box"];3868[label="xuu400/Double xuu4000 xuu4001",fontsize=10,color="white",style="solid",shape="box"];279 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 355[label="",style="solid", color="burlywood", weight=3]; 280[label="compare2 False xuu400 (False == xuu400)",fontsize=16,color="burlywood",shape="box"];3869[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 356[label="",style="solid", color="burlywood", weight=3]; 3870[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 357[label="",style="solid", color="burlywood", weight=3]; 281[label="compare2 True xuu400 (True == xuu400)",fontsize=16,color="burlywood",shape="box"];3871[label="xuu400/False",fontsize=10,color="white",style="solid",shape="box"];281 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 358[label="",style="solid", color="burlywood", weight=3]; 3872[label="xuu400/True",fontsize=10,color="white",style="solid",shape="box"];281 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 359[label="",style="solid", color="burlywood", weight=3]; 282[label="primCmpChar (Char xuu50000) (Char xuu4000)",fontsize=16,color="black",shape="box"];282 -> 360[label="",style="solid", color="black", weight=3]; 283[label="compare2 (Left xuu50000) xuu400 (Left xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3873[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];283 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 361[label="",style="solid", color="burlywood", weight=3]; 3874[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];283 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 362[label="",style="solid", color="burlywood", weight=3]; 284[label="compare2 (Right xuu50000) xuu400 (Right xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3875[label="xuu400/Left xuu4000",fontsize=10,color="white",style="solid",shape="box"];284 -> 3875[label="",style="solid", color="burlywood", weight=9]; 3875 -> 363[label="",style="solid", color="burlywood", weight=3]; 3876[label="xuu400/Right xuu4000",fontsize=10,color="white",style="solid",shape="box"];284 -> 3876[label="",style="solid", color="burlywood", weight=9]; 3876 -> 364[label="",style="solid", color="burlywood", weight=3]; 285[label="compare2 Nothing xuu400 (Nothing == xuu400)",fontsize=16,color="burlywood",shape="box"];3877[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];285 -> 3877[label="",style="solid", color="burlywood", weight=9]; 3877 -> 365[label="",style="solid", color="burlywood", weight=3]; 3878[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];285 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 366[label="",style="solid", color="burlywood", weight=3]; 286[label="compare2 (Just xuu50000) xuu400 (Just xuu50000 == xuu400)",fontsize=16,color="burlywood",shape="box"];3879[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];286 -> 3879[label="",style="solid", color="burlywood", weight=9]; 3879 -> 367[label="",style="solid", color="burlywood", weight=3]; 3880[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];286 -> 3880[label="",style="solid", color="burlywood", weight=9]; 3880 -> 368[label="",style="solid", color="burlywood", weight=3]; 287 -> 196[label="",style="dashed", color="red", weight=0]; 287[label="primCmpInt xuu50000 xuu4000",fontsize=16,color="magenta"];287 -> 369[label="",style="dashed", color="magenta", weight=3]; 287 -> 370[label="",style="dashed", color="magenta", weight=3]; 288[label="compare2 (xuu50000,xuu50001) xuu400 ((xuu50000,xuu50001) == xuu400)",fontsize=16,color="burlywood",shape="box"];3881[label="xuu400/(xuu4000,xuu4001)",fontsize=10,color="white",style="solid",shape="box"];288 -> 3881[label="",style="solid", color="burlywood", weight=9]; 3881 -> 371[label="",style="solid", color="burlywood", weight=3]; 289[label="compare2 LT xuu400 (LT == xuu400)",fontsize=16,color="burlywood",shape="box"];3882[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];289 -> 3882[label="",style="solid", color="burlywood", weight=9]; 3882 -> 372[label="",style="solid", color="burlywood", weight=3]; 3883[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];289 -> 3883[label="",style="solid", color="burlywood", weight=9]; 3883 -> 373[label="",style="solid", color="burlywood", weight=3]; 3884[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];289 -> 3884[label="",style="solid", color="burlywood", weight=9]; 3884 -> 374[label="",style="solid", color="burlywood", weight=3]; 290[label="compare2 EQ xuu400 (EQ == xuu400)",fontsize=16,color="burlywood",shape="box"];3885[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3885[label="",style="solid", color="burlywood", weight=9]; 3885 -> 375[label="",style="solid", color="burlywood", weight=3]; 3886[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];290 -> 3886[label="",style="solid", color="burlywood", weight=9]; 3886 -> 376[label="",style="solid", color="burlywood", weight=3]; 3887[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];290 -> 3887[label="",style="solid", color="burlywood", weight=9]; 3887 -> 377[label="",style="solid", color="burlywood", weight=3]; 291[label="compare2 GT xuu400 (GT == xuu400)",fontsize=16,color="burlywood",shape="box"];3888[label="xuu400/LT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3888[label="",style="solid", color="burlywood", weight=9]; 3888 -> 378[label="",style="solid", color="burlywood", weight=3]; 3889[label="xuu400/EQ",fontsize=10,color="white",style="solid",shape="box"];291 -> 3889[label="",style="solid", color="burlywood", weight=9]; 3889 -> 379[label="",style="solid", color="burlywood", weight=3]; 3890[label="xuu400/GT",fontsize=10,color="white",style="solid",shape="box"];291 -> 3890[label="",style="solid", color="burlywood", weight=9]; 3890 -> 380[label="",style="solid", color="burlywood", weight=3]; 292[label="xuu38",fontsize=16,color="green",shape="box"];293[label="xuu37",fontsize=16,color="green",shape="box"];294[label="xuu38",fontsize=16,color="green",shape="box"];295[label="xuu37",fontsize=16,color="green",shape="box"];296[label="xuu38",fontsize=16,color="green",shape="box"];297[label="xuu37",fontsize=16,color="green",shape="box"];298[label="xuu38",fontsize=16,color="green",shape="box"];299[label="xuu37",fontsize=16,color="green",shape="box"];300[label="xuu38",fontsize=16,color="green",shape="box"];301[label="xuu37",fontsize=16,color="green",shape="box"];302[label="xuu38",fontsize=16,color="green",shape="box"];303[label="xuu37",fontsize=16,color="green",shape="box"];304[label="xuu38",fontsize=16,color="green",shape="box"];305[label="xuu37",fontsize=16,color="green",shape="box"];306[label="xuu38",fontsize=16,color="green",shape="box"];307[label="xuu37",fontsize=16,color="green",shape="box"];308[label="xuu38",fontsize=16,color="green",shape="box"];309[label="xuu37",fontsize=16,color="green",shape="box"];310[label="xuu38",fontsize=16,color="green",shape="box"];311[label="xuu37",fontsize=16,color="green",shape="box"];312[label="xuu38",fontsize=16,color="green",shape="box"];313[label="xuu37",fontsize=16,color="green",shape="box"];314[label="xuu38",fontsize=16,color="green",shape="box"];315[label="xuu37",fontsize=16,color="green",shape="box"];316[label="xuu38",fontsize=16,color="green",shape="box"];317[label="xuu37",fontsize=16,color="green",shape="box"];318[label="xuu38",fontsize=16,color="green",shape="box"];319[label="xuu37",fontsize=16,color="green",shape="box"];320[label="xuu19 : xuu20",fontsize=16,color="green",shape="box"];321[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];322[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (LT == GT)",fontsize=16,color="black",shape="box"];322 -> 381[label="",style="solid", color="black", weight=3]; 323[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (EQ == GT)",fontsize=16,color="black",shape="box"];323 -> 382[label="",style="solid", color="black", weight=3]; 324[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 (GT == GT)",fontsize=16,color="black",shape="box"];324 -> 383[label="",style="solid", color="black", weight=3]; 211[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 otherwise",fontsize=16,color="black",shape="box"];211 -> 255[label="",style="solid", color="black", weight=3]; 212 -> 256[label="",style="dashed", color="red", weight=0]; 212[label="FiniteMap.mkBalBranch [] xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 (xuu5000 : xuu5001) xuu501)",fontsize=16,color="magenta"];212 -> 257[label="",style="dashed", color="magenta", weight=3]; 214 -> 169[label="",style="dashed", color="red", weight=0]; 214[label="compare (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];214 -> 325[label="",style="dashed", color="magenta", weight=3]; 214 -> 326[label="",style="dashed", color="magenta", weight=3]; 213[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (xuu40 == LT)",fontsize=16,color="burlywood",shape="triangle"];3891[label="xuu40/LT",fontsize=10,color="white",style="solid",shape="box"];213 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 327[label="",style="solid", color="burlywood", weight=3]; 3892[label="xuu40/EQ",fontsize=10,color="white",style="solid",shape="box"];213 -> 3892[label="",style="solid", color="burlywood", weight=9]; 3892 -> 328[label="",style="solid", color="burlywood", weight=3]; 3893[label="xuu40/GT",fontsize=10,color="white",style="solid",shape="box"];213 -> 3893[label="",style="solid", color="burlywood", weight=9]; 3893 -> 329[label="",style="solid", color="burlywood", weight=3]; 253[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 otherwise",fontsize=16,color="black",shape="box"];253 -> 330[label="",style="solid", color="black", weight=3]; 254 -> 256[label="",style="dashed", color="red", weight=0]; 254[label="FiniteMap.mkBalBranch [] xuu41 xuu43 (FiniteMap.addToFM_C xuu3 xuu44 [] xuu501)",fontsize=16,color="magenta"];254 -> 258[label="",style="dashed", color="magenta", weight=3]; 337[label="xuu4001",fontsize=16,color="green",shape="box"];338[label="xuu50001",fontsize=16,color="green",shape="box"];339[label="xuu4000",fontsize=16,color="green",shape="box"];340[label="xuu50000",fontsize=16,color="green",shape="box"];341[label="primCmpInt (Pos (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];341 -> 391[label="",style="solid", color="black", weight=3]; 342[label="primCmpInt (Pos (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];342 -> 392[label="",style="solid", color="black", weight=3]; 343[label="primCmpInt (Pos Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3894[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];343 -> 3894[label="",style="solid", color="burlywood", weight=9]; 3894 -> 393[label="",style="solid", color="burlywood", weight=3]; 3895[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];343 -> 3895[label="",style="solid", color="burlywood", weight=9]; 3895 -> 394[label="",style="solid", color="burlywood", weight=3]; 344[label="primCmpInt (Pos Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3896[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];344 -> 3896[label="",style="solid", color="burlywood", weight=9]; 3896 -> 395[label="",style="solid", color="burlywood", weight=3]; 3897[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];344 -> 3897[label="",style="solid", color="burlywood", weight=9]; 3897 -> 396[label="",style="solid", color="burlywood", weight=3]; 345[label="primCmpInt (Neg (Succ xuu500000)) (Pos xuu4000)",fontsize=16,color="black",shape="box"];345 -> 397[label="",style="solid", color="black", weight=3]; 346[label="primCmpInt (Neg (Succ xuu500000)) (Neg xuu4000)",fontsize=16,color="black",shape="box"];346 -> 398[label="",style="solid", color="black", weight=3]; 347[label="primCmpInt (Neg Zero) (Pos xuu4000)",fontsize=16,color="burlywood",shape="box"];3898[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];347 -> 3898[label="",style="solid", color="burlywood", weight=9]; 3898 -> 399[label="",style="solid", color="burlywood", weight=3]; 3899[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];347 -> 3899[label="",style="solid", color="burlywood", weight=9]; 3899 -> 400[label="",style="solid", color="burlywood", weight=3]; 348[label="primCmpInt (Neg Zero) (Neg xuu4000)",fontsize=16,color="burlywood",shape="box"];3900[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];348 -> 3900[label="",style="solid", color="burlywood", weight=9]; 3900 -> 401[label="",style="solid", color="burlywood", weight=3]; 3901[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];348 -> 3901[label="",style="solid", color="burlywood", weight=9]; 3901 -> 402[label="",style="solid", color="burlywood", weight=3]; 349[label="compare2 (xuu50000,xuu50001,xuu50002) (xuu4000,xuu4001,xuu4002) ((xuu50000,xuu50001,xuu50002) == (xuu4000,xuu4001,xuu4002))",fontsize=16,color="black",shape="box"];349 -> 403[label="",style="solid", color="black", weight=3]; 350[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3902[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];350 -> 3902[label="",style="solid", color="burlywood", weight=9]; 3902 -> 404[label="",style="solid", color="burlywood", weight=3]; 3903[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];350 -> 3903[label="",style="solid", color="burlywood", weight=9]; 3903 -> 405[label="",style="solid", color="burlywood", weight=3]; 351[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3904[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];351 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 406[label="",style="solid", color="burlywood", weight=3]; 3905[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];351 -> 3905[label="",style="solid", color="burlywood", weight=9]; 3905 -> 407[label="",style="solid", color="burlywood", weight=3]; 352 -> 169[label="",style="dashed", color="red", weight=0]; 352[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="magenta"];352 -> 408[label="",style="dashed", color="magenta", weight=3]; 352 -> 409[label="",style="dashed", color="magenta", weight=3]; 353 -> 178[label="",style="dashed", color="red", weight=0]; 353[label="compare (xuu50000 * xuu4001) (xuu4000 * xuu50001)",fontsize=16,color="magenta"];353 -> 410[label="",style="dashed", color="magenta", weight=3]; 353 -> 411[label="",style="dashed", color="magenta", weight=3]; 354[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3906[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3906[label="",style="solid", color="burlywood", weight=9]; 3906 -> 412[label="",style="solid", color="burlywood", weight=3]; 3907[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];354 -> 3907[label="",style="solid", color="burlywood", weight=9]; 3907 -> 413[label="",style="solid", color="burlywood", weight=3]; 355[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 xuu4001)",fontsize=16,color="burlywood",shape="box"];3908[label="xuu4001/Pos xuu40010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3908[label="",style="solid", color="burlywood", weight=9]; 3908 -> 414[label="",style="solid", color="burlywood", weight=3]; 3909[label="xuu4001/Neg xuu40010",fontsize=10,color="white",style="solid",shape="box"];355 -> 3909[label="",style="solid", color="burlywood", weight=9]; 3909 -> 415[label="",style="solid", color="burlywood", weight=3]; 356[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];356 -> 416[label="",style="solid", color="black", weight=3]; 357[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];357 -> 417[label="",style="solid", color="black", weight=3]; 358[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];358 -> 418[label="",style="solid", color="black", weight=3]; 359[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];359 -> 419[label="",style="solid", color="black", weight=3]; 360[label="primCmpNat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];3910[label="xuu50000/Succ xuu500000",fontsize=10,color="white",style="solid",shape="box"];360 -> 3910[label="",style="solid", color="burlywood", weight=9]; 3910 -> 420[label="",style="solid", color="burlywood", weight=3]; 3911[label="xuu50000/Zero",fontsize=10,color="white",style="solid",shape="box"];360 -> 3911[label="",style="solid", color="burlywood", weight=9]; 3911 -> 421[label="",style="solid", color="burlywood", weight=3]; 361[label="compare2 (Left xuu50000) (Left xuu4000) (Left xuu50000 == Left xuu4000)",fontsize=16,color="black",shape="box"];361 -> 422[label="",style="solid", color="black", weight=3]; 362[label="compare2 (Left xuu50000) (Right xuu4000) (Left xuu50000 == Right xuu4000)",fontsize=16,color="black",shape="box"];362 -> 423[label="",style="solid", color="black", weight=3]; 363[label="compare2 (Right xuu50000) (Left xuu4000) (Right xuu50000 == Left xuu4000)",fontsize=16,color="black",shape="box"];363 -> 424[label="",style="solid", color="black", weight=3]; 364[label="compare2 (Right xuu50000) (Right xuu4000) (Right xuu50000 == Right xuu4000)",fontsize=16,color="black",shape="box"];364 -> 425[label="",style="solid", color="black", weight=3]; 365[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];365 -> 426[label="",style="solid", color="black", weight=3]; 366[label="compare2 Nothing (Just xuu4000) (Nothing == Just xuu4000)",fontsize=16,color="black",shape="box"];366 -> 427[label="",style="solid", color="black", weight=3]; 367[label="compare2 (Just xuu50000) Nothing (Just xuu50000 == Nothing)",fontsize=16,color="black",shape="box"];367 -> 428[label="",style="solid", color="black", weight=3]; 368[label="compare2 (Just xuu50000) (Just xuu4000) (Just xuu50000 == Just xuu4000)",fontsize=16,color="black",shape="box"];368 -> 429[label="",style="solid", color="black", weight=3]; 369[label="xuu4000",fontsize=16,color="green",shape="box"];370[label="xuu50000",fontsize=16,color="green",shape="box"];371[label="compare2 (xuu50000,xuu50001) (xuu4000,xuu4001) ((xuu50000,xuu50001) == (xuu4000,xuu4001))",fontsize=16,color="black",shape="box"];371 -> 430[label="",style="solid", color="black", weight=3]; 372[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];372 -> 431[label="",style="solid", color="black", weight=3]; 373[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];373 -> 432[label="",style="solid", color="black", weight=3]; 374[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];374 -> 433[label="",style="solid", color="black", weight=3]; 375[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];375 -> 434[label="",style="solid", color="black", weight=3]; 376[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];376 -> 435[label="",style="solid", color="black", weight=3]; 377[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];377 -> 436[label="",style="solid", color="black", weight=3]; 378[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];378 -> 437[label="",style="solid", color="black", weight=3]; 379[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];379 -> 438[label="",style="solid", color="black", weight=3]; 380[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];380 -> 439[label="",style="solid", color="black", weight=3]; 381[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="black",shape="triangle"];381 -> 440[label="",style="solid", color="black", weight=3]; 382 -> 381[label="",style="dashed", color="red", weight=0]; 382[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 False",fontsize=16,color="magenta"];383[label="FiniteMap.addToFM_C1 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];383 -> 441[label="",style="solid", color="black", weight=3]; 255[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 (xuu5000 : xuu5001) xuu501 True",fontsize=16,color="black",shape="box"];255 -> 331[label="",style="solid", color="black", weight=3]; 257 -> 14[label="",style="dashed", color="red", weight=0]; 257[label="FiniteMap.addToFM_C xuu3 xuu44 (xuu5000 : xuu5001) xuu501",fontsize=16,color="magenta"];257 -> 332[label="",style="dashed", color="magenta", weight=3]; 257 -> 333[label="",style="dashed", color="magenta", weight=3]; 256[label="FiniteMap.mkBalBranch [] xuu41 xuu43 xuu41",fontsize=16,color="black",shape="triangle"];256 -> 334[label="",style="solid", color="black", weight=3]; 325[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];326[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 + FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="box"];326 -> 384[label="",style="solid", color="black", weight=3]; 327[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (LT == LT)",fontsize=16,color="black",shape="box"];327 -> 385[label="",style="solid", color="black", weight=3]; 328[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (EQ == LT)",fontsize=16,color="black",shape="box"];328 -> 386[label="",style="solid", color="black", weight=3]; 329[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (GT == LT)",fontsize=16,color="black",shape="box"];329 -> 387[label="",style="solid", color="black", weight=3]; 330[label="FiniteMap.addToFM_C0 xuu3 [] xuu41 xuu42 xuu43 xuu44 [] xuu501 True",fontsize=16,color="black",shape="box"];330 -> 388[label="",style="solid", color="black", weight=3]; 258 -> 14[label="",style="dashed", color="red", weight=0]; 258[label="FiniteMap.addToFM_C xuu3 xuu44 [] xuu501",fontsize=16,color="magenta"];258 -> 335[label="",style="dashed", color="magenta", weight=3]; 258 -> 336[label="",style="dashed", color="magenta", weight=3]; 391 -> 360[label="",style="dashed", color="red", weight=0]; 391[label="primCmpNat (Succ xuu500000) xuu4000",fontsize=16,color="magenta"];391 -> 449[label="",style="dashed", color="magenta", weight=3]; 391 -> 450[label="",style="dashed", color="magenta", weight=3]; 392[label="GT",fontsize=16,color="green",shape="box"];393[label="primCmpInt (Pos Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];393 -> 451[label="",style="solid", color="black", weight=3]; 394[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];394 -> 452[label="",style="solid", color="black", weight=3]; 395[label="primCmpInt (Pos Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];395 -> 453[label="",style="solid", color="black", weight=3]; 396[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];396 -> 454[label="",style="solid", color="black", weight=3]; 397[label="LT",fontsize=16,color="green",shape="box"];398 -> 360[label="",style="dashed", color="red", weight=0]; 398[label="primCmpNat xuu4000 (Succ xuu500000)",fontsize=16,color="magenta"];398 -> 455[label="",style="dashed", color="magenta", weight=3]; 398 -> 456[label="",style="dashed", color="magenta", weight=3]; 399[label="primCmpInt (Neg Zero) (Pos (Succ xuu40000))",fontsize=16,color="black",shape="box"];399 -> 457[label="",style="solid", color="black", weight=3]; 400[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];400 -> 458[label="",style="solid", color="black", weight=3]; 401[label="primCmpInt (Neg Zero) (Neg (Succ xuu40000))",fontsize=16,color="black",shape="box"];401 -> 459[label="",style="solid", color="black", weight=3]; 402[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];402 -> 460[label="",style="solid", color="black", weight=3]; 403 -> 1076[label="",style="dashed", color="red", weight=0]; 403[label="compare2 (xuu50000,xuu50001,xuu50002) (xuu4000,xuu4001,xuu4002) (xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002)",fontsize=16,color="magenta"];403 -> 1077[label="",style="dashed", color="magenta", weight=3]; 403 -> 1078[label="",style="dashed", color="magenta", weight=3]; 403 -> 1079[label="",style="dashed", color="magenta", weight=3]; 403 -> 1080[label="",style="dashed", color="magenta", weight=3]; 403 -> 1081[label="",style="dashed", color="magenta", weight=3]; 403 -> 1082[label="",style="dashed", color="magenta", weight=3]; 403 -> 1083[label="",style="dashed", color="magenta", weight=3]; 404[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];404 -> 469[label="",style="solid", color="black", weight=3]; 405[label="primCmpFloat (Float xuu50000 (Pos xuu500010)) (Float xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];405 -> 470[label="",style="solid", color="black", weight=3]; 406[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];406 -> 471[label="",style="solid", color="black", weight=3]; 407[label="primCmpFloat (Float xuu50000 (Neg xuu500010)) (Float xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];407 -> 472[label="",style="solid", color="black", weight=3]; 408[label="xuu4000 * xuu50001",fontsize=16,color="black",shape="triangle"];408 -> 473[label="",style="solid", color="black", weight=3]; 409 -> 408[label="",style="dashed", color="red", weight=0]; 409[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];409 -> 474[label="",style="dashed", color="magenta", weight=3]; 409 -> 475[label="",style="dashed", color="magenta", weight=3]; 410[label="xuu4000 * xuu50001",fontsize=16,color="burlywood",shape="triangle"];3912[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];410 -> 3912[label="",style="solid", color="burlywood", weight=9]; 3912 -> 476[label="",style="solid", color="burlywood", weight=3]; 411 -> 410[label="",style="dashed", color="red", weight=0]; 411[label="xuu50000 * xuu4001",fontsize=16,color="magenta"];411 -> 477[label="",style="dashed", color="magenta", weight=3]; 411 -> 478[label="",style="dashed", color="magenta", weight=3]; 412[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];412 -> 479[label="",style="solid", color="black", weight=3]; 413[label="primCmpDouble (Double xuu50000 (Pos xuu500010)) (Double xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];413 -> 480[label="",style="solid", color="black", weight=3]; 414[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 (Pos xuu40010))",fontsize=16,color="black",shape="box"];414 -> 481[label="",style="solid", color="black", weight=3]; 415[label="primCmpDouble (Double xuu50000 (Neg xuu500010)) (Double xuu4000 (Neg xuu40010))",fontsize=16,color="black",shape="box"];415 -> 482[label="",style="solid", color="black", weight=3]; 416[label="compare2 False False True",fontsize=16,color="black",shape="box"];416 -> 483[label="",style="solid", color="black", weight=3]; 417[label="compare2 False True False",fontsize=16,color="black",shape="box"];417 -> 484[label="",style="solid", color="black", weight=3]; 418[label="compare2 True False False",fontsize=16,color="black",shape="box"];418 -> 485[label="",style="solid", color="black", weight=3]; 419[label="compare2 True True True",fontsize=16,color="black",shape="box"];419 -> 486[label="",style="solid", color="black", weight=3]; 420[label="primCmpNat (Succ xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];3913[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];420 -> 3913[label="",style="solid", color="burlywood", weight=9]; 3913 -> 487[label="",style="solid", color="burlywood", weight=3]; 3914[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];420 -> 3914[label="",style="solid", color="burlywood", weight=9]; 3914 -> 488[label="",style="solid", color="burlywood", weight=3]; 421[label="primCmpNat Zero xuu4000",fontsize=16,color="burlywood",shape="box"];3915[label="xuu4000/Succ xuu40000",fontsize=10,color="white",style="solid",shape="box"];421 -> 3915[label="",style="solid", color="burlywood", weight=9]; 3915 -> 489[label="",style="solid", color="burlywood", weight=3]; 3916[label="xuu4000/Zero",fontsize=10,color="white",style="solid",shape="box"];421 -> 3916[label="",style="solid", color="burlywood", weight=9]; 3916 -> 490[label="",style="solid", color="burlywood", weight=3]; 422 -> 491[label="",style="dashed", color="red", weight=0]; 422[label="compare2 (Left xuu50000) (Left xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];422 -> 492[label="",style="dashed", color="magenta", weight=3]; 422 -> 493[label="",style="dashed", color="magenta", weight=3]; 422 -> 494[label="",style="dashed", color="magenta", weight=3]; 423[label="compare2 (Left xuu50000) (Right xuu4000) False",fontsize=16,color="black",shape="box"];423 -> 495[label="",style="solid", color="black", weight=3]; 424[label="compare2 (Right xuu50000) (Left xuu4000) False",fontsize=16,color="black",shape="box"];424 -> 496[label="",style="solid", color="black", weight=3]; 425 -> 497[label="",style="dashed", color="red", weight=0]; 425[label="compare2 (Right xuu50000) (Right xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];425 -> 498[label="",style="dashed", color="magenta", weight=3]; 425 -> 499[label="",style="dashed", color="magenta", weight=3]; 425 -> 500[label="",style="dashed", color="magenta", weight=3]; 426[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];426 -> 501[label="",style="solid", color="black", weight=3]; 427[label="compare2 Nothing (Just xuu4000) False",fontsize=16,color="black",shape="box"];427 -> 502[label="",style="solid", color="black", weight=3]; 428[label="compare2 (Just xuu50000) Nothing False",fontsize=16,color="black",shape="box"];428 -> 503[label="",style="solid", color="black", weight=3]; 429 -> 504[label="",style="dashed", color="red", weight=0]; 429[label="compare2 (Just xuu50000) (Just xuu4000) (xuu50000 == xuu4000)",fontsize=16,color="magenta"];429 -> 505[label="",style="dashed", color="magenta", weight=3]; 429 -> 506[label="",style="dashed", color="magenta", weight=3]; 429 -> 507[label="",style="dashed", color="magenta", weight=3]; 430 -> 922[label="",style="dashed", color="red", weight=0]; 430[label="compare2 (xuu50000,xuu50001) (xuu4000,xuu4001) (xuu50000 == xuu4000 && xuu50001 == xuu4001)",fontsize=16,color="magenta"];430 -> 923[label="",style="dashed", color="magenta", weight=3]; 430 -> 924[label="",style="dashed", color="magenta", weight=3]; 430 -> 925[label="",style="dashed", color="magenta", weight=3]; 430 -> 926[label="",style="dashed", color="magenta", weight=3]; 430 -> 927[label="",style="dashed", color="magenta", weight=3]; 431[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];431 -> 514[label="",style="solid", color="black", weight=3]; 432[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];432 -> 515[label="",style="solid", color="black", weight=3]; 433[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];433 -> 516[label="",style="solid", color="black", weight=3]; 434[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];434 -> 517[label="",style="solid", color="black", weight=3]; 435[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];435 -> 518[label="",style="solid", color="black", weight=3]; 436[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];436 -> 519[label="",style="solid", color="black", weight=3]; 437[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];437 -> 520[label="",style="solid", color="black", weight=3]; 438[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];438 -> 521[label="",style="solid", color="black", weight=3]; 439[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];439 -> 522[label="",style="solid", color="black", weight=3]; 440[label="FiniteMap.addToFM_C0 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 otherwise",fontsize=16,color="black",shape="box"];440 -> 523[label="",style="solid", color="black", weight=3]; 441 -> 73[label="",style="dashed", color="red", weight=0]; 441[label="FiniteMap.mkBalBranch (xuu19 : xuu20) xuu21 xuu23 (FiniteMap.addToFM_C xuu18 xuu24 (xuu25 : xuu26) xuu27)",fontsize=16,color="magenta"];441 -> 524[label="",style="dashed", color="magenta", weight=3]; 441 -> 525[label="",style="dashed", color="magenta", weight=3]; 441 -> 526[label="",style="dashed", color="magenta", weight=3]; 441 -> 527[label="",style="dashed", color="magenta", weight=3]; 441 -> 528[label="",style="dashed", color="magenta", weight=3]; 331[label="FiniteMap.Branch (xuu5000 : xuu5001) (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];331 -> 389[label="",style="dashed", color="green", weight=3]; 332[label="xuu44",fontsize=16,color="green",shape="box"];333[label="xuu5000 : xuu5001",fontsize=16,color="green",shape="box"];334[label="FiniteMap.mkBalBranch6 [] xuu41 xuu43 xuu41",fontsize=16,color="black",shape="box"];334 -> 390[label="",style="solid", color="black", weight=3]; 384 -> 2194[label="",style="dashed", color="red", weight=0]; 384[label="primPlusInt (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29) (FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];384 -> 2195[label="",style="dashed", color="magenta", weight=3]; 384 -> 2196[label="",style="dashed", color="magenta", weight=3]; 385[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];385 -> 443[label="",style="solid", color="black", weight=3]; 386[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="triangle"];386 -> 444[label="",style="solid", color="black", weight=3]; 387 -> 386[label="",style="dashed", color="red", weight=0]; 387[label="FiniteMap.mkBalBranch6MkBalBranch5 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="magenta"];388[label="FiniteMap.Branch [] (xuu3 xuu41 xuu501) xuu42 xuu43 xuu44",fontsize=16,color="green",shape="box"];388 -> 445[label="",style="dashed", color="green", weight=3]; 335[label="xuu44",fontsize=16,color="green",shape="box"];336[label="[]",fontsize=16,color="green",shape="box"];449[label="Succ xuu500000",fontsize=16,color="green",shape="box"];450[label="xuu4000",fontsize=16,color="green",shape="box"];451 -> 360[label="",style="dashed", color="red", weight=0]; 451[label="primCmpNat Zero (Succ xuu40000)",fontsize=16,color="magenta"];451 -> 529[label="",style="dashed", color="magenta", weight=3]; 451 -> 530[label="",style="dashed", color="magenta", weight=3]; 452[label="EQ",fontsize=16,color="green",shape="box"];453[label="GT",fontsize=16,color="green",shape="box"];454[label="EQ",fontsize=16,color="green",shape="box"];455[label="xuu4000",fontsize=16,color="green",shape="box"];456[label="Succ xuu500000",fontsize=16,color="green",shape="box"];457[label="LT",fontsize=16,color="green",shape="box"];458[label="EQ",fontsize=16,color="green",shape="box"];459 -> 360[label="",style="dashed", color="red", weight=0]; 459[label="primCmpNat (Succ xuu40000) Zero",fontsize=16,color="magenta"];459 -> 531[label="",style="dashed", color="magenta", weight=3]; 459 -> 532[label="",style="dashed", color="magenta", weight=3]; 460[label="EQ",fontsize=16,color="green",shape="box"];1077[label="xuu50002",fontsize=16,color="green",shape="box"];1078[label="xuu50000",fontsize=16,color="green",shape="box"];1079[label="xuu50001",fontsize=16,color="green",shape="box"];1080[label="xuu4001",fontsize=16,color="green",shape="box"];1081 -> 1128[label="",style="dashed", color="red", weight=0]; 1081[label="xuu50000 == xuu4000 && xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1081 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1082[label="xuu4002",fontsize=16,color="green",shape="box"];1083[label="xuu4000",fontsize=16,color="green",shape="box"];1076[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) xuu129",fontsize=16,color="burlywood",shape="triangle"];3917[label="xuu129/False",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3917[label="",style="solid", color="burlywood", weight=9]; 3917 -> 1123[label="",style="solid", color="burlywood", weight=3]; 3918[label="xuu129/True",fontsize=10,color="white",style="solid",shape="box"];1076 -> 3918[label="",style="solid", color="burlywood", weight=9]; 3918 -> 1124[label="",style="solid", color="burlywood", weight=3]; 469 -> 169[label="",style="dashed", color="red", weight=0]; 469[label="compare (xuu50000 * Pos xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];469 -> 549[label="",style="dashed", color="magenta", weight=3]; 469 -> 550[label="",style="dashed", color="magenta", weight=3]; 470 -> 169[label="",style="dashed", color="red", weight=0]; 470[label="compare (xuu50000 * Pos xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];470 -> 551[label="",style="dashed", color="magenta", weight=3]; 470 -> 552[label="",style="dashed", color="magenta", weight=3]; 471 -> 169[label="",style="dashed", color="red", weight=0]; 471[label="compare (xuu50000 * Neg xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];471 -> 553[label="",style="dashed", color="magenta", weight=3]; 471 -> 554[label="",style="dashed", color="magenta", weight=3]; 472 -> 169[label="",style="dashed", color="red", weight=0]; 472[label="compare (xuu50000 * Neg xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];472 -> 555[label="",style="dashed", color="magenta", weight=3]; 472 -> 556[label="",style="dashed", color="magenta", weight=3]; 473[label="primMulInt xuu4000 xuu50001",fontsize=16,color="burlywood",shape="triangle"];3919[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];473 -> 3919[label="",style="solid", color="burlywood", weight=9]; 3919 -> 557[label="",style="solid", color="burlywood", weight=3]; 3920[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];473 -> 3920[label="",style="solid", color="burlywood", weight=9]; 3920 -> 558[label="",style="solid", color="burlywood", weight=3]; 474[label="xuu4001",fontsize=16,color="green",shape="box"];475[label="xuu50000",fontsize=16,color="green",shape="box"];476[label="Integer xuu40000 * xuu50001",fontsize=16,color="burlywood",shape="box"];3921[label="xuu50001/Integer xuu500010",fontsize=10,color="white",style="solid",shape="box"];476 -> 3921[label="",style="solid", color="burlywood", weight=9]; 3921 -> 559[label="",style="solid", color="burlywood", weight=3]; 477[label="xuu4001",fontsize=16,color="green",shape="box"];478[label="xuu50000",fontsize=16,color="green",shape="box"];479 -> 169[label="",style="dashed", color="red", weight=0]; 479[label="compare (xuu50000 * Pos xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];479 -> 560[label="",style="dashed", color="magenta", weight=3]; 479 -> 561[label="",style="dashed", color="magenta", weight=3]; 480 -> 169[label="",style="dashed", color="red", weight=0]; 480[label="compare (xuu50000 * Pos xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];480 -> 562[label="",style="dashed", color="magenta", weight=3]; 480 -> 563[label="",style="dashed", color="magenta", weight=3]; 481 -> 169[label="",style="dashed", color="red", weight=0]; 481[label="compare (xuu50000 * Neg xuu40010) (Pos xuu500010 * xuu4000)",fontsize=16,color="magenta"];481 -> 564[label="",style="dashed", color="magenta", weight=3]; 481 -> 565[label="",style="dashed", color="magenta", weight=3]; 482 -> 169[label="",style="dashed", color="red", weight=0]; 482[label="compare (xuu50000 * Neg xuu40010) (Neg xuu500010 * xuu4000)",fontsize=16,color="magenta"];482 -> 566[label="",style="dashed", color="magenta", weight=3]; 482 -> 567[label="",style="dashed", color="magenta", weight=3]; 483[label="EQ",fontsize=16,color="green",shape="box"];484[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];484 -> 568[label="",style="solid", color="black", weight=3]; 485[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];485 -> 569[label="",style="solid", color="black", weight=3]; 486[label="EQ",fontsize=16,color="green",shape="box"];487[label="primCmpNat (Succ xuu500000) (Succ xuu40000)",fontsize=16,color="black",shape="box"];487 -> 570[label="",style="solid", color="black", weight=3]; 488[label="primCmpNat (Succ xuu500000) Zero",fontsize=16,color="black",shape="box"];488 -> 571[label="",style="solid", color="black", weight=3]; 489[label="primCmpNat Zero (Succ xuu40000)",fontsize=16,color="black",shape="box"];489 -> 572[label="",style="solid", color="black", weight=3]; 490[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];490 -> 573[label="",style="solid", color="black", weight=3]; 492[label="xuu50000",fontsize=16,color="green",shape="box"];493[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3922[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 574[label="",style="solid", color="blue", weight=3]; 3923[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 575[label="",style="solid", color="blue", weight=3]; 3924[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 576[label="",style="solid", color="blue", weight=3]; 3925[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 577[label="",style="solid", color="blue", weight=3]; 3926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 578[label="",style="solid", color="blue", weight=3]; 3927[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 579[label="",style="solid", color="blue", weight=3]; 3928[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 580[label="",style="solid", color="blue", weight=3]; 3929[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 581[label="",style="solid", color="blue", weight=3]; 3930[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 582[label="",style="solid", color="blue", weight=3]; 3931[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 583[label="",style="solid", color="blue", weight=3]; 3932[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 584[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 585[label="",style="solid", color="blue", weight=3]; 3934[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 586[label="",style="solid", color="blue", weight=3]; 3935[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 587[label="",style="solid", color="blue", weight=3]; 494[label="xuu4000",fontsize=16,color="green",shape="box"];491[label="compare2 (Left xuu62) (Left xuu63) xuu64",fontsize=16,color="burlywood",shape="triangle"];3936[label="xuu64/False",fontsize=10,color="white",style="solid",shape="box"];491 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 588[label="",style="solid", color="burlywood", weight=3]; 3937[label="xuu64/True",fontsize=10,color="white",style="solid",shape="box"];491 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 589[label="",style="solid", color="burlywood", weight=3]; 495[label="compare1 (Left xuu50000) (Right xuu4000) (Left xuu50000 <= Right xuu4000)",fontsize=16,color="black",shape="box"];495 -> 590[label="",style="solid", color="black", weight=3]; 496[label="compare1 (Right xuu50000) (Left xuu4000) (Right xuu50000 <= Left xuu4000)",fontsize=16,color="black",shape="box"];496 -> 591[label="",style="solid", color="black", weight=3]; 498[label="xuu50000",fontsize=16,color="green",shape="box"];499[label="xuu4000",fontsize=16,color="green",shape="box"];500[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3938[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 592[label="",style="solid", color="blue", weight=3]; 3939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 593[label="",style="solid", color="blue", weight=3]; 3940[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 594[label="",style="solid", color="blue", weight=3]; 3941[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 595[label="",style="solid", color="blue", weight=3]; 3942[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 596[label="",style="solid", color="blue", weight=3]; 3943[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 597[label="",style="solid", color="blue", weight=3]; 3944[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 598[label="",style="solid", color="blue", weight=3]; 3945[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 599[label="",style="solid", color="blue", weight=3]; 3946[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 600[label="",style="solid", color="blue", weight=3]; 3947[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 601[label="",style="solid", color="blue", weight=3]; 3948[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 602[label="",style="solid", color="blue", weight=3]; 3949[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 603[label="",style="solid", color="blue", weight=3]; 3950[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 604[label="",style="solid", color="blue", weight=3]; 3951[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];500 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 605[label="",style="solid", color="blue", weight=3]; 497[label="compare2 (Right xuu69) (Right xuu70) xuu71",fontsize=16,color="burlywood",shape="triangle"];3952[label="xuu71/False",fontsize=10,color="white",style="solid",shape="box"];497 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 606[label="",style="solid", color="burlywood", weight=3]; 3953[label="xuu71/True",fontsize=10,color="white",style="solid",shape="box"];497 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 607[label="",style="solid", color="burlywood", weight=3]; 501[label="EQ",fontsize=16,color="green",shape="box"];502[label="compare1 Nothing (Just xuu4000) (Nothing <= Just xuu4000)",fontsize=16,color="black",shape="box"];502 -> 608[label="",style="solid", color="black", weight=3]; 503[label="compare1 (Just xuu50000) Nothing (Just xuu50000 <= Nothing)",fontsize=16,color="black",shape="box"];503 -> 609[label="",style="solid", color="black", weight=3]; 505[label="xuu50000",fontsize=16,color="green",shape="box"];506[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3954[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 610[label="",style="solid", color="blue", weight=3]; 3955[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 611[label="",style="solid", color="blue", weight=3]; 3956[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 612[label="",style="solid", color="blue", weight=3]; 3957[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 613[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 614[label="",style="solid", color="blue", weight=3]; 3959[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 615[label="",style="solid", color="blue", weight=3]; 3960[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 616[label="",style="solid", color="blue", weight=3]; 3961[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 617[label="",style="solid", color="blue", weight=3]; 3962[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 618[label="",style="solid", color="blue", weight=3]; 3963[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 619[label="",style="solid", color="blue", weight=3]; 3964[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 620[label="",style="solid", color="blue", weight=3]; 3965[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 621[label="",style="solid", color="blue", weight=3]; 3966[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 622[label="",style="solid", color="blue", weight=3]; 3967[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];506 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 623[label="",style="solid", color="blue", weight=3]; 507[label="xuu4000",fontsize=16,color="green",shape="box"];504[label="compare2 (Just xuu76) (Just xuu77) xuu78",fontsize=16,color="burlywood",shape="triangle"];3968[label="xuu78/False",fontsize=10,color="white",style="solid",shape="box"];504 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 624[label="",style="solid", color="burlywood", weight=3]; 3969[label="xuu78/True",fontsize=10,color="white",style="solid",shape="box"];504 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 625[label="",style="solid", color="burlywood", weight=3]; 923[label="xuu50001",fontsize=16,color="green",shape="box"];924[label="xuu4001",fontsize=16,color="green",shape="box"];925 -> 1128[label="",style="dashed", color="red", weight=0]; 925[label="xuu50000 == xuu4000 && xuu50001 == xuu4001",fontsize=16,color="magenta"];925 -> 1131[label="",style="dashed", color="magenta", weight=3]; 925 -> 1132[label="",style="dashed", color="magenta", weight=3]; 926[label="xuu50000",fontsize=16,color="green",shape="box"];927[label="xuu4000",fontsize=16,color="green",shape="box"];922[label="compare2 (xuu114,xuu115) (xuu116,xuu117) xuu118",fontsize=16,color="burlywood",shape="triangle"];3970[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];922 -> 3970[label="",style="solid", color="burlywood", weight=9]; 3970 -> 947[label="",style="solid", color="burlywood", weight=3]; 3971[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];922 -> 3971[label="",style="solid", color="burlywood", weight=9]; 3971 -> 948[label="",style="solid", color="burlywood", weight=3]; 514[label="EQ",fontsize=16,color="green",shape="box"];515[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];515 -> 647[label="",style="solid", color="black", weight=3]; 516[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];516 -> 648[label="",style="solid", color="black", weight=3]; 517[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];517 -> 649[label="",style="solid", color="black", weight=3]; 518[label="EQ",fontsize=16,color="green",shape="box"];519[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];519 -> 650[label="",style="solid", color="black", weight=3]; 520[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];520 -> 651[label="",style="solid", color="black", weight=3]; 521[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];521 -> 652[label="",style="solid", color="black", weight=3]; 522[label="EQ",fontsize=16,color="green",shape="box"];523[label="FiniteMap.addToFM_C0 xuu18 (xuu19 : xuu20) xuu21 xuu22 xuu23 xuu24 (xuu25 : xuu26) xuu27 True",fontsize=16,color="black",shape="box"];523 -> 653[label="",style="solid", color="black", weight=3]; 524[label="xuu20",fontsize=16,color="green",shape="box"];525 -> 14[label="",style="dashed", color="red", weight=0]; 525[label="FiniteMap.addToFM_C xuu18 xuu24 (xuu25 : xuu26) xuu27",fontsize=16,color="magenta"];525 -> 654[label="",style="dashed", color="magenta", weight=3]; 525 -> 655[label="",style="dashed", color="magenta", weight=3]; 525 -> 656[label="",style="dashed", color="magenta", weight=3]; 525 -> 657[label="",style="dashed", color="magenta", weight=3]; 526[label="xuu19",fontsize=16,color="green",shape="box"];527[label="xuu23",fontsize=16,color="green",shape="box"];528[label="xuu21",fontsize=16,color="green",shape="box"];389[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];389 -> 446[label="",style="dashed", color="green", weight=3]; 389 -> 447[label="",style="dashed", color="green", weight=3]; 390 -> 847[label="",style="dashed", color="red", weight=0]; 390[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];390 -> 848[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1814[label="",style="dashed", color="red", weight=0]; 2195[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];2196 -> 1808[label="",style="dashed", color="red", weight=0]; 2196[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];2194[label="primPlusInt xuu212 xuu211",fontsize=16,color="burlywood",shape="triangle"];3972[label="xuu212/Pos xuu2120",fontsize=10,color="white",style="solid",shape="box"];2194 -> 3972[label="",style="solid", color="burlywood", weight=9]; 3972 -> 2229[label="",style="solid", color="burlywood", weight=3]; 3973[label="xuu212/Neg xuu2120",fontsize=10,color="white",style="solid",shape="box"];2194 -> 3973[label="",style="solid", color="burlywood", weight=9]; 3973 -> 2230[label="",style="solid", color="burlywood", weight=3]; 443 -> 3508[label="",style="dashed", color="red", weight=0]; 443[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="magenta"];443 -> 3509[label="",style="dashed", color="magenta", weight=3]; 443 -> 3510[label="",style="dashed", color="magenta", weight=3]; 443 -> 3511[label="",style="dashed", color="magenta", weight=3]; 443 -> 3512[label="",style="dashed", color="magenta", weight=3]; 443 -> 3513[label="",style="dashed", color="magenta", weight=3]; 444 -> 980[label="",style="dashed", color="red", weight=0]; 444[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];444 -> 981[label="",style="dashed", color="magenta", weight=3]; 445[label="xuu3 xuu41 xuu501",fontsize=16,color="green",shape="box"];445 -> 658[label="",style="dashed", color="green", weight=3]; 445 -> 659[label="",style="dashed", color="green", weight=3]; 529[label="Zero",fontsize=16,color="green",shape="box"];530[label="Succ xuu40000",fontsize=16,color="green",shape="box"];531[label="Succ xuu40000",fontsize=16,color="green",shape="box"];532[label="Zero",fontsize=16,color="green",shape="box"];1129 -> 1128[label="",style="dashed", color="red", weight=0]; 1129[label="xuu50001 == xuu4001 && xuu50002 == xuu4002",fontsize=16,color="magenta"];1129 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1130[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];3974[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 1149[label="",style="solid", color="blue", weight=3]; 3975[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 1150[label="",style="solid", color="blue", weight=3]; 3976[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 1151[label="",style="solid", color="blue", weight=3]; 3977[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 1152[label="",style="solid", color="blue", weight=3]; 3978[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 1153[label="",style="solid", color="blue", weight=3]; 3979[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 1154[label="",style="solid", color="blue", weight=3]; 3980[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 1155[label="",style="solid", color="blue", weight=3]; 3981[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 1156[label="",style="solid", color="blue", weight=3]; 3982[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 1157[label="",style="solid", color="blue", weight=3]; 3983[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 1158[label="",style="solid", color="blue", weight=3]; 3984[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 1159[label="",style="solid", color="blue", weight=3]; 3985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 1160[label="",style="solid", color="blue", weight=3]; 3986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 1161[label="",style="solid", color="blue", weight=3]; 3987[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 1162[label="",style="solid", color="blue", weight=3]; 1128[label="xuu134 && xuu135",fontsize=16,color="burlywood",shape="triangle"];3988[label="xuu134/False",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3988[label="",style="solid", color="burlywood", weight=9]; 3988 -> 1163[label="",style="solid", color="burlywood", weight=3]; 3989[label="xuu134/True",fontsize=10,color="white",style="solid",shape="box"];1128 -> 3989[label="",style="solid", color="burlywood", weight=9]; 3989 -> 1164[label="",style="solid", color="burlywood", weight=3]; 1123[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) False",fontsize=16,color="black",shape="box"];1123 -> 1165[label="",style="solid", color="black", weight=3]; 1124[label="compare2 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) True",fontsize=16,color="black",shape="box"];1124 -> 1166[label="",style="solid", color="black", weight=3]; 549 -> 408[label="",style="dashed", color="red", weight=0]; 549[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];549 -> 682[label="",style="dashed", color="magenta", weight=3]; 549 -> 683[label="",style="dashed", color="magenta", weight=3]; 550 -> 408[label="",style="dashed", color="red", weight=0]; 550[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];550 -> 684[label="",style="dashed", color="magenta", weight=3]; 550 -> 685[label="",style="dashed", color="magenta", weight=3]; 551 -> 408[label="",style="dashed", color="red", weight=0]; 551[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];551 -> 686[label="",style="dashed", color="magenta", weight=3]; 551 -> 687[label="",style="dashed", color="magenta", weight=3]; 552 -> 408[label="",style="dashed", color="red", weight=0]; 552[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];552 -> 688[label="",style="dashed", color="magenta", weight=3]; 552 -> 689[label="",style="dashed", color="magenta", weight=3]; 553 -> 408[label="",style="dashed", color="red", weight=0]; 553[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];553 -> 690[label="",style="dashed", color="magenta", weight=3]; 553 -> 691[label="",style="dashed", color="magenta", weight=3]; 554 -> 408[label="",style="dashed", color="red", weight=0]; 554[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];554 -> 692[label="",style="dashed", color="magenta", weight=3]; 554 -> 693[label="",style="dashed", color="magenta", weight=3]; 555 -> 408[label="",style="dashed", color="red", weight=0]; 555[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];555 -> 694[label="",style="dashed", color="magenta", weight=3]; 555 -> 695[label="",style="dashed", color="magenta", weight=3]; 556 -> 408[label="",style="dashed", color="red", weight=0]; 556[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];556 -> 696[label="",style="dashed", color="magenta", weight=3]; 556 -> 697[label="",style="dashed", color="magenta", weight=3]; 557[label="primMulInt (Pos xuu40000) xuu50001",fontsize=16,color="burlywood",shape="box"];3990[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];557 -> 3990[label="",style="solid", color="burlywood", weight=9]; 3990 -> 698[label="",style="solid", color="burlywood", weight=3]; 3991[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];557 -> 3991[label="",style="solid", color="burlywood", weight=9]; 3991 -> 699[label="",style="solid", color="burlywood", weight=3]; 558[label="primMulInt (Neg xuu40000) xuu50001",fontsize=16,color="burlywood",shape="box"];3992[label="xuu50001/Pos xuu500010",fontsize=10,color="white",style="solid",shape="box"];558 -> 3992[label="",style="solid", color="burlywood", weight=9]; 3992 -> 700[label="",style="solid", color="burlywood", weight=3]; 3993[label="xuu50001/Neg xuu500010",fontsize=10,color="white",style="solid",shape="box"];558 -> 3993[label="",style="solid", color="burlywood", weight=9]; 3993 -> 701[label="",style="solid", color="burlywood", weight=3]; 559[label="Integer xuu40000 * Integer xuu500010",fontsize=16,color="black",shape="box"];559 -> 702[label="",style="solid", color="black", weight=3]; 560 -> 408[label="",style="dashed", color="red", weight=0]; 560[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];560 -> 703[label="",style="dashed", color="magenta", weight=3]; 560 -> 704[label="",style="dashed", color="magenta", weight=3]; 561 -> 408[label="",style="dashed", color="red", weight=0]; 561[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];561 -> 705[label="",style="dashed", color="magenta", weight=3]; 561 -> 706[label="",style="dashed", color="magenta", weight=3]; 562 -> 408[label="",style="dashed", color="red", weight=0]; 562[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];562 -> 707[label="",style="dashed", color="magenta", weight=3]; 562 -> 708[label="",style="dashed", color="magenta", weight=3]; 563 -> 408[label="",style="dashed", color="red", weight=0]; 563[label="xuu50000 * Pos xuu40010",fontsize=16,color="magenta"];563 -> 709[label="",style="dashed", color="magenta", weight=3]; 563 -> 710[label="",style="dashed", color="magenta", weight=3]; 564 -> 408[label="",style="dashed", color="red", weight=0]; 564[label="Pos xuu500010 * xuu4000",fontsize=16,color="magenta"];564 -> 711[label="",style="dashed", color="magenta", weight=3]; 564 -> 712[label="",style="dashed", color="magenta", weight=3]; 565 -> 408[label="",style="dashed", color="red", weight=0]; 565[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];565 -> 713[label="",style="dashed", color="magenta", weight=3]; 565 -> 714[label="",style="dashed", color="magenta", weight=3]; 566 -> 408[label="",style="dashed", color="red", weight=0]; 566[label="Neg xuu500010 * xuu4000",fontsize=16,color="magenta"];566 -> 715[label="",style="dashed", color="magenta", weight=3]; 566 -> 716[label="",style="dashed", color="magenta", weight=3]; 567 -> 408[label="",style="dashed", color="red", weight=0]; 567[label="xuu50000 * Neg xuu40010",fontsize=16,color="magenta"];567 -> 717[label="",style="dashed", color="magenta", weight=3]; 567 -> 718[label="",style="dashed", color="magenta", weight=3]; 568[label="compare1 False True True",fontsize=16,color="black",shape="box"];568 -> 719[label="",style="solid", color="black", weight=3]; 569[label="compare1 True False False",fontsize=16,color="black",shape="box"];569 -> 720[label="",style="solid", color="black", weight=3]; 570 -> 360[label="",style="dashed", color="red", weight=0]; 570[label="primCmpNat xuu500000 xuu40000",fontsize=16,color="magenta"];570 -> 721[label="",style="dashed", color="magenta", weight=3]; 570 -> 722[label="",style="dashed", color="magenta", weight=3]; 571[label="GT",fontsize=16,color="green",shape="box"];572[label="LT",fontsize=16,color="green",shape="box"];573[label="EQ",fontsize=16,color="green",shape="box"];574 -> 533[label="",style="dashed", color="red", weight=0]; 574[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];574 -> 723[label="",style="dashed", color="magenta", weight=3]; 574 -> 724[label="",style="dashed", color="magenta", weight=3]; 575 -> 534[label="",style="dashed", color="red", weight=0]; 575[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];575 -> 725[label="",style="dashed", color="magenta", weight=3]; 575 -> 726[label="",style="dashed", color="magenta", weight=3]; 576 -> 535[label="",style="dashed", color="red", weight=0]; 576[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];576 -> 727[label="",style="dashed", color="magenta", weight=3]; 576 -> 728[label="",style="dashed", color="magenta", weight=3]; 577 -> 536[label="",style="dashed", color="red", weight=0]; 577[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];577 -> 729[label="",style="dashed", color="magenta", weight=3]; 577 -> 730[label="",style="dashed", color="magenta", weight=3]; 578 -> 537[label="",style="dashed", color="red", weight=0]; 578[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];578 -> 731[label="",style="dashed", color="magenta", weight=3]; 578 -> 732[label="",style="dashed", color="magenta", weight=3]; 579 -> 538[label="",style="dashed", color="red", weight=0]; 579[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];579 -> 733[label="",style="dashed", color="magenta", weight=3]; 579 -> 734[label="",style="dashed", color="magenta", weight=3]; 580 -> 539[label="",style="dashed", color="red", weight=0]; 580[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];580 -> 735[label="",style="dashed", color="magenta", weight=3]; 580 -> 736[label="",style="dashed", color="magenta", weight=3]; 581 -> 540[label="",style="dashed", color="red", weight=0]; 581[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];581 -> 737[label="",style="dashed", color="magenta", weight=3]; 581 -> 738[label="",style="dashed", color="magenta", weight=3]; 582 -> 541[label="",style="dashed", color="red", weight=0]; 582[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];582 -> 739[label="",style="dashed", color="magenta", weight=3]; 582 -> 740[label="",style="dashed", color="magenta", weight=3]; 583 -> 542[label="",style="dashed", color="red", weight=0]; 583[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];583 -> 741[label="",style="dashed", color="magenta", weight=3]; 583 -> 742[label="",style="dashed", color="magenta", weight=3]; 584 -> 543[label="",style="dashed", color="red", weight=0]; 584[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];584 -> 743[label="",style="dashed", color="magenta", weight=3]; 584 -> 744[label="",style="dashed", color="magenta", weight=3]; 585 -> 544[label="",style="dashed", color="red", weight=0]; 585[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];585 -> 745[label="",style="dashed", color="magenta", weight=3]; 585 -> 746[label="",style="dashed", color="magenta", weight=3]; 586 -> 545[label="",style="dashed", color="red", weight=0]; 586[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];586 -> 747[label="",style="dashed", color="magenta", weight=3]; 586 -> 748[label="",style="dashed", color="magenta", weight=3]; 587 -> 546[label="",style="dashed", color="red", weight=0]; 587[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];587 -> 749[label="",style="dashed", color="magenta", weight=3]; 587 -> 750[label="",style="dashed", color="magenta", weight=3]; 588[label="compare2 (Left xuu62) (Left xuu63) False",fontsize=16,color="black",shape="box"];588 -> 751[label="",style="solid", color="black", weight=3]; 589[label="compare2 (Left xuu62) (Left xuu63) True",fontsize=16,color="black",shape="box"];589 -> 752[label="",style="solid", color="black", weight=3]; 590[label="compare1 (Left xuu50000) (Right xuu4000) True",fontsize=16,color="black",shape="box"];590 -> 753[label="",style="solid", color="black", weight=3]; 591[label="compare1 (Right xuu50000) (Left xuu4000) False",fontsize=16,color="black",shape="box"];591 -> 754[label="",style="solid", color="black", weight=3]; 592 -> 533[label="",style="dashed", color="red", weight=0]; 592[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];592 -> 755[label="",style="dashed", color="magenta", weight=3]; 592 -> 756[label="",style="dashed", color="magenta", weight=3]; 593 -> 534[label="",style="dashed", color="red", weight=0]; 593[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];593 -> 757[label="",style="dashed", color="magenta", weight=3]; 593 -> 758[label="",style="dashed", color="magenta", weight=3]; 594 -> 535[label="",style="dashed", color="red", weight=0]; 594[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];594 -> 759[label="",style="dashed", color="magenta", weight=3]; 594 -> 760[label="",style="dashed", color="magenta", weight=3]; 595 -> 536[label="",style="dashed", color="red", weight=0]; 595[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];595 -> 761[label="",style="dashed", color="magenta", weight=3]; 595 -> 762[label="",style="dashed", color="magenta", weight=3]; 596 -> 537[label="",style="dashed", color="red", weight=0]; 596[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];596 -> 763[label="",style="dashed", color="magenta", weight=3]; 596 -> 764[label="",style="dashed", color="magenta", weight=3]; 597 -> 538[label="",style="dashed", color="red", weight=0]; 597[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];597 -> 765[label="",style="dashed", color="magenta", weight=3]; 597 -> 766[label="",style="dashed", color="magenta", weight=3]; 598 -> 539[label="",style="dashed", color="red", weight=0]; 598[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];598 -> 767[label="",style="dashed", color="magenta", weight=3]; 598 -> 768[label="",style="dashed", color="magenta", weight=3]; 599 -> 540[label="",style="dashed", color="red", weight=0]; 599[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];599 -> 769[label="",style="dashed", color="magenta", weight=3]; 599 -> 770[label="",style="dashed", color="magenta", weight=3]; 600 -> 541[label="",style="dashed", color="red", weight=0]; 600[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];600 -> 771[label="",style="dashed", color="magenta", weight=3]; 600 -> 772[label="",style="dashed", color="magenta", weight=3]; 601 -> 542[label="",style="dashed", color="red", weight=0]; 601[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];601 -> 773[label="",style="dashed", color="magenta", weight=3]; 601 -> 774[label="",style="dashed", color="magenta", weight=3]; 602 -> 543[label="",style="dashed", color="red", weight=0]; 602[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];602 -> 775[label="",style="dashed", color="magenta", weight=3]; 602 -> 776[label="",style="dashed", color="magenta", weight=3]; 603 -> 544[label="",style="dashed", color="red", weight=0]; 603[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];603 -> 777[label="",style="dashed", color="magenta", weight=3]; 603 -> 778[label="",style="dashed", color="magenta", weight=3]; 604 -> 545[label="",style="dashed", color="red", weight=0]; 604[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];604 -> 779[label="",style="dashed", color="magenta", weight=3]; 604 -> 780[label="",style="dashed", color="magenta", weight=3]; 605 -> 546[label="",style="dashed", color="red", weight=0]; 605[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];605 -> 781[label="",style="dashed", color="magenta", weight=3]; 605 -> 782[label="",style="dashed", color="magenta", weight=3]; 606[label="compare2 (Right xuu69) (Right xuu70) False",fontsize=16,color="black",shape="box"];606 -> 783[label="",style="solid", color="black", weight=3]; 607[label="compare2 (Right xuu69) (Right xuu70) True",fontsize=16,color="black",shape="box"];607 -> 784[label="",style="solid", color="black", weight=3]; 608[label="compare1 Nothing (Just xuu4000) True",fontsize=16,color="black",shape="box"];608 -> 785[label="",style="solid", color="black", weight=3]; 609[label="compare1 (Just xuu50000) Nothing False",fontsize=16,color="black",shape="box"];609 -> 786[label="",style="solid", color="black", weight=3]; 610 -> 533[label="",style="dashed", color="red", weight=0]; 610[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];610 -> 787[label="",style="dashed", color="magenta", weight=3]; 610 -> 788[label="",style="dashed", color="magenta", weight=3]; 611 -> 534[label="",style="dashed", color="red", weight=0]; 611[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];611 -> 789[label="",style="dashed", color="magenta", weight=3]; 611 -> 790[label="",style="dashed", color="magenta", weight=3]; 612 -> 535[label="",style="dashed", color="red", weight=0]; 612[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];612 -> 791[label="",style="dashed", color="magenta", weight=3]; 612 -> 792[label="",style="dashed", color="magenta", weight=3]; 613 -> 536[label="",style="dashed", color="red", weight=0]; 613[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];613 -> 793[label="",style="dashed", color="magenta", weight=3]; 613 -> 794[label="",style="dashed", color="magenta", weight=3]; 614 -> 537[label="",style="dashed", color="red", weight=0]; 614[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];614 -> 795[label="",style="dashed", color="magenta", weight=3]; 614 -> 796[label="",style="dashed", color="magenta", weight=3]; 615 -> 538[label="",style="dashed", color="red", weight=0]; 615[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];615 -> 797[label="",style="dashed", color="magenta", weight=3]; 615 -> 798[label="",style="dashed", color="magenta", weight=3]; 616 -> 539[label="",style="dashed", color="red", weight=0]; 616[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];616 -> 799[label="",style="dashed", color="magenta", weight=3]; 616 -> 800[label="",style="dashed", color="magenta", weight=3]; 617 -> 540[label="",style="dashed", color="red", weight=0]; 617[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];617 -> 801[label="",style="dashed", color="magenta", weight=3]; 617 -> 802[label="",style="dashed", color="magenta", weight=3]; 618 -> 541[label="",style="dashed", color="red", weight=0]; 618[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];618 -> 803[label="",style="dashed", color="magenta", weight=3]; 618 -> 804[label="",style="dashed", color="magenta", weight=3]; 619 -> 542[label="",style="dashed", color="red", weight=0]; 619[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];619 -> 805[label="",style="dashed", color="magenta", weight=3]; 619 -> 806[label="",style="dashed", color="magenta", weight=3]; 620 -> 543[label="",style="dashed", color="red", weight=0]; 620[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];620 -> 807[label="",style="dashed", color="magenta", weight=3]; 620 -> 808[label="",style="dashed", color="magenta", weight=3]; 621 -> 544[label="",style="dashed", color="red", weight=0]; 621[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];621 -> 809[label="",style="dashed", color="magenta", weight=3]; 621 -> 810[label="",style="dashed", color="magenta", weight=3]; 622 -> 545[label="",style="dashed", color="red", weight=0]; 622[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];622 -> 811[label="",style="dashed", color="magenta", weight=3]; 622 -> 812[label="",style="dashed", color="magenta", weight=3]; 623 -> 546[label="",style="dashed", color="red", weight=0]; 623[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];623 -> 813[label="",style="dashed", color="magenta", weight=3]; 623 -> 814[label="",style="dashed", color="magenta", weight=3]; 624[label="compare2 (Just xuu76) (Just xuu77) False",fontsize=16,color="black",shape="box"];624 -> 815[label="",style="solid", color="black", weight=3]; 625[label="compare2 (Just xuu76) (Just xuu77) True",fontsize=16,color="black",shape="box"];625 -> 816[label="",style="solid", color="black", weight=3]; 1131[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];3994[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 1167[label="",style="solid", color="blue", weight=3]; 3995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 1168[label="",style="solid", color="blue", weight=3]; 3996[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 1169[label="",style="solid", color="blue", weight=3]; 3997[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 1170[label="",style="solid", color="blue", weight=3]; 3998[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 1171[label="",style="solid", color="blue", weight=3]; 3999[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 1172[label="",style="solid", color="blue", weight=3]; 4000[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 1173[label="",style="solid", color="blue", weight=3]; 4001[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 1174[label="",style="solid", color="blue", weight=3]; 4002[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 1175[label="",style="solid", color="blue", weight=3]; 4003[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 1176[label="",style="solid", color="blue", weight=3]; 4004[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 1177[label="",style="solid", color="blue", weight=3]; 4005[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 1178[label="",style="solid", color="blue", weight=3]; 4006[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 1179[label="",style="solid", color="blue", weight=3]; 4007[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1131 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 1180[label="",style="solid", color="blue", weight=3]; 1132[label="xuu50000 == xuu4000",fontsize=16,color="blue",shape="box"];4008[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 1181[label="",style="solid", color="blue", weight=3]; 4009[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 1182[label="",style="solid", color="blue", weight=3]; 4010[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 1183[label="",style="solid", color="blue", weight=3]; 4011[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 1184[label="",style="solid", color="blue", weight=3]; 4012[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 1185[label="",style="solid", color="blue", weight=3]; 4013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 1186[label="",style="solid", color="blue", weight=3]; 4014[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 1187[label="",style="solid", color="blue", weight=3]; 4015[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 1188[label="",style="solid", color="blue", weight=3]; 4016[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 1189[label="",style="solid", color="blue", weight=3]; 4017[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 1190[label="",style="solid", color="blue", weight=3]; 4018[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 1191[label="",style="solid", color="blue", weight=3]; 4019[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 1192[label="",style="solid", color="blue", weight=3]; 4020[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 1193[label="",style="solid", color="blue", weight=3]; 4021[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 1194[label="",style="solid", color="blue", weight=3]; 947[label="compare2 (xuu114,xuu115) (xuu116,xuu117) False",fontsize=16,color="black",shape="box"];947 -> 984[label="",style="solid", color="black", weight=3]; 948[label="compare2 (xuu114,xuu115) (xuu116,xuu117) True",fontsize=16,color="black",shape="box"];948 -> 985[label="",style="solid", color="black", weight=3]; 647[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];647 -> 850[label="",style="solid", color="black", weight=3]; 648[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];648 -> 851[label="",style="solid", color="black", weight=3]; 649[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];649 -> 852[label="",style="solid", color="black", weight=3]; 650[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];650 -> 853[label="",style="solid", color="black", weight=3]; 651[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];651 -> 854[label="",style="solid", color="black", weight=3]; 652[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];652 -> 855[label="",style="solid", color="black", weight=3]; 653[label="FiniteMap.Branch (xuu25 : xuu26) (xuu18 xuu21 xuu27) xuu22 xuu23 xuu24",fontsize=16,color="green",shape="box"];653 -> 856[label="",style="dashed", color="green", weight=3]; 654[label="xuu24",fontsize=16,color="green",shape="box"];655[label="xuu18",fontsize=16,color="green",shape="box"];656[label="xuu25 : xuu26",fontsize=16,color="green",shape="box"];657[label="xuu27",fontsize=16,color="green",shape="box"];446[label="xuu41",fontsize=16,color="green",shape="box"];447[label="xuu501",fontsize=16,color="green",shape="box"];848[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];848 -> 857[label="",style="solid", color="black", weight=3]; 847[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu91",fontsize=16,color="burlywood",shape="triangle"];4022[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];847 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 858[label="",style="solid", color="burlywood", weight=3]; 4023[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];847 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 859[label="",style="solid", color="burlywood", weight=3]; 1814[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="triangle"];1814 -> 1830[label="",style="solid", color="black", weight=3]; 1808[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="black",shape="triangle"];1808 -> 1819[label="",style="solid", color="black", weight=3]; 2229[label="primPlusInt (Pos xuu2120) xuu211",fontsize=16,color="burlywood",shape="box"];4024[label="xuu211/Pos xuu2110",fontsize=10,color="white",style="solid",shape="box"];2229 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 2235[label="",style="solid", color="burlywood", weight=3]; 4025[label="xuu211/Neg xuu2110",fontsize=10,color="white",style="solid",shape="box"];2229 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 2236[label="",style="solid", color="burlywood", weight=3]; 2230[label="primPlusInt (Neg xuu2120) xuu211",fontsize=16,color="burlywood",shape="box"];4026[label="xuu211/Pos xuu2110",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 2237[label="",style="solid", color="burlywood", weight=3]; 4027[label="xuu211/Neg xuu2110",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 2238[label="",style="solid", color="burlywood", weight=3]; 3509[label="xuu29",fontsize=16,color="green",shape="box"];3510[label="xuu44",fontsize=16,color="green",shape="box"];3511[label="Zero",fontsize=16,color="green",shape="box"];3512[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3513[label="xuu41",fontsize=16,color="green",shape="box"];3508[label="FiniteMap.mkBranch (Pos (Succ xuu307)) xuu308 xuu309 xuu310 xuu311",fontsize=16,color="black",shape="triangle"];3508 -> 3679[label="",style="solid", color="black", weight=3]; 981 -> 1806[label="",style="dashed", color="red", weight=0]; 981[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];981 -> 1807[label="",style="dashed", color="magenta", weight=3]; 981 -> 1808[label="",style="dashed", color="magenta", weight=3]; 980[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 xuu126",fontsize=16,color="burlywood",shape="triangle"];4028[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];980 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 988[label="",style="solid", color="burlywood", weight=3]; 4029[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];980 -> 4029[label="",style="solid", color="burlywood", weight=9]; 4029 -> 989[label="",style="solid", color="burlywood", weight=3]; 658[label="xuu41",fontsize=16,color="green",shape="box"];659[label="xuu501",fontsize=16,color="green",shape="box"];1147[label="xuu50002 == xuu4002",fontsize=16,color="blue",shape="box"];4030[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 1211[label="",style="solid", color="blue", weight=3]; 4031[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 1212[label="",style="solid", color="blue", weight=3]; 4032[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 1213[label="",style="solid", color="blue", weight=3]; 4033[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 1214[label="",style="solid", color="blue", weight=3]; 4034[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 1215[label="",style="solid", color="blue", weight=3]; 4035[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 1216[label="",style="solid", color="blue", weight=3]; 4036[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 1217[label="",style="solid", color="blue", weight=3]; 4037[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 1218[label="",style="solid", color="blue", weight=3]; 4038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 1219[label="",style="solid", color="blue", weight=3]; 4039[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 1220[label="",style="solid", color="blue", weight=3]; 4040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 1221[label="",style="solid", color="blue", weight=3]; 4041[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 1222[label="",style="solid", color="blue", weight=3]; 4042[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 1223[label="",style="solid", color="blue", weight=3]; 4043[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1147 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 1224[label="",style="solid", color="blue", weight=3]; 1148[label="xuu50001 == xuu4001",fontsize=16,color="blue",shape="box"];4044[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 1225[label="",style="solid", color="blue", weight=3]; 4045[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 1226[label="",style="solid", color="blue", weight=3]; 4046[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 1227[label="",style="solid", color="blue", weight=3]; 4047[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 1228[label="",style="solid", color="blue", weight=3]; 4048[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 1229[label="",style="solid", color="blue", weight=3]; 4049[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 1230[label="",style="solid", color="blue", weight=3]; 4050[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 1231[label="",style="solid", color="blue", weight=3]; 4051[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 1232[label="",style="solid", color="blue", weight=3]; 4052[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 1233[label="",style="solid", color="blue", weight=3]; 4053[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 1234[label="",style="solid", color="blue", weight=3]; 4054[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 1235[label="",style="solid", color="blue", weight=3]; 4055[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 1236[label="",style="solid", color="blue", weight=3]; 4056[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 1237[label="",style="solid", color="blue", weight=3]; 4057[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1148 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 1238[label="",style="solid", color="blue", weight=3]; 1149 -> 533[label="",style="dashed", color="red", weight=0]; 1149[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1150 -> 534[label="",style="dashed", color="red", weight=0]; 1150[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1151 -> 535[label="",style="dashed", color="red", weight=0]; 1151[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1152 -> 536[label="",style="dashed", color="red", weight=0]; 1152[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1153 -> 537[label="",style="dashed", color="red", weight=0]; 1153[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1154 -> 538[label="",style="dashed", color="red", weight=0]; 1154[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1155 -> 539[label="",style="dashed", color="red", weight=0]; 1155[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1156 -> 540[label="",style="dashed", color="red", weight=0]; 1156[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1157 -> 541[label="",style="dashed", color="red", weight=0]; 1157[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1158 -> 542[label="",style="dashed", color="red", weight=0]; 1158[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1159 -> 543[label="",style="dashed", color="red", weight=0]; 1159[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1160 -> 544[label="",style="dashed", color="red", weight=0]; 1160[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1161 -> 545[label="",style="dashed", color="red", weight=0]; 1161[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1162 -> 546[label="",style="dashed", color="red", weight=0]; 1162[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1163[label="False && xuu135",fontsize=16,color="black",shape="box"];1163 -> 1239[label="",style="solid", color="black", weight=3]; 1164[label="True && xuu135",fontsize=16,color="black",shape="box"];1164 -> 1240[label="",style="solid", color="black", weight=3]; 1165[label="compare1 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) ((xuu101,xuu102,xuu103) <= (xuu104,xuu105,xuu106))",fontsize=16,color="black",shape="box"];1165 -> 1241[label="",style="solid", color="black", weight=3]; 1166[label="EQ",fontsize=16,color="green",shape="box"];682[label="xuu4000",fontsize=16,color="green",shape="box"];683[label="Pos xuu500010",fontsize=16,color="green",shape="box"];684[label="Pos xuu40010",fontsize=16,color="green",shape="box"];685[label="xuu50000",fontsize=16,color="green",shape="box"];686[label="xuu4000",fontsize=16,color="green",shape="box"];687[label="Neg xuu500010",fontsize=16,color="green",shape="box"];688[label="Pos xuu40010",fontsize=16,color="green",shape="box"];689[label="xuu50000",fontsize=16,color="green",shape="box"];690[label="xuu4000",fontsize=16,color="green",shape="box"];691[label="Pos xuu500010",fontsize=16,color="green",shape="box"];692[label="Neg xuu40010",fontsize=16,color="green",shape="box"];693[label="xuu50000",fontsize=16,color="green",shape="box"];694[label="xuu4000",fontsize=16,color="green",shape="box"];695[label="Neg xuu500010",fontsize=16,color="green",shape="box"];696[label="Neg xuu40010",fontsize=16,color="green",shape="box"];697[label="xuu50000",fontsize=16,color="green",shape="box"];698[label="primMulInt (Pos xuu40000) (Pos xuu500010)",fontsize=16,color="black",shape="box"];698 -> 910[label="",style="solid", color="black", weight=3]; 699[label="primMulInt (Pos xuu40000) (Neg xuu500010)",fontsize=16,color="black",shape="box"];699 -> 911[label="",style="solid", color="black", weight=3]; 700[label="primMulInt (Neg xuu40000) (Pos xuu500010)",fontsize=16,color="black",shape="box"];700 -> 912[label="",style="solid", color="black", weight=3]; 701[label="primMulInt (Neg xuu40000) (Neg xuu500010)",fontsize=16,color="black",shape="box"];701 -> 913[label="",style="solid", color="black", weight=3]; 702[label="Integer (primMulInt xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];702 -> 914[label="",style="dashed", color="green", weight=3]; 703[label="xuu4000",fontsize=16,color="green",shape="box"];704[label="Pos xuu500010",fontsize=16,color="green",shape="box"];705[label="Pos xuu40010",fontsize=16,color="green",shape="box"];706[label="xuu50000",fontsize=16,color="green",shape="box"];707[label="xuu4000",fontsize=16,color="green",shape="box"];708[label="Neg xuu500010",fontsize=16,color="green",shape="box"];709[label="Pos xuu40010",fontsize=16,color="green",shape="box"];710[label="xuu50000",fontsize=16,color="green",shape="box"];711[label="xuu4000",fontsize=16,color="green",shape="box"];712[label="Pos xuu500010",fontsize=16,color="green",shape="box"];713[label="Neg xuu40010",fontsize=16,color="green",shape="box"];714[label="xuu50000",fontsize=16,color="green",shape="box"];715[label="xuu4000",fontsize=16,color="green",shape="box"];716[label="Neg xuu500010",fontsize=16,color="green",shape="box"];717[label="Neg xuu40010",fontsize=16,color="green",shape="box"];718[label="xuu50000",fontsize=16,color="green",shape="box"];719[label="LT",fontsize=16,color="green",shape="box"];720[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];720 -> 915[label="",style="solid", color="black", weight=3]; 721[label="xuu500000",fontsize=16,color="green",shape="box"];722[label="xuu40000",fontsize=16,color="green",shape="box"];723[label="xuu4000",fontsize=16,color="green",shape="box"];724[label="xuu50000",fontsize=16,color="green",shape="box"];533[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4058[label="xuu50000/LT",fontsize=10,color="white",style="solid",shape="box"];533 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 660[label="",style="solid", color="burlywood", weight=3]; 4059[label="xuu50000/EQ",fontsize=10,color="white",style="solid",shape="box"];533 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 661[label="",style="solid", color="burlywood", weight=3]; 4060[label="xuu50000/GT",fontsize=10,color="white",style="solid",shape="box"];533 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 662[label="",style="solid", color="burlywood", weight=3]; 725[label="xuu4000",fontsize=16,color="green",shape="box"];726[label="xuu50000",fontsize=16,color="green",shape="box"];534[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4061[label="xuu50000/xuu500000 :% xuu500001",fontsize=10,color="white",style="solid",shape="box"];534 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 663[label="",style="solid", color="burlywood", weight=3]; 727[label="xuu4000",fontsize=16,color="green",shape="box"];728[label="xuu50000",fontsize=16,color="green",shape="box"];535[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4062[label="xuu50000/(xuu500000,xuu500001,xuu500002)",fontsize=10,color="white",style="solid",shape="box"];535 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 664[label="",style="solid", color="burlywood", weight=3]; 729[label="xuu4000",fontsize=16,color="green",shape="box"];730[label="xuu50000",fontsize=16,color="green",shape="box"];536[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4063[label="xuu50000/()",fontsize=10,color="white",style="solid",shape="box"];536 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 665[label="",style="solid", color="burlywood", weight=3]; 731[label="xuu4000",fontsize=16,color="green",shape="box"];732[label="xuu50000",fontsize=16,color="green",shape="box"];537[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];537 -> 666[label="",style="solid", color="black", weight=3]; 733[label="xuu4000",fontsize=16,color="green",shape="box"];734[label="xuu50000",fontsize=16,color="green",shape="box"];538[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4064[label="xuu50000/Integer xuu500000",fontsize=10,color="white",style="solid",shape="box"];538 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 667[label="",style="solid", color="burlywood", weight=3]; 735[label="xuu4000",fontsize=16,color="green",shape="box"];736[label="xuu50000",fontsize=16,color="green",shape="box"];539[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4065[label="xuu50000/(xuu500000,xuu500001)",fontsize=10,color="white",style="solid",shape="box"];539 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 668[label="",style="solid", color="burlywood", weight=3]; 737[label="xuu4000",fontsize=16,color="green",shape="box"];738[label="xuu50000",fontsize=16,color="green",shape="box"];540[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4066[label="xuu50000/False",fontsize=10,color="white",style="solid",shape="box"];540 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 669[label="",style="solid", color="burlywood", weight=3]; 4067[label="xuu50000/True",fontsize=10,color="white",style="solid",shape="box"];540 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 670[label="",style="solid", color="burlywood", weight=3]; 739[label="xuu4000",fontsize=16,color="green",shape="box"];740[label="xuu50000",fontsize=16,color="green",shape="box"];541[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];541 -> 671[label="",style="solid", color="black", weight=3]; 741[label="xuu4000",fontsize=16,color="green",shape="box"];742[label="xuu50000",fontsize=16,color="green",shape="box"];542[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4068[label="xuu50000/Nothing",fontsize=10,color="white",style="solid",shape="box"];542 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 672[label="",style="solid", color="burlywood", weight=3]; 4069[label="xuu50000/Just xuu500000",fontsize=10,color="white",style="solid",shape="box"];542 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 673[label="",style="solid", color="burlywood", weight=3]; 743[label="xuu4000",fontsize=16,color="green",shape="box"];744[label="xuu50000",fontsize=16,color="green",shape="box"];543[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4070[label="xuu50000/xuu500000 : xuu500001",fontsize=10,color="white",style="solid",shape="box"];543 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 674[label="",style="solid", color="burlywood", weight=3]; 4071[label="xuu50000/[]",fontsize=10,color="white",style="solid",shape="box"];543 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 675[label="",style="solid", color="burlywood", weight=3]; 745[label="xuu4000",fontsize=16,color="green",shape="box"];746[label="xuu50000",fontsize=16,color="green",shape="box"];544[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];544 -> 676[label="",style="solid", color="black", weight=3]; 747[label="xuu4000",fontsize=16,color="green",shape="box"];748[label="xuu50000",fontsize=16,color="green",shape="box"];545[label="xuu50000 == xuu4000",fontsize=16,color="black",shape="triangle"];545 -> 677[label="",style="solid", color="black", weight=3]; 749[label="xuu4000",fontsize=16,color="green",shape="box"];750[label="xuu50000",fontsize=16,color="green",shape="box"];546[label="xuu50000 == xuu4000",fontsize=16,color="burlywood",shape="triangle"];4072[label="xuu50000/Left xuu500000",fontsize=10,color="white",style="solid",shape="box"];546 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 678[label="",style="solid", color="burlywood", weight=3]; 4073[label="xuu50000/Right xuu500000",fontsize=10,color="white",style="solid",shape="box"];546 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 679[label="",style="solid", color="burlywood", weight=3]; 751 -> 1204[label="",style="dashed", color="red", weight=0]; 751[label="compare1 (Left xuu62) (Left xuu63) (Left xuu62 <= Left xuu63)",fontsize=16,color="magenta"];751 -> 1205[label="",style="dashed", color="magenta", weight=3]; 751 -> 1206[label="",style="dashed", color="magenta", weight=3]; 751 -> 1207[label="",style="dashed", color="magenta", weight=3]; 752[label="EQ",fontsize=16,color="green",shape="box"];753[label="LT",fontsize=16,color="green",shape="box"];754[label="compare0 (Right xuu50000) (Left xuu4000) otherwise",fontsize=16,color="black",shape="box"];754 -> 917[label="",style="solid", color="black", weight=3]; 755[label="xuu4000",fontsize=16,color="green",shape="box"];756[label="xuu50000",fontsize=16,color="green",shape="box"];757[label="xuu4000",fontsize=16,color="green",shape="box"];758[label="xuu50000",fontsize=16,color="green",shape="box"];759[label="xuu4000",fontsize=16,color="green",shape="box"];760[label="xuu50000",fontsize=16,color="green",shape="box"];761[label="xuu4000",fontsize=16,color="green",shape="box"];762[label="xuu50000",fontsize=16,color="green",shape="box"];763[label="xuu4000",fontsize=16,color="green",shape="box"];764[label="xuu50000",fontsize=16,color="green",shape="box"];765[label="xuu4000",fontsize=16,color="green",shape="box"];766[label="xuu50000",fontsize=16,color="green",shape="box"];767[label="xuu4000",fontsize=16,color="green",shape="box"];768[label="xuu50000",fontsize=16,color="green",shape="box"];769[label="xuu4000",fontsize=16,color="green",shape="box"];770[label="xuu50000",fontsize=16,color="green",shape="box"];771[label="xuu4000",fontsize=16,color="green",shape="box"];772[label="xuu50000",fontsize=16,color="green",shape="box"];773[label="xuu4000",fontsize=16,color="green",shape="box"];774[label="xuu50000",fontsize=16,color="green",shape="box"];775[label="xuu4000",fontsize=16,color="green",shape="box"];776[label="xuu50000",fontsize=16,color="green",shape="box"];777[label="xuu4000",fontsize=16,color="green",shape="box"];778[label="xuu50000",fontsize=16,color="green",shape="box"];779[label="xuu4000",fontsize=16,color="green",shape="box"];780[label="xuu50000",fontsize=16,color="green",shape="box"];781[label="xuu4000",fontsize=16,color="green",shape="box"];782[label="xuu50000",fontsize=16,color="green",shape="box"];783 -> 1302[label="",style="dashed", color="red", weight=0]; 783[label="compare1 (Right xuu69) (Right xuu70) (Right xuu69 <= Right xuu70)",fontsize=16,color="magenta"];783 -> 1303[label="",style="dashed", color="magenta", weight=3]; 783 -> 1304[label="",style="dashed", color="magenta", weight=3]; 783 -> 1305[label="",style="dashed", color="magenta", weight=3]; 784[label="EQ",fontsize=16,color="green",shape="box"];785[label="LT",fontsize=16,color="green",shape="box"];786[label="compare0 (Just xuu50000) Nothing otherwise",fontsize=16,color="black",shape="box"];786 -> 919[label="",style="solid", color="black", weight=3]; 787[label="xuu4000",fontsize=16,color="green",shape="box"];788[label="xuu50000",fontsize=16,color="green",shape="box"];789[label="xuu4000",fontsize=16,color="green",shape="box"];790[label="xuu50000",fontsize=16,color="green",shape="box"];791[label="xuu4000",fontsize=16,color="green",shape="box"];792[label="xuu50000",fontsize=16,color="green",shape="box"];793[label="xuu4000",fontsize=16,color="green",shape="box"];794[label="xuu50000",fontsize=16,color="green",shape="box"];795[label="xuu4000",fontsize=16,color="green",shape="box"];796[label="xuu50000",fontsize=16,color="green",shape="box"];797[label="xuu4000",fontsize=16,color="green",shape="box"];798[label="xuu50000",fontsize=16,color="green",shape="box"];799[label="xuu4000",fontsize=16,color="green",shape="box"];800[label="xuu50000",fontsize=16,color="green",shape="box"];801[label="xuu4000",fontsize=16,color="green",shape="box"];802[label="xuu50000",fontsize=16,color="green",shape="box"];803[label="xuu4000",fontsize=16,color="green",shape="box"];804[label="xuu50000",fontsize=16,color="green",shape="box"];805[label="xuu4000",fontsize=16,color="green",shape="box"];806[label="xuu50000",fontsize=16,color="green",shape="box"];807[label="xuu4000",fontsize=16,color="green",shape="box"];808[label="xuu50000",fontsize=16,color="green",shape="box"];809[label="xuu4000",fontsize=16,color="green",shape="box"];810[label="xuu50000",fontsize=16,color="green",shape="box"];811[label="xuu4000",fontsize=16,color="green",shape="box"];812[label="xuu50000",fontsize=16,color="green",shape="box"];813[label="xuu4000",fontsize=16,color="green",shape="box"];814[label="xuu50000",fontsize=16,color="green",shape="box"];815 -> 1371[label="",style="dashed", color="red", weight=0]; 815[label="compare1 (Just xuu76) (Just xuu77) (Just xuu76 <= Just xuu77)",fontsize=16,color="magenta"];815 -> 1372[label="",style="dashed", color="magenta", weight=3]; 815 -> 1373[label="",style="dashed", color="magenta", weight=3]; 815 -> 1374[label="",style="dashed", color="magenta", weight=3]; 816[label="EQ",fontsize=16,color="green",shape="box"];1167 -> 533[label="",style="dashed", color="red", weight=0]; 1167[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1167 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1168 -> 534[label="",style="dashed", color="red", weight=0]; 1168[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1168 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1169 -> 535[label="",style="dashed", color="red", weight=0]; 1169[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1169 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1170 -> 536[label="",style="dashed", color="red", weight=0]; 1170[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1170 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1171 -> 537[label="",style="dashed", color="red", weight=0]; 1171[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1171 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1172 -> 538[label="",style="dashed", color="red", weight=0]; 1172[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1172 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1173 -> 539[label="",style="dashed", color="red", weight=0]; 1173[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1173 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1174 -> 540[label="",style="dashed", color="red", weight=0]; 1174[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1174 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1175 -> 541[label="",style="dashed", color="red", weight=0]; 1175[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1175 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1176 -> 542[label="",style="dashed", color="red", weight=0]; 1176[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1176 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1177 -> 543[label="",style="dashed", color="red", weight=0]; 1177[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1177 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1178 -> 544[label="",style="dashed", color="red", weight=0]; 1178[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1178 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1179 -> 545[label="",style="dashed", color="red", weight=0]; 1179[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1179 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1180 -> 546[label="",style="dashed", color="red", weight=0]; 1180[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1180 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1181 -> 533[label="",style="dashed", color="red", weight=0]; 1181[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1181 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1182 -> 534[label="",style="dashed", color="red", weight=0]; 1182[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1182 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1183 -> 535[label="",style="dashed", color="red", weight=0]; 1183[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1183 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1184 -> 536[label="",style="dashed", color="red", weight=0]; 1184[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1184 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1185 -> 537[label="",style="dashed", color="red", weight=0]; 1185[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1185 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1186 -> 538[label="",style="dashed", color="red", weight=0]; 1186[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1186 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1187 -> 539[label="",style="dashed", color="red", weight=0]; 1187[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1187 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1188 -> 540[label="",style="dashed", color="red", weight=0]; 1188[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1188 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1189 -> 541[label="",style="dashed", color="red", weight=0]; 1189[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1189 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1190 -> 542[label="",style="dashed", color="red", weight=0]; 1190[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1190 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1191 -> 543[label="",style="dashed", color="red", weight=0]; 1191[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1191 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1192 -> 544[label="",style="dashed", color="red", weight=0]; 1192[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1192 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1193 -> 545[label="",style="dashed", color="red", weight=0]; 1193[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1193 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1194 -> 546[label="",style="dashed", color="red", weight=0]; 1194[label="xuu50000 == xuu4000",fontsize=16,color="magenta"];1194 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1297[label="",style="dashed", color="magenta", weight=3]; 984[label="compare1 (xuu114,xuu115) (xuu116,xuu117) ((xuu114,xuu115) <= (xuu116,xuu117))",fontsize=16,color="black",shape="box"];984 -> 1020[label="",style="solid", color="black", weight=3]; 985[label="EQ",fontsize=16,color="green",shape="box"];850[label="LT",fontsize=16,color="green",shape="box"];851[label="LT",fontsize=16,color="green",shape="box"];852[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];852 -> 965[label="",style="solid", color="black", weight=3]; 853[label="LT",fontsize=16,color="green",shape="box"];854[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];854 -> 966[label="",style="solid", color="black", weight=3]; 855[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];855 -> 967[label="",style="solid", color="black", weight=3]; 856[label="xuu18 xuu21 xuu27",fontsize=16,color="green",shape="box"];856 -> 968[label="",style="dashed", color="green", weight=3]; 856 -> 969[label="",style="dashed", color="green", weight=3]; 857 -> 533[label="",style="dashed", color="red", weight=0]; 857[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];857 -> 970[label="",style="dashed", color="magenta", weight=3]; 857 -> 971[label="",style="dashed", color="magenta", weight=3]; 858[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];858 -> 972[label="",style="solid", color="black", weight=3]; 859[label="FiniteMap.mkBalBranch6MkBalBranch5 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];859 -> 973[label="",style="solid", color="black", weight=3]; 1830 -> 1819[label="",style="dashed", color="red", weight=0]; 1830[label="FiniteMap.sizeFM xuu29",fontsize=16,color="magenta"];1830 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1819[label="FiniteMap.sizeFM xuu44",fontsize=16,color="burlywood",shape="triangle"];4074[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 1868[label="",style="solid", color="burlywood", weight=3]; 4075[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 1869[label="",style="solid", color="burlywood", weight=3]; 2235[label="primPlusInt (Pos xuu2120) (Pos xuu2110)",fontsize=16,color="black",shape="box"];2235 -> 2249[label="",style="solid", color="black", weight=3]; 2236[label="primPlusInt (Pos xuu2120) (Neg xuu2110)",fontsize=16,color="black",shape="box"];2236 -> 2250[label="",style="solid", color="black", weight=3]; 2237[label="primPlusInt (Neg xuu2120) (Pos xuu2110)",fontsize=16,color="black",shape="box"];2237 -> 2251[label="",style="solid", color="black", weight=3]; 2238[label="primPlusInt (Neg xuu2120) (Neg xuu2110)",fontsize=16,color="black",shape="box"];2238 -> 2252[label="",style="solid", color="black", weight=3]; 3679[label="FiniteMap.mkBranchResult xuu308 xuu309 xuu311 xuu310",fontsize=16,color="black",shape="box"];3679 -> 3732[label="",style="solid", color="black", weight=3]; 1807 -> 408[label="",style="dashed", color="red", weight=0]; 1807[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1807 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1807 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1806[label="xuu202 > xuu201",fontsize=16,color="black",shape="triangle"];1806 -> 1820[label="",style="solid", color="black", weight=3]; 988[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="box"];988 -> 1195[label="",style="solid", color="black", weight=3]; 989[label="FiniteMap.mkBalBranch6MkBalBranch4 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];989 -> 1196[label="",style="solid", color="black", weight=3]; 1211 -> 533[label="",style="dashed", color="red", weight=0]; 1211[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1211 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1212 -> 534[label="",style="dashed", color="red", weight=0]; 1212[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1212 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1213 -> 535[label="",style="dashed", color="red", weight=0]; 1213[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1213 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1214 -> 536[label="",style="dashed", color="red", weight=0]; 1214[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1214 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1215 -> 537[label="",style="dashed", color="red", weight=0]; 1215[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1215 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1216 -> 538[label="",style="dashed", color="red", weight=0]; 1216[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1216 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1217 -> 539[label="",style="dashed", color="red", weight=0]; 1217[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1217 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1218 -> 540[label="",style="dashed", color="red", weight=0]; 1218[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1218 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1219 -> 541[label="",style="dashed", color="red", weight=0]; 1219[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1219 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1220 -> 542[label="",style="dashed", color="red", weight=0]; 1220[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1220 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1221 -> 543[label="",style="dashed", color="red", weight=0]; 1221[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1221 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1222 -> 544[label="",style="dashed", color="red", weight=0]; 1222[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1222 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1223 -> 545[label="",style="dashed", color="red", weight=0]; 1223[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1223 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1224 -> 546[label="",style="dashed", color="red", weight=0]; 1224[label="xuu50002 == xuu4002",fontsize=16,color="magenta"];1224 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1225 -> 533[label="",style="dashed", color="red", weight=0]; 1225[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1225 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1226 -> 534[label="",style="dashed", color="red", weight=0]; 1226[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1226 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1227 -> 535[label="",style="dashed", color="red", weight=0]; 1227[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1227 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1228 -> 536[label="",style="dashed", color="red", weight=0]; 1228[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1228 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1229 -> 537[label="",style="dashed", color="red", weight=0]; 1229[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1229 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1230 -> 538[label="",style="dashed", color="red", weight=0]; 1230[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1230 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1231 -> 539[label="",style="dashed", color="red", weight=0]; 1231[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1231 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1232 -> 540[label="",style="dashed", color="red", weight=0]; 1232[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1232 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1233 -> 541[label="",style="dashed", color="red", weight=0]; 1233[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1233 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1234 -> 542[label="",style="dashed", color="red", weight=0]; 1234[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1234 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1235 -> 543[label="",style="dashed", color="red", weight=0]; 1235[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1235 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1236 -> 544[label="",style="dashed", color="red", weight=0]; 1236[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1236 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1237 -> 545[label="",style="dashed", color="red", weight=0]; 1237[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1237 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1238 -> 546[label="",style="dashed", color="red", weight=0]; 1238[label="xuu50001 == xuu4001",fontsize=16,color="magenta"];1238 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1239[label="False",fontsize=16,color="green",shape="box"];1240[label="xuu135",fontsize=16,color="green",shape="box"];1241 -> 1407[label="",style="dashed", color="red", weight=0]; 1241[label="compare1 (xuu101,xuu102,xuu103) (xuu104,xuu105,xuu106) (xuu101 < xuu104 || xuu101 == xuu104 && (xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106))",fontsize=16,color="magenta"];1241 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1415[label="",style="dashed", color="magenta", weight=3]; 910[label="Pos (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];910 -> 1197[label="",style="dashed", color="green", weight=3]; 911[label="Neg (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];911 -> 1198[label="",style="dashed", color="green", weight=3]; 912[label="Neg (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];912 -> 1199[label="",style="dashed", color="green", weight=3]; 913[label="Pos (primMulNat xuu40000 xuu500010)",fontsize=16,color="green",shape="box"];913 -> 1200[label="",style="dashed", color="green", weight=3]; 914 -> 473[label="",style="dashed", color="red", weight=0]; 914[label="primMulInt xuu40000 xuu500010",fontsize=16,color="magenta"];914 -> 1201[label="",style="dashed", color="magenta", weight=3]; 914 -> 1202[label="",style="dashed", color="magenta", weight=3]; 915[label="compare0 True False True",fontsize=16,color="black",shape="box"];915 -> 1203[label="",style="solid", color="black", weight=3]; 660[label="LT == xuu4000",fontsize=16,color="burlywood",shape="box"];4076[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];660 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 866[label="",style="solid", color="burlywood", weight=3]; 4077[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];660 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 867[label="",style="solid", color="burlywood", weight=3]; 4078[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];660 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 868[label="",style="solid", color="burlywood", weight=3]; 661[label="EQ == xuu4000",fontsize=16,color="burlywood",shape="box"];4079[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];661 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 869[label="",style="solid", color="burlywood", weight=3]; 4080[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];661 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 870[label="",style="solid", color="burlywood", weight=3]; 4081[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];661 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 871[label="",style="solid", color="burlywood", weight=3]; 662[label="GT == xuu4000",fontsize=16,color="burlywood",shape="box"];4082[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];662 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 872[label="",style="solid", color="burlywood", weight=3]; 4083[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];662 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 873[label="",style="solid", color="burlywood", weight=3]; 4084[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];662 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 874[label="",style="solid", color="burlywood", weight=3]; 663[label="xuu500000 :% xuu500001 == xuu4000",fontsize=16,color="burlywood",shape="box"];4085[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];663 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 875[label="",style="solid", color="burlywood", weight=3]; 664[label="(xuu500000,xuu500001,xuu500002) == xuu4000",fontsize=16,color="burlywood",shape="box"];4086[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];664 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 876[label="",style="solid", color="burlywood", weight=3]; 665[label="() == xuu4000",fontsize=16,color="burlywood",shape="box"];4087[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];665 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 877[label="",style="solid", color="burlywood", weight=3]; 666[label="primEqInt xuu50000 xuu4000",fontsize=16,color="burlywood",shape="triangle"];4088[label="xuu50000/Pos xuu500000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 878[label="",style="solid", color="burlywood", weight=3]; 4089[label="xuu50000/Neg xuu500000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 879[label="",style="solid", color="burlywood", weight=3]; 667[label="Integer xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4090[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];667 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 880[label="",style="solid", color="burlywood", weight=3]; 668[label="(xuu500000,xuu500001) == xuu4000",fontsize=16,color="burlywood",shape="box"];4091[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];668 -> 4091[label="",style="solid", color="burlywood", weight=9]; 4091 -> 881[label="",style="solid", color="burlywood", weight=3]; 669[label="False == xuu4000",fontsize=16,color="burlywood",shape="box"];4092[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];669 -> 4092[label="",style="solid", color="burlywood", weight=9]; 4092 -> 882[label="",style="solid", color="burlywood", weight=3]; 4093[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];669 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 883[label="",style="solid", color="burlywood", weight=3]; 670[label="True == xuu4000",fontsize=16,color="burlywood",shape="box"];4094[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];670 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 884[label="",style="solid", color="burlywood", weight=3]; 4095[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];670 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 885[label="",style="solid", color="burlywood", weight=3]; 671[label="primEqDouble xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4096[label="xuu50000/Double xuu500000 xuu500001",fontsize=10,color="white",style="solid",shape="box"];671 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 886[label="",style="solid", color="burlywood", weight=3]; 672[label="Nothing == xuu4000",fontsize=16,color="burlywood",shape="box"];4097[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];672 -> 4097[label="",style="solid", color="burlywood", weight=9]; 4097 -> 887[label="",style="solid", color="burlywood", weight=3]; 4098[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];672 -> 4098[label="",style="solid", color="burlywood", weight=9]; 4098 -> 888[label="",style="solid", color="burlywood", weight=3]; 673[label="Just xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4099[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];673 -> 4099[label="",style="solid", color="burlywood", weight=9]; 4099 -> 889[label="",style="solid", color="burlywood", weight=3]; 4100[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 4100[label="",style="solid", color="burlywood", weight=9]; 4100 -> 890[label="",style="solid", color="burlywood", weight=3]; 674[label="xuu500000 : xuu500001 == xuu4000",fontsize=16,color="burlywood",shape="box"];4101[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];674 -> 4101[label="",style="solid", color="burlywood", weight=9]; 4101 -> 891[label="",style="solid", color="burlywood", weight=3]; 4102[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];674 -> 4102[label="",style="solid", color="burlywood", weight=9]; 4102 -> 892[label="",style="solid", color="burlywood", weight=3]; 675[label="[] == xuu4000",fontsize=16,color="burlywood",shape="box"];4103[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];675 -> 4103[label="",style="solid", color="burlywood", weight=9]; 4103 -> 893[label="",style="solid", color="burlywood", weight=3]; 4104[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];675 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 894[label="",style="solid", color="burlywood", weight=3]; 676[label="primEqFloat xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4105[label="xuu50000/Float xuu500000 xuu500001",fontsize=10,color="white",style="solid",shape="box"];676 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 895[label="",style="solid", color="burlywood", weight=3]; 677[label="primEqChar xuu50000 xuu4000",fontsize=16,color="burlywood",shape="box"];4106[label="xuu50000/Char xuu500000",fontsize=10,color="white",style="solid",shape="box"];677 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 896[label="",style="solid", color="burlywood", weight=3]; 678[label="Left xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4107[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];678 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 897[label="",style="solid", color="burlywood", weight=3]; 4108[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];678 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 898[label="",style="solid", color="burlywood", weight=3]; 679[label="Right xuu500000 == xuu4000",fontsize=16,color="burlywood",shape="box"];4109[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];679 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 899[label="",style="solid", color="burlywood", weight=3]; 4110[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];679 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 900[label="",style="solid", color="burlywood", weight=3]; 1205[label="xuu62",fontsize=16,color="green",shape="box"];1206[label="xuu63",fontsize=16,color="green",shape="box"];1207[label="Left xuu62 <= Left xuu63",fontsize=16,color="black",shape="box"];1207 -> 1298[label="",style="solid", color="black", weight=3]; 1204[label="compare1 (Left xuu140) (Left xuu141) xuu142",fontsize=16,color="burlywood",shape="triangle"];4111[label="xuu142/False",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 1299[label="",style="solid", color="burlywood", weight=3]; 4112[label="xuu142/True",fontsize=10,color="white",style="solid",shape="box"];1204 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 1300[label="",style="solid", color="burlywood", weight=3]; 917[label="compare0 (Right xuu50000) (Left xuu4000) True",fontsize=16,color="black",shape="box"];917 -> 1301[label="",style="solid", color="black", weight=3]; 1303[label="Right xuu69 <= Right xuu70",fontsize=16,color="black",shape="box"];1303 -> 1367[label="",style="solid", color="black", weight=3]; 1304[label="xuu70",fontsize=16,color="green",shape="box"];1305[label="xuu69",fontsize=16,color="green",shape="box"];1302[label="compare1 (Right xuu147) (Right xuu148) xuu149",fontsize=16,color="burlywood",shape="triangle"];4113[label="xuu149/False",fontsize=10,color="white",style="solid",shape="box"];1302 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 1368[label="",style="solid", color="burlywood", weight=3]; 4114[label="xuu149/True",fontsize=10,color="white",style="solid",shape="box"];1302 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 1369[label="",style="solid", color="burlywood", weight=3]; 919[label="compare0 (Just xuu50000) Nothing True",fontsize=16,color="black",shape="box"];919 -> 1370[label="",style="solid", color="black", weight=3]; 1372[label="Just xuu76 <= Just xuu77",fontsize=16,color="black",shape="box"];1372 -> 1378[label="",style="solid", color="black", weight=3]; 1373[label="xuu77",fontsize=16,color="green",shape="box"];1374[label="xuu76",fontsize=16,color="green",shape="box"];1371[label="compare1 (Just xuu156) (Just xuu157) xuu158",fontsize=16,color="burlywood",shape="triangle"];4115[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];1371 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 1379[label="",style="solid", color="burlywood", weight=3]; 4116[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];1371 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 1380[label="",style="solid", color="burlywood", weight=3]; 1242[label="xuu4001",fontsize=16,color="green",shape="box"];1243[label="xuu50001",fontsize=16,color="green",shape="box"];1244[label="xuu4001",fontsize=16,color="green",shape="box"];1245[label="xuu50001",fontsize=16,color="green",shape="box"];1246[label="xuu4001",fontsize=16,color="green",shape="box"];1247[label="xuu50001",fontsize=16,color="green",shape="box"];1248[label="xuu4001",fontsize=16,color="green",shape="box"];1249[label="xuu50001",fontsize=16,color="green",shape="box"];1250[label="xuu4001",fontsize=16,color="green",shape="box"];1251[label="xuu50001",fontsize=16,color="green",shape="box"];1252[label="xuu4001",fontsize=16,color="green",shape="box"];1253[label="xuu50001",fontsize=16,color="green",shape="box"];1254[label="xuu4001",fontsize=16,color="green",shape="box"];1255[label="xuu50001",fontsize=16,color="green",shape="box"];1256[label="xuu4001",fontsize=16,color="green",shape="box"];1257[label="xuu50001",fontsize=16,color="green",shape="box"];1258[label="xuu4001",fontsize=16,color="green",shape="box"];1259[label="xuu50001",fontsize=16,color="green",shape="box"];1260[label="xuu4001",fontsize=16,color="green",shape="box"];1261[label="xuu50001",fontsize=16,color="green",shape="box"];1262[label="xuu4001",fontsize=16,color="green",shape="box"];1263[label="xuu50001",fontsize=16,color="green",shape="box"];1264[label="xuu4001",fontsize=16,color="green",shape="box"];1265[label="xuu50001",fontsize=16,color="green",shape="box"];1266[label="xuu4001",fontsize=16,color="green",shape="box"];1267[label="xuu50001",fontsize=16,color="green",shape="box"];1268[label="xuu4001",fontsize=16,color="green",shape="box"];1269[label="xuu50001",fontsize=16,color="green",shape="box"];1270[label="xuu4000",fontsize=16,color="green",shape="box"];1271[label="xuu50000",fontsize=16,color="green",shape="box"];1272[label="xuu4000",fontsize=16,color="green",shape="box"];1273[label="xuu50000",fontsize=16,color="green",shape="box"];1274[label="xuu4000",fontsize=16,color="green",shape="box"];1275[label="xuu50000",fontsize=16,color="green",shape="box"];1276[label="xuu4000",fontsize=16,color="green",shape="box"];1277[label="xuu50000",fontsize=16,color="green",shape="box"];1278[label="xuu4000",fontsize=16,color="green",shape="box"];1279[label="xuu50000",fontsize=16,color="green",shape="box"];1280[label="xuu4000",fontsize=16,color="green",shape="box"];1281[label="xuu50000",fontsize=16,color="green",shape="box"];1282[label="xuu4000",fontsize=16,color="green",shape="box"];1283[label="xuu50000",fontsize=16,color="green",shape="box"];1284[label="xuu4000",fontsize=16,color="green",shape="box"];1285[label="xuu50000",fontsize=16,color="green",shape="box"];1286[label="xuu4000",fontsize=16,color="green",shape="box"];1287[label="xuu50000",fontsize=16,color="green",shape="box"];1288[label="xuu4000",fontsize=16,color="green",shape="box"];1289[label="xuu50000",fontsize=16,color="green",shape="box"];1290[label="xuu4000",fontsize=16,color="green",shape="box"];1291[label="xuu50000",fontsize=16,color="green",shape="box"];1292[label="xuu4000",fontsize=16,color="green",shape="box"];1293[label="xuu50000",fontsize=16,color="green",shape="box"];1294[label="xuu4000",fontsize=16,color="green",shape="box"];1295[label="xuu50000",fontsize=16,color="green",shape="box"];1296[label="xuu4000",fontsize=16,color="green",shape="box"];1297[label="xuu50000",fontsize=16,color="green",shape="box"];1020 -> 1498[label="",style="dashed", color="red", weight=0]; 1020[label="compare1 (xuu114,xuu115) (xuu116,xuu117) (xuu114 < xuu116 || xuu114 == xuu116 && xuu115 <= xuu117)",fontsize=16,color="magenta"];1020 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1504[label="",style="dashed", color="magenta", weight=3]; 965[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];965 -> 1383[label="",style="solid", color="black", weight=3]; 966[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];966 -> 1384[label="",style="solid", color="black", weight=3]; 967[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];967 -> 1385[label="",style="solid", color="black", weight=3]; 968[label="xuu21",fontsize=16,color="green",shape="box"];969[label="xuu27",fontsize=16,color="green",shape="box"];970[label="LT",fontsize=16,color="green",shape="box"];971 -> 169[label="",style="dashed", color="red", weight=0]; 971[label="compare (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];971 -> 1386[label="",style="dashed", color="magenta", weight=3]; 971 -> 1387[label="",style="dashed", color="magenta", weight=3]; 972 -> 1779[label="",style="dashed", color="red", weight=0]; 972[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];972 -> 1780[label="",style="dashed", color="magenta", weight=3]; 973 -> 3508[label="",style="dashed", color="red", weight=0]; 973[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu41 xuu43 xuu41",fontsize=16,color="magenta"];973 -> 3514[label="",style="dashed", color="magenta", weight=3]; 973 -> 3515[label="",style="dashed", color="magenta", weight=3]; 973 -> 3516[label="",style="dashed", color="magenta", weight=3]; 973 -> 3517[label="",style="dashed", color="magenta", weight=3]; 973 -> 3518[label="",style="dashed", color="magenta", weight=3]; 2108[label="xuu29",fontsize=16,color="green",shape="box"];1868[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1868 -> 2104[label="",style="solid", color="black", weight=3]; 1869[label="FiniteMap.sizeFM (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1869 -> 2105[label="",style="solid", color="black", weight=3]; 2249[label="Pos (primPlusNat xuu2120 xuu2110)",fontsize=16,color="green",shape="box"];2249 -> 2343[label="",style="dashed", color="green", weight=3]; 2250[label="primMinusNat xuu2120 xuu2110",fontsize=16,color="burlywood",shape="triangle"];4117[label="xuu2120/Succ xuu21200",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 2344[label="",style="solid", color="burlywood", weight=3]; 4118[label="xuu2120/Zero",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 2345[label="",style="solid", color="burlywood", weight=3]; 2251 -> 2250[label="",style="dashed", color="red", weight=0]; 2251[label="primMinusNat xuu2110 xuu2120",fontsize=16,color="magenta"];2251 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2252[label="Neg (primPlusNat xuu2120 xuu2110)",fontsize=16,color="green",shape="box"];2252 -> 2348[label="",style="dashed", color="green", weight=3]; 3732[label="FiniteMap.Branch xuu308 xuu309 (FiniteMap.mkBranchUnbox xuu311 xuu308 xuu310 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)) xuu310 xuu311",fontsize=16,color="green",shape="box"];3732 -> 3738[label="",style="dashed", color="green", weight=3]; 1817 -> 1814[label="",style="dashed", color="red", weight=0]; 1817[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1818[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1818 -> 1867[label="",style="solid", color="black", weight=3]; 1820 -> 533[label="",style="dashed", color="red", weight=0]; 1820[label="compare xuu202 xuu201 == GT",fontsize=16,color="magenta"];1820 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1820 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1802[label="",style="dashed", color="red", weight=0]; 1195[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 (FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29)",fontsize=16,color="magenta"];1195 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1196[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 xuu44 xuu29 xuu29 xuu44 xuu44",fontsize=16,color="burlywood",shape="box"];4119[label="xuu44/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 1403[label="",style="solid", color="burlywood", weight=3]; 4120[label="xuu44/FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444",fontsize=10,color="white",style="solid",shape="box"];1196 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 1404[label="",style="solid", color="burlywood", weight=3]; 1309[label="xuu4002",fontsize=16,color="green",shape="box"];1310[label="xuu50002",fontsize=16,color="green",shape="box"];1311[label="xuu4002",fontsize=16,color="green",shape="box"];1312[label="xuu50002",fontsize=16,color="green",shape="box"];1313[label="xuu4002",fontsize=16,color="green",shape="box"];1314[label="xuu50002",fontsize=16,color="green",shape="box"];1315[label="xuu4002",fontsize=16,color="green",shape="box"];1316[label="xuu50002",fontsize=16,color="green",shape="box"];1317[label="xuu4002",fontsize=16,color="green",shape="box"];1318[label="xuu50002",fontsize=16,color="green",shape="box"];1319[label="xuu4002",fontsize=16,color="green",shape="box"];1320[label="xuu50002",fontsize=16,color="green",shape="box"];1321[label="xuu4002",fontsize=16,color="green",shape="box"];1322[label="xuu50002",fontsize=16,color="green",shape="box"];1323[label="xuu4002",fontsize=16,color="green",shape="box"];1324[label="xuu50002",fontsize=16,color="green",shape="box"];1325[label="xuu4002",fontsize=16,color="green",shape="box"];1326[label="xuu50002",fontsize=16,color="green",shape="box"];1327[label="xuu4002",fontsize=16,color="green",shape="box"];1328[label="xuu50002",fontsize=16,color="green",shape="box"];1329[label="xuu4002",fontsize=16,color="green",shape="box"];1330[label="xuu50002",fontsize=16,color="green",shape="box"];1331[label="xuu4002",fontsize=16,color="green",shape="box"];1332[label="xuu50002",fontsize=16,color="green",shape="box"];1333[label="xuu4002",fontsize=16,color="green",shape="box"];1334[label="xuu50002",fontsize=16,color="green",shape="box"];1335[label="xuu4002",fontsize=16,color="green",shape="box"];1336[label="xuu50002",fontsize=16,color="green",shape="box"];1337[label="xuu4001",fontsize=16,color="green",shape="box"];1338[label="xuu50001",fontsize=16,color="green",shape="box"];1339[label="xuu4001",fontsize=16,color="green",shape="box"];1340[label="xuu50001",fontsize=16,color="green",shape="box"];1341[label="xuu4001",fontsize=16,color="green",shape="box"];1342[label="xuu50001",fontsize=16,color="green",shape="box"];1343[label="xuu4001",fontsize=16,color="green",shape="box"];1344[label="xuu50001",fontsize=16,color="green",shape="box"];1345[label="xuu4001",fontsize=16,color="green",shape="box"];1346[label="xuu50001",fontsize=16,color="green",shape="box"];1347[label="xuu4001",fontsize=16,color="green",shape="box"];1348[label="xuu50001",fontsize=16,color="green",shape="box"];1349[label="xuu4001",fontsize=16,color="green",shape="box"];1350[label="xuu50001",fontsize=16,color="green",shape="box"];1351[label="xuu4001",fontsize=16,color="green",shape="box"];1352[label="xuu50001",fontsize=16,color="green",shape="box"];1353[label="xuu4001",fontsize=16,color="green",shape="box"];1354[label="xuu50001",fontsize=16,color="green",shape="box"];1355[label="xuu4001",fontsize=16,color="green",shape="box"];1356[label="xuu50001",fontsize=16,color="green",shape="box"];1357[label="xuu4001",fontsize=16,color="green",shape="box"];1358[label="xuu50001",fontsize=16,color="green",shape="box"];1359[label="xuu4001",fontsize=16,color="green",shape="box"];1360[label="xuu50001",fontsize=16,color="green",shape="box"];1361[label="xuu4001",fontsize=16,color="green",shape="box"];1362[label="xuu50001",fontsize=16,color="green",shape="box"];1363[label="xuu4001",fontsize=16,color="green",shape="box"];1364[label="xuu50001",fontsize=16,color="green",shape="box"];1408[label="xuu105",fontsize=16,color="green",shape="box"];1409[label="xuu103",fontsize=16,color="green",shape="box"];1410[label="xuu101",fontsize=16,color="green",shape="box"];1411[label="xuu104",fontsize=16,color="green",shape="box"];1412[label="xuu106",fontsize=16,color="green",shape="box"];1413[label="xuu101 < xuu104",fontsize=16,color="blue",shape="box"];4121[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 1424[label="",style="solid", color="blue", weight=3]; 4122[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 1425[label="",style="solid", color="blue", weight=3]; 4123[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 1426[label="",style="solid", color="blue", weight=3]; 4124[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 1427[label="",style="solid", color="blue", weight=3]; 4125[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 1428[label="",style="solid", color="blue", weight=3]; 4126[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 1429[label="",style="solid", color="blue", weight=3]; 4127[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 1430[label="",style="solid", color="blue", weight=3]; 4128[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 1431[label="",style="solid", color="blue", weight=3]; 4129[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 1432[label="",style="solid", color="blue", weight=3]; 4130[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 1433[label="",style="solid", color="blue", weight=3]; 4131[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 1434[label="",style="solid", color="blue", weight=3]; 4132[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 1435[label="",style="solid", color="blue", weight=3]; 4133[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 1436[label="",style="solid", color="blue", weight=3]; 4134[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 1437[label="",style="solid", color="blue", weight=3]; 1414 -> 1128[label="",style="dashed", color="red", weight=0]; 1414[label="xuu101 == xuu104 && (xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106)",fontsize=16,color="magenta"];1414 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1415[label="xuu102",fontsize=16,color="green",shape="box"];1407[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (xuu179 || xuu180)",fontsize=16,color="burlywood",shape="triangle"];4135[label="xuu179/False",fontsize=10,color="white",style="solid",shape="box"];1407 -> 4135[label="",style="solid", color="burlywood", weight=9]; 4135 -> 1440[label="",style="solid", color="burlywood", weight=3]; 4136[label="xuu179/True",fontsize=10,color="white",style="solid",shape="box"];1407 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 1441[label="",style="solid", color="burlywood", weight=3]; 1197[label="primMulNat xuu40000 xuu500010",fontsize=16,color="burlywood",shape="triangle"];4137[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 1442[label="",style="solid", color="burlywood", weight=3]; 4138[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1197 -> 4138[label="",style="solid", color="burlywood", weight=9]; 4138 -> 1443[label="",style="solid", color="burlywood", weight=3]; 1198 -> 1197[label="",style="dashed", color="red", weight=0]; 1198[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1198 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1197[label="",style="dashed", color="red", weight=0]; 1199[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1199 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1197[label="",style="dashed", color="red", weight=0]; 1200[label="primMulNat xuu40000 xuu500010",fontsize=16,color="magenta"];1200 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1201[label="xuu500010",fontsize=16,color="green",shape="box"];1202[label="xuu40000",fontsize=16,color="green",shape="box"];1203[label="GT",fontsize=16,color="green",shape="box"];866[label="LT == LT",fontsize=16,color="black",shape="box"];866 -> 1024[label="",style="solid", color="black", weight=3]; 867[label="LT == EQ",fontsize=16,color="black",shape="box"];867 -> 1025[label="",style="solid", color="black", weight=3]; 868[label="LT == GT",fontsize=16,color="black",shape="box"];868 -> 1026[label="",style="solid", color="black", weight=3]; 869[label="EQ == LT",fontsize=16,color="black",shape="box"];869 -> 1027[label="",style="solid", color="black", weight=3]; 870[label="EQ == EQ",fontsize=16,color="black",shape="box"];870 -> 1028[label="",style="solid", color="black", weight=3]; 871[label="EQ == GT",fontsize=16,color="black",shape="box"];871 -> 1029[label="",style="solid", color="black", weight=3]; 872[label="GT == LT",fontsize=16,color="black",shape="box"];872 -> 1030[label="",style="solid", color="black", weight=3]; 873[label="GT == EQ",fontsize=16,color="black",shape="box"];873 -> 1031[label="",style="solid", color="black", weight=3]; 874[label="GT == GT",fontsize=16,color="black",shape="box"];874 -> 1032[label="",style="solid", color="black", weight=3]; 875[label="xuu500000 :% xuu500001 == xuu40000 :% xuu40001",fontsize=16,color="black",shape="box"];875 -> 1033[label="",style="solid", color="black", weight=3]; 876[label="(xuu500000,xuu500001,xuu500002) == (xuu40000,xuu40001,xuu40002)",fontsize=16,color="black",shape="box"];876 -> 1034[label="",style="solid", color="black", weight=3]; 877[label="() == ()",fontsize=16,color="black",shape="box"];877 -> 1035[label="",style="solid", color="black", weight=3]; 878[label="primEqInt (Pos xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4139[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];878 -> 4139[label="",style="solid", color="burlywood", weight=9]; 4139 -> 1036[label="",style="solid", color="burlywood", weight=3]; 4140[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];878 -> 4140[label="",style="solid", color="burlywood", weight=9]; 4140 -> 1037[label="",style="solid", color="burlywood", weight=3]; 879[label="primEqInt (Neg xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4141[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];879 -> 4141[label="",style="solid", color="burlywood", weight=9]; 4141 -> 1038[label="",style="solid", color="burlywood", weight=3]; 4142[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];879 -> 4142[label="",style="solid", color="burlywood", weight=9]; 4142 -> 1039[label="",style="solid", color="burlywood", weight=3]; 880[label="Integer xuu500000 == Integer xuu40000",fontsize=16,color="black",shape="box"];880 -> 1040[label="",style="solid", color="black", weight=3]; 881[label="(xuu500000,xuu500001) == (xuu40000,xuu40001)",fontsize=16,color="black",shape="box"];881 -> 1041[label="",style="solid", color="black", weight=3]; 882[label="False == False",fontsize=16,color="black",shape="box"];882 -> 1042[label="",style="solid", color="black", weight=3]; 883[label="False == True",fontsize=16,color="black",shape="box"];883 -> 1043[label="",style="solid", color="black", weight=3]; 884[label="True == False",fontsize=16,color="black",shape="box"];884 -> 1044[label="",style="solid", color="black", weight=3]; 885[label="True == True",fontsize=16,color="black",shape="box"];885 -> 1045[label="",style="solid", color="black", weight=3]; 886[label="primEqDouble (Double xuu500000 xuu500001) xuu4000",fontsize=16,color="burlywood",shape="box"];4143[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];886 -> 4143[label="",style="solid", color="burlywood", weight=9]; 4143 -> 1046[label="",style="solid", color="burlywood", weight=3]; 887[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];887 -> 1047[label="",style="solid", color="black", weight=3]; 888[label="Nothing == Just xuu40000",fontsize=16,color="black",shape="box"];888 -> 1048[label="",style="solid", color="black", weight=3]; 889[label="Just xuu500000 == Nothing",fontsize=16,color="black",shape="box"];889 -> 1049[label="",style="solid", color="black", weight=3]; 890[label="Just xuu500000 == Just xuu40000",fontsize=16,color="black",shape="box"];890 -> 1050[label="",style="solid", color="black", weight=3]; 891[label="xuu500000 : xuu500001 == xuu40000 : xuu40001",fontsize=16,color="black",shape="box"];891 -> 1051[label="",style="solid", color="black", weight=3]; 892[label="xuu500000 : xuu500001 == []",fontsize=16,color="black",shape="box"];892 -> 1052[label="",style="solid", color="black", weight=3]; 893[label="[] == xuu40000 : xuu40001",fontsize=16,color="black",shape="box"];893 -> 1053[label="",style="solid", color="black", weight=3]; 894[label="[] == []",fontsize=16,color="black",shape="box"];894 -> 1054[label="",style="solid", color="black", weight=3]; 895[label="primEqFloat (Float xuu500000 xuu500001) xuu4000",fontsize=16,color="burlywood",shape="box"];4144[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];895 -> 4144[label="",style="solid", color="burlywood", weight=9]; 4144 -> 1055[label="",style="solid", color="burlywood", weight=3]; 896[label="primEqChar (Char xuu500000) xuu4000",fontsize=16,color="burlywood",shape="box"];4145[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];896 -> 4145[label="",style="solid", color="burlywood", weight=9]; 4145 -> 1056[label="",style="solid", color="burlywood", weight=3]; 897[label="Left xuu500000 == Left xuu40000",fontsize=16,color="black",shape="box"];897 -> 1057[label="",style="solid", color="black", weight=3]; 898[label="Left xuu500000 == Right xuu40000",fontsize=16,color="black",shape="box"];898 -> 1058[label="",style="solid", color="black", weight=3]; 899[label="Right xuu500000 == Left xuu40000",fontsize=16,color="black",shape="box"];899 -> 1059[label="",style="solid", color="black", weight=3]; 900[label="Right xuu500000 == Right xuu40000",fontsize=16,color="black",shape="box"];900 -> 1060[label="",style="solid", color="black", weight=3]; 1298[label="xuu62 <= xuu63",fontsize=16,color="blue",shape="box"];4146[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1448[label="",style="solid", color="blue", weight=3]; 4147[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1449[label="",style="solid", color="blue", weight=3]; 4148[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1450[label="",style="solid", color="blue", weight=3]; 4149[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1451[label="",style="solid", color="blue", weight=3]; 4150[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 1452[label="",style="solid", color="blue", weight=3]; 4151[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 1453[label="",style="solid", color="blue", weight=3]; 4152[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 1454[label="",style="solid", color="blue", weight=3]; 4153[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 1455[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 1456[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 1457[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 1458[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 1459[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 1460[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1298 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 1461[label="",style="solid", color="blue", weight=3]; 1299[label="compare1 (Left xuu140) (Left xuu141) False",fontsize=16,color="black",shape="box"];1299 -> 1462[label="",style="solid", color="black", weight=3]; 1300[label="compare1 (Left xuu140) (Left xuu141) True",fontsize=16,color="black",shape="box"];1300 -> 1463[label="",style="solid", color="black", weight=3]; 1301[label="GT",fontsize=16,color="green",shape="box"];1367[label="xuu69 <= xuu70",fontsize=16,color="blue",shape="box"];4160[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 1464[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 1465[label="",style="solid", color="blue", weight=3]; 4162[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 1466[label="",style="solid", color="blue", weight=3]; 4163[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 1467[label="",style="solid", color="blue", weight=3]; 4164[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 1468[label="",style="solid", color="blue", weight=3]; 4165[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 1469[label="",style="solid", color="blue", weight=3]; 4166[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 1470[label="",style="solid", color="blue", weight=3]; 4167[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 1471[label="",style="solid", color="blue", weight=3]; 4168[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 1472[label="",style="solid", color="blue", weight=3]; 4169[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 1473[label="",style="solid", color="blue", weight=3]; 4170[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 1474[label="",style="solid", color="blue", weight=3]; 4171[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1475[label="",style="solid", color="blue", weight=3]; 4172[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 1476[label="",style="solid", color="blue", weight=3]; 4173[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1367 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 1477[label="",style="solid", color="blue", weight=3]; 1368[label="compare1 (Right xuu147) (Right xuu148) False",fontsize=16,color="black",shape="box"];1368 -> 1478[label="",style="solid", color="black", weight=3]; 1369[label="compare1 (Right xuu147) (Right xuu148) True",fontsize=16,color="black",shape="box"];1369 -> 1479[label="",style="solid", color="black", weight=3]; 1370[label="GT",fontsize=16,color="green",shape="box"];1378[label="xuu76 <= xuu77",fontsize=16,color="blue",shape="box"];4174[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 1480[label="",style="solid", color="blue", weight=3]; 4175[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 1481[label="",style="solid", color="blue", weight=3]; 4176[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 1482[label="",style="solid", color="blue", weight=3]; 4177[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 1483[label="",style="solid", color="blue", weight=3]; 4178[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 1484[label="",style="solid", color="blue", weight=3]; 4179[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 1485[label="",style="solid", color="blue", weight=3]; 4180[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 1486[label="",style="solid", color="blue", weight=3]; 4181[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 1487[label="",style="solid", color="blue", weight=3]; 4182[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 1488[label="",style="solid", color="blue", weight=3]; 4183[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 1489[label="",style="solid", color="blue", weight=3]; 4184[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 1490[label="",style="solid", color="blue", weight=3]; 4185[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 1491[label="",style="solid", color="blue", weight=3]; 4186[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 1492[label="",style="solid", color="blue", weight=3]; 4187[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1378 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 1493[label="",style="solid", color="blue", weight=3]; 1379[label="compare1 (Just xuu156) (Just xuu157) False",fontsize=16,color="black",shape="box"];1379 -> 1494[label="",style="solid", color="black", weight=3]; 1380[label="compare1 (Just xuu156) (Just xuu157) True",fontsize=16,color="black",shape="box"];1380 -> 1495[label="",style="solid", color="black", weight=3]; 1499[label="xuu115",fontsize=16,color="green",shape="box"];1500[label="xuu116",fontsize=16,color="green",shape="box"];1501[label="xuu114 < xuu116",fontsize=16,color="blue",shape="box"];4188[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 1511[label="",style="solid", color="blue", weight=3]; 4189[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 1512[label="",style="solid", color="blue", weight=3]; 4190[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 1513[label="",style="solid", color="blue", weight=3]; 4191[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 1514[label="",style="solid", color="blue", weight=3]; 4192[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 1515[label="",style="solid", color="blue", weight=3]; 4193[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 1516[label="",style="solid", color="blue", weight=3]; 4194[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 1517[label="",style="solid", color="blue", weight=3]; 4195[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 1518[label="",style="solid", color="blue", weight=3]; 4196[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 1519[label="",style="solid", color="blue", weight=3]; 4197[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 1520[label="",style="solid", color="blue", weight=3]; 4198[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 1521[label="",style="solid", color="blue", weight=3]; 4199[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 1522[label="",style="solid", color="blue", weight=3]; 4200[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 1523[label="",style="solid", color="blue", weight=3]; 4201[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 1524[label="",style="solid", color="blue", weight=3]; 1502[label="xuu114",fontsize=16,color="green",shape="box"];1503 -> 1128[label="",style="dashed", color="red", weight=0]; 1503[label="xuu114 == xuu116 && xuu115 <= xuu117",fontsize=16,color="magenta"];1503 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1504[label="xuu117",fontsize=16,color="green",shape="box"];1498[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (xuu192 || xuu193)",fontsize=16,color="burlywood",shape="triangle"];4202[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];1498 -> 4202[label="",style="solid", color="burlywood", weight=9]; 4202 -> 1527[label="",style="solid", color="burlywood", weight=3]; 4203[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];1498 -> 4203[label="",style="solid", color="burlywood", weight=9]; 4203 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1383[label="GT",fontsize=16,color="green",shape="box"];1384[label="GT",fontsize=16,color="green",shape="box"];1385[label="GT",fontsize=16,color="green",shape="box"];1386[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1387[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 + FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="box"];1387 -> 1529[label="",style="solid", color="black", weight=3]; 1780 -> 1806[label="",style="dashed", color="red", weight=0]; 1780[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1780 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1779[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu195",fontsize=16,color="burlywood",shape="triangle"];4204[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 1785[label="",style="solid", color="burlywood", weight=3]; 4205[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 1786[label="",style="solid", color="burlywood", weight=3]; 3514[label="xuu43",fontsize=16,color="green",shape="box"];3515[label="xuu41",fontsize=16,color="green",shape="box"];3516[label="Zero",fontsize=16,color="green",shape="box"];3517[label="[]",fontsize=16,color="green",shape="box"];3518[label="xuu41",fontsize=16,color="green",shape="box"];2104[label="Pos Zero",fontsize=16,color="green",shape="box"];2105[label="xuu442",fontsize=16,color="green",shape="box"];2343[label="primPlusNat xuu2120 xuu2110",fontsize=16,color="burlywood",shape="triangle"];4206[label="xuu2120/Succ xuu21200",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 2641[label="",style="solid", color="burlywood", weight=3]; 4207[label="xuu2120/Zero",fontsize=10,color="white",style="solid",shape="box"];2343 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 2642[label="",style="solid", color="burlywood", weight=3]; 2344[label="primMinusNat (Succ xuu21200) xuu2110",fontsize=16,color="burlywood",shape="box"];4208[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 2643[label="",style="solid", color="burlywood", weight=3]; 4209[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4209[label="",style="solid", color="burlywood", weight=9]; 4209 -> 2644[label="",style="solid", color="burlywood", weight=3]; 2345[label="primMinusNat Zero xuu2110",fontsize=16,color="burlywood",shape="box"];4210[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2345 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 2645[label="",style="solid", color="burlywood", weight=3]; 4211[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2345 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 2646[label="",style="solid", color="burlywood", weight=3]; 2346[label="xuu2120",fontsize=16,color="green",shape="box"];2347[label="xuu2110",fontsize=16,color="green",shape="box"];2348 -> 2343[label="",style="dashed", color="red", weight=0]; 2348[label="primPlusNat xuu2120 xuu2110",fontsize=16,color="magenta"];2348 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2648[label="",style="dashed", color="magenta", weight=3]; 3738[label="FiniteMap.mkBranchUnbox xuu311 xuu308 xuu310 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)",fontsize=16,color="black",shape="box"];3738 -> 3749[label="",style="solid", color="black", weight=3]; 1867[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1870[label="GT",fontsize=16,color="green",shape="box"];1871 -> 169[label="",style="dashed", color="red", weight=0]; 1871[label="compare xuu202 xuu201",fontsize=16,color="magenta"];1871 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1806[label="",style="dashed", color="red", weight=0]; 1803[label="FiniteMap.mkBalBranch6Size_l (xuu400 : xuu401) xuu41 xuu44 xuu29 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1803 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1803 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1802[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 xuu199",fontsize=16,color="burlywood",shape="triangle"];4212[label="xuu199/False",fontsize=10,color="white",style="solid",shape="box"];1802 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 1821[label="",style="solid", color="burlywood", weight=3]; 4213[label="xuu199/True",fontsize=10,color="white",style="solid",shape="box"];1802 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 1822[label="",style="solid", color="burlywood", weight=3]; 1403[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 FiniteMap.EmptyFM xuu29 xuu29 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1403 -> 1548[label="",style="solid", color="black", weight=3]; 1404[label="FiniteMap.mkBalBranch6MkBalBranch0 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1404 -> 1549[label="",style="solid", color="black", weight=3]; 1424[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1424 -> 1550[label="",style="solid", color="black", weight=3]; 1425[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1425 -> 1551[label="",style="solid", color="black", weight=3]; 1426[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1426 -> 1552[label="",style="solid", color="black", weight=3]; 1427[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1427 -> 1553[label="",style="solid", color="black", weight=3]; 1428[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1428 -> 1554[label="",style="solid", color="black", weight=3]; 1429[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1429 -> 1555[label="",style="solid", color="black", weight=3]; 1430[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1430 -> 1556[label="",style="solid", color="black", weight=3]; 1431[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1431 -> 1557[label="",style="solid", color="black", weight=3]; 1432[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1432 -> 1558[label="",style="solid", color="black", weight=3]; 1433[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1433 -> 1559[label="",style="solid", color="black", weight=3]; 1434[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1434 -> 1560[label="",style="solid", color="black", weight=3]; 1435[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1435 -> 1561[label="",style="solid", color="black", weight=3]; 1436[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1436 -> 1562[label="",style="solid", color="black", weight=3]; 1437[label="xuu101 < xuu104",fontsize=16,color="black",shape="triangle"];1437 -> 1563[label="",style="solid", color="black", weight=3]; 1438 -> 1862[label="",style="dashed", color="red", weight=0]; 1438[label="xuu102 < xuu105 || xuu102 == xuu105 && xuu103 <= xuu106",fontsize=16,color="magenta"];1438 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1439[label="xuu101 == xuu104",fontsize=16,color="blue",shape="box"];4214[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 1566[label="",style="solid", color="blue", weight=3]; 4215[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 1567[label="",style="solid", color="blue", weight=3]; 4216[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 1568[label="",style="solid", color="blue", weight=3]; 4217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 1569[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 1570[label="",style="solid", color="blue", weight=3]; 4219[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 1571[label="",style="solid", color="blue", weight=3]; 4220[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 1572[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 1573[label="",style="solid", color="blue", weight=3]; 4222[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 1574[label="",style="solid", color="blue", weight=3]; 4223[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 1575[label="",style="solid", color="blue", weight=3]; 4224[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 1576[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 1577[label="",style="solid", color="blue", weight=3]; 4226[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 1578[label="",style="solid", color="blue", weight=3]; 4227[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 1579[label="",style="solid", color="blue", weight=3]; 1440[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (False || xuu180)",fontsize=16,color="black",shape="box"];1440 -> 1580[label="",style="solid", color="black", weight=3]; 1441[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) (True || xuu180)",fontsize=16,color="black",shape="box"];1441 -> 1581[label="",style="solid", color="black", weight=3]; 1442[label="primMulNat (Succ xuu400000) xuu500010",fontsize=16,color="burlywood",shape="box"];4228[label="xuu500010/Succ xuu5000100",fontsize=10,color="white",style="solid",shape="box"];1442 -> 4228[label="",style="solid", color="burlywood", weight=9]; 4228 -> 1582[label="",style="solid", color="burlywood", weight=3]; 4229[label="xuu500010/Zero",fontsize=10,color="white",style="solid",shape="box"];1442 -> 4229[label="",style="solid", color="burlywood", weight=9]; 4229 -> 1583[label="",style="solid", color="burlywood", weight=3]; 1443[label="primMulNat Zero xuu500010",fontsize=16,color="burlywood",shape="box"];4230[label="xuu500010/Succ xuu5000100",fontsize=10,color="white",style="solid",shape="box"];1443 -> 4230[label="",style="solid", color="burlywood", weight=9]; 4230 -> 1584[label="",style="solid", color="burlywood", weight=3]; 4231[label="xuu500010/Zero",fontsize=10,color="white",style="solid",shape="box"];1443 -> 4231[label="",style="solid", color="burlywood", weight=9]; 4231 -> 1585[label="",style="solid", color="burlywood", weight=3]; 1444[label="xuu500010",fontsize=16,color="green",shape="box"];1445[label="xuu40000",fontsize=16,color="green",shape="box"];1446[label="xuu40000",fontsize=16,color="green",shape="box"];1447[label="xuu500010",fontsize=16,color="green",shape="box"];1024[label="True",fontsize=16,color="green",shape="box"];1025[label="False",fontsize=16,color="green",shape="box"];1026[label="False",fontsize=16,color="green",shape="box"];1027[label="False",fontsize=16,color="green",shape="box"];1028[label="True",fontsize=16,color="green",shape="box"];1029[label="False",fontsize=16,color="green",shape="box"];1030[label="False",fontsize=16,color="green",shape="box"];1031[label="False",fontsize=16,color="green",shape="box"];1032[label="True",fontsize=16,color="green",shape="box"];1033 -> 1128[label="",style="dashed", color="red", weight=0]; 1033[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1033 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1128[label="",style="dashed", color="red", weight=0]; 1034[label="xuu500000 == xuu40000 && xuu500001 == xuu40001 && xuu500002 == xuu40002",fontsize=16,color="magenta"];1034 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1035[label="True",fontsize=16,color="green",shape="box"];1036[label="primEqInt (Pos (Succ xuu5000000)) xuu4000",fontsize=16,color="burlywood",shape="box"];4232[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1036 -> 4232[label="",style="solid", color="burlywood", weight=9]; 4232 -> 1586[label="",style="solid", color="burlywood", weight=3]; 4233[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1036 -> 4233[label="",style="solid", color="burlywood", weight=9]; 4233 -> 1587[label="",style="solid", color="burlywood", weight=3]; 1037[label="primEqInt (Pos Zero) xuu4000",fontsize=16,color="burlywood",shape="box"];4234[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1037 -> 4234[label="",style="solid", color="burlywood", weight=9]; 4234 -> 1588[label="",style="solid", color="burlywood", weight=3]; 4235[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1037 -> 4235[label="",style="solid", color="burlywood", weight=9]; 4235 -> 1589[label="",style="solid", color="burlywood", weight=3]; 1038[label="primEqInt (Neg (Succ xuu5000000)) xuu4000",fontsize=16,color="burlywood",shape="box"];4236[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4236[label="",style="solid", color="burlywood", weight=9]; 4236 -> 1590[label="",style="solid", color="burlywood", weight=3]; 4237[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1038 -> 4237[label="",style="solid", color="burlywood", weight=9]; 4237 -> 1591[label="",style="solid", color="burlywood", weight=3]; 1039[label="primEqInt (Neg Zero) xuu4000",fontsize=16,color="burlywood",shape="box"];4238[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];1039 -> 4238[label="",style="solid", color="burlywood", weight=9]; 4238 -> 1592[label="",style="solid", color="burlywood", weight=3]; 4239[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];1039 -> 4239[label="",style="solid", color="burlywood", weight=9]; 4239 -> 1593[label="",style="solid", color="burlywood", weight=3]; 1040 -> 666[label="",style="dashed", color="red", weight=0]; 1040[label="primEqInt xuu500000 xuu40000",fontsize=16,color="magenta"];1040 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1128[label="",style="dashed", color="red", weight=0]; 1041[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1041 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1042[label="True",fontsize=16,color="green",shape="box"];1043[label="False",fontsize=16,color="green",shape="box"];1044[label="False",fontsize=16,color="green",shape="box"];1045[label="True",fontsize=16,color="green",shape="box"];1046[label="primEqDouble (Double xuu500000 xuu500001) (Double xuu40000 xuu40001)",fontsize=16,color="black",shape="box"];1046 -> 1596[label="",style="solid", color="black", weight=3]; 1047[label="True",fontsize=16,color="green",shape="box"];1048[label="False",fontsize=16,color="green",shape="box"];1049[label="False",fontsize=16,color="green",shape="box"];1050[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 1597[label="",style="solid", color="blue", weight=3]; 4241[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 1598[label="",style="solid", color="blue", weight=3]; 4242[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 1599[label="",style="solid", color="blue", weight=3]; 4243[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 1600[label="",style="solid", color="blue", weight=3]; 4244[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 1601[label="",style="solid", color="blue", weight=3]; 4245[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 1602[label="",style="solid", color="blue", weight=3]; 4246[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 1603[label="",style="solid", color="blue", weight=3]; 4247[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 1604[label="",style="solid", color="blue", weight=3]; 4248[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 1605[label="",style="solid", color="blue", weight=3]; 4249[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 1606[label="",style="solid", color="blue", weight=3]; 4250[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 1607[label="",style="solid", color="blue", weight=3]; 4251[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 1608[label="",style="solid", color="blue", weight=3]; 4252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 1609[label="",style="solid", color="blue", weight=3]; 4253[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 1610[label="",style="solid", color="blue", weight=3]; 1051 -> 1128[label="",style="dashed", color="red", weight=0]; 1051[label="xuu500000 == xuu40000 && xuu500001 == xuu40001",fontsize=16,color="magenta"];1051 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1051 -> 1144[label="",style="dashed", color="magenta", weight=3]; 1052[label="False",fontsize=16,color="green",shape="box"];1053[label="False",fontsize=16,color="green",shape="box"];1054[label="True",fontsize=16,color="green",shape="box"];1055[label="primEqFloat (Float xuu500000 xuu500001) (Float xuu40000 xuu40001)",fontsize=16,color="black",shape="box"];1055 -> 1611[label="",style="solid", color="black", weight=3]; 1056[label="primEqChar (Char xuu500000) (Char xuu40000)",fontsize=16,color="black",shape="box"];1056 -> 1612[label="",style="solid", color="black", weight=3]; 1057[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 1613[label="",style="solid", color="blue", weight=3]; 4255[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 1614[label="",style="solid", color="blue", weight=3]; 4256[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 1615[label="",style="solid", color="blue", weight=3]; 4257[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 1616[label="",style="solid", color="blue", weight=3]; 4258[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 1617[label="",style="solid", color="blue", weight=3]; 4259[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 1618[label="",style="solid", color="blue", weight=3]; 4260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 1619[label="",style="solid", color="blue", weight=3]; 4261[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 1620[label="",style="solid", color="blue", weight=3]; 4262[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 1621[label="",style="solid", color="blue", weight=3]; 4263[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 1622[label="",style="solid", color="blue", weight=3]; 4264[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 1623[label="",style="solid", color="blue", weight=3]; 4265[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 1624[label="",style="solid", color="blue", weight=3]; 4266[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 1625[label="",style="solid", color="blue", weight=3]; 4267[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1057 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 1626[label="",style="solid", color="blue", weight=3]; 1058[label="False",fontsize=16,color="green",shape="box"];1059[label="False",fontsize=16,color="green",shape="box"];1060[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 1627[label="",style="solid", color="blue", weight=3]; 4269[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 1628[label="",style="solid", color="blue", weight=3]; 4270[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 1629[label="",style="solid", color="blue", weight=3]; 4271[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 1630[label="",style="solid", color="blue", weight=3]; 4272[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 1631[label="",style="solid", color="blue", weight=3]; 4273[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 1632[label="",style="solid", color="blue", weight=3]; 4274[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 1633[label="",style="solid", color="blue", weight=3]; 4275[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 1634[label="",style="solid", color="blue", weight=3]; 4276[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 1635[label="",style="solid", color="blue", weight=3]; 4277[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 1636[label="",style="solid", color="blue", weight=3]; 4278[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 1637[label="",style="solid", color="blue", weight=3]; 4279[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 1638[label="",style="solid", color="blue", weight=3]; 4280[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 1639[label="",style="solid", color="blue", weight=3]; 4281[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1060 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 1640[label="",style="solid", color="blue", weight=3]; 1448[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1448 -> 1641[label="",style="solid", color="black", weight=3]; 1449[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1449 -> 1642[label="",style="solid", color="black", weight=3]; 1450[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1450 -> 1643[label="",style="solid", color="black", weight=3]; 1451[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4282[label="xuu62/(xuu620,xuu621,xuu622)",fontsize=10,color="white",style="solid",shape="box"];1451 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 1644[label="",style="solid", color="burlywood", weight=3]; 1452[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1452 -> 1645[label="",style="solid", color="black", weight=3]; 1453[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1453 -> 1646[label="",style="solid", color="black", weight=3]; 1454[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1454 -> 1647[label="",style="solid", color="black", weight=3]; 1455[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4283[label="xuu62/False",fontsize=10,color="white",style="solid",shape="box"];1455 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 1648[label="",style="solid", color="burlywood", weight=3]; 4284[label="xuu62/True",fontsize=10,color="white",style="solid",shape="box"];1455 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 1649[label="",style="solid", color="burlywood", weight=3]; 1456[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1456 -> 1650[label="",style="solid", color="black", weight=3]; 1457[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4285[label="xuu62/Left xuu620",fontsize=10,color="white",style="solid",shape="box"];1457 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 1651[label="",style="solid", color="burlywood", weight=3]; 4286[label="xuu62/Right xuu620",fontsize=10,color="white",style="solid",shape="box"];1457 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 1652[label="",style="solid", color="burlywood", weight=3]; 1458[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4287[label="xuu62/Nothing",fontsize=10,color="white",style="solid",shape="box"];1458 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 1653[label="",style="solid", color="burlywood", weight=3]; 4288[label="xuu62/Just xuu620",fontsize=10,color="white",style="solid",shape="box"];1458 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 1654[label="",style="solid", color="burlywood", weight=3]; 1459[label="xuu62 <= xuu63",fontsize=16,color="black",shape="triangle"];1459 -> 1655[label="",style="solid", color="black", weight=3]; 1460[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4289[label="xuu62/(xuu620,xuu621)",fontsize=10,color="white",style="solid",shape="box"];1460 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 1656[label="",style="solid", color="burlywood", weight=3]; 1461[label="xuu62 <= xuu63",fontsize=16,color="burlywood",shape="triangle"];4290[label="xuu62/LT",fontsize=10,color="white",style="solid",shape="box"];1461 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 1657[label="",style="solid", color="burlywood", weight=3]; 4291[label="xuu62/EQ",fontsize=10,color="white",style="solid",shape="box"];1461 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 1658[label="",style="solid", color="burlywood", weight=3]; 4292[label="xuu62/GT",fontsize=10,color="white",style="solid",shape="box"];1461 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 1659[label="",style="solid", color="burlywood", weight=3]; 1462[label="compare0 (Left xuu140) (Left xuu141) otherwise",fontsize=16,color="black",shape="box"];1462 -> 1660[label="",style="solid", color="black", weight=3]; 1463[label="LT",fontsize=16,color="green",shape="box"];1464 -> 1448[label="",style="dashed", color="red", weight=0]; 1464[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1464 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1449[label="",style="dashed", color="red", weight=0]; 1465[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1465 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1450[label="",style="dashed", color="red", weight=0]; 1466[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1466 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1451[label="",style="dashed", color="red", weight=0]; 1467[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1467 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1452[label="",style="dashed", color="red", weight=0]; 1468[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1468 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1453[label="",style="dashed", color="red", weight=0]; 1469[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1469 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1469 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1454[label="",style="dashed", color="red", weight=0]; 1470[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1470 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1470 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1455[label="",style="dashed", color="red", weight=0]; 1471[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1471 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1471 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1456[label="",style="dashed", color="red", weight=0]; 1472[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1472 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1457[label="",style="dashed", color="red", weight=0]; 1473[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1473 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1458[label="",style="dashed", color="red", weight=0]; 1474[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1474 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1459[label="",style="dashed", color="red", weight=0]; 1475[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1475 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1460[label="",style="dashed", color="red", weight=0]; 1476[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1476 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1461[label="",style="dashed", color="red", weight=0]; 1477[label="xuu69 <= xuu70",fontsize=16,color="magenta"];1477 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1478[label="compare0 (Right xuu147) (Right xuu148) otherwise",fontsize=16,color="black",shape="box"];1478 -> 1689[label="",style="solid", color="black", weight=3]; 1479[label="LT",fontsize=16,color="green",shape="box"];1480 -> 1448[label="",style="dashed", color="red", weight=0]; 1480[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1480 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1449[label="",style="dashed", color="red", weight=0]; 1481[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1481 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1450[label="",style="dashed", color="red", weight=0]; 1482[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1482 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1451[label="",style="dashed", color="red", weight=0]; 1483[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1483 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1452[label="",style="dashed", color="red", weight=0]; 1484[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1484 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1453[label="",style="dashed", color="red", weight=0]; 1485[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1485 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1454[label="",style="dashed", color="red", weight=0]; 1486[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1486 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1455[label="",style="dashed", color="red", weight=0]; 1487[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1487 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1456[label="",style="dashed", color="red", weight=0]; 1488[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1488 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1457[label="",style="dashed", color="red", weight=0]; 1489[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1489 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1458[label="",style="dashed", color="red", weight=0]; 1490[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1490 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1459[label="",style="dashed", color="red", weight=0]; 1491[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1491 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1460[label="",style="dashed", color="red", weight=0]; 1492[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1492 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1461[label="",style="dashed", color="red", weight=0]; 1493[label="xuu76 <= xuu77",fontsize=16,color="magenta"];1493 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1494[label="compare0 (Just xuu156) (Just xuu157) otherwise",fontsize=16,color="black",shape="box"];1494 -> 1718[label="",style="solid", color="black", weight=3]; 1495[label="LT",fontsize=16,color="green",shape="box"];1511 -> 1424[label="",style="dashed", color="red", weight=0]; 1511[label="xuu114 < xuu116",fontsize=16,color="magenta"];1511 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1425[label="",style="dashed", color="red", weight=0]; 1512[label="xuu114 < xuu116",fontsize=16,color="magenta"];1512 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1426[label="",style="dashed", color="red", weight=0]; 1513[label="xuu114 < xuu116",fontsize=16,color="magenta"];1513 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1427[label="",style="dashed", color="red", weight=0]; 1514[label="xuu114 < xuu116",fontsize=16,color="magenta"];1514 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1428[label="",style="dashed", color="red", weight=0]; 1515[label="xuu114 < xuu116",fontsize=16,color="magenta"];1515 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1429[label="",style="dashed", color="red", weight=0]; 1516[label="xuu114 < xuu116",fontsize=16,color="magenta"];1516 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1430[label="",style="dashed", color="red", weight=0]; 1517[label="xuu114 < xuu116",fontsize=16,color="magenta"];1517 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1431[label="",style="dashed", color="red", weight=0]; 1518[label="xuu114 < xuu116",fontsize=16,color="magenta"];1518 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1432[label="",style="dashed", color="red", weight=0]; 1519[label="xuu114 < xuu116",fontsize=16,color="magenta"];1519 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1433[label="",style="dashed", color="red", weight=0]; 1520[label="xuu114 < xuu116",fontsize=16,color="magenta"];1520 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1434[label="",style="dashed", color="red", weight=0]; 1521[label="xuu114 < xuu116",fontsize=16,color="magenta"];1521 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1435[label="",style="dashed", color="red", weight=0]; 1522[label="xuu114 < xuu116",fontsize=16,color="magenta"];1522 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1436[label="",style="dashed", color="red", weight=0]; 1523[label="xuu114 < xuu116",fontsize=16,color="magenta"];1523 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1437[label="",style="dashed", color="red", weight=0]; 1524[label="xuu114 < xuu116",fontsize=16,color="magenta"];1524 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1525[label="xuu115 <= xuu117",fontsize=16,color="blue",shape="box"];4293[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 1747[label="",style="solid", color="blue", weight=3]; 4294[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 1748[label="",style="solid", color="blue", weight=3]; 4295[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 1749[label="",style="solid", color="blue", weight=3]; 4296[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 1750[label="",style="solid", color="blue", weight=3]; 4297[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 1751[label="",style="solid", color="blue", weight=3]; 4298[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 1752[label="",style="solid", color="blue", weight=3]; 4299[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 1753[label="",style="solid", color="blue", weight=3]; 4300[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 1754[label="",style="solid", color="blue", weight=3]; 4301[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 1755[label="",style="solid", color="blue", weight=3]; 4302[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 1756[label="",style="solid", color="blue", weight=3]; 4303[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 1757[label="",style="solid", color="blue", weight=3]; 4304[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 1758[label="",style="solid", color="blue", weight=3]; 4305[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 1759[label="",style="solid", color="blue", weight=3]; 4306[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 1760[label="",style="solid", color="blue", weight=3]; 1526[label="xuu114 == xuu116",fontsize=16,color="blue",shape="box"];4307[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 1761[label="",style="solid", color="blue", weight=3]; 4308[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 1762[label="",style="solid", color="blue", weight=3]; 4309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 1763[label="",style="solid", color="blue", weight=3]; 4310[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 1764[label="",style="solid", color="blue", weight=3]; 4311[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 1765[label="",style="solid", color="blue", weight=3]; 4312[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 1766[label="",style="solid", color="blue", weight=3]; 4313[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 1767[label="",style="solid", color="blue", weight=3]; 4314[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 1768[label="",style="solid", color="blue", weight=3]; 4315[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 1769[label="",style="solid", color="blue", weight=3]; 4316[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 1770[label="",style="solid", color="blue", weight=3]; 4317[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 1771[label="",style="solid", color="blue", weight=3]; 4318[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 1772[label="",style="solid", color="blue", weight=3]; 4319[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 1773[label="",style="solid", color="blue", weight=3]; 4320[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 1774[label="",style="solid", color="blue", weight=3]; 1527[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (False || xuu193)",fontsize=16,color="black",shape="box"];1527 -> 1775[label="",style="solid", color="black", weight=3]; 1528[label="compare1 (xuu188,xuu189) (xuu190,xuu191) (True || xuu193)",fontsize=16,color="black",shape="box"];1528 -> 1776[label="",style="solid", color="black", weight=3]; 1529 -> 2194[label="",style="dashed", color="red", weight=0]; 1529[label="primPlusInt (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43) (FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];1529 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1529 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1811 -> 408[label="",style="dashed", color="red", weight=0]; 1811[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1811 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1812[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="triangle"];1812 -> 1825[label="",style="solid", color="black", weight=3]; 1785[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];1785 -> 1826[label="",style="solid", color="black", weight=3]; 1786[label="FiniteMap.mkBalBranch6MkBalBranch4 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];1786 -> 1827[label="",style="solid", color="black", weight=3]; 2641[label="primPlusNat (Succ xuu21200) xuu2110",fontsize=16,color="burlywood",shape="box"];4321[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2641 -> 4321[label="",style="solid", color="burlywood", weight=9]; 4321 -> 2715[label="",style="solid", color="burlywood", weight=3]; 4322[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2641 -> 4322[label="",style="solid", color="burlywood", weight=9]; 4322 -> 2716[label="",style="solid", color="burlywood", weight=3]; 2642[label="primPlusNat Zero xuu2110",fontsize=16,color="burlywood",shape="box"];4323[label="xuu2110/Succ xuu21100",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 2717[label="",style="solid", color="burlywood", weight=3]; 4324[label="xuu2110/Zero",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 2718[label="",style="solid", color="burlywood", weight=3]; 2643[label="primMinusNat (Succ xuu21200) (Succ xuu21100)",fontsize=16,color="black",shape="box"];2643 -> 2719[label="",style="solid", color="black", weight=3]; 2644[label="primMinusNat (Succ xuu21200) Zero",fontsize=16,color="black",shape="box"];2644 -> 2720[label="",style="solid", color="black", weight=3]; 2645[label="primMinusNat Zero (Succ xuu21100)",fontsize=16,color="black",shape="box"];2645 -> 2721[label="",style="solid", color="black", weight=3]; 2646[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2646 -> 2722[label="",style="solid", color="black", weight=3]; 2647[label="xuu2110",fontsize=16,color="green",shape="box"];2648[label="xuu2120",fontsize=16,color="green",shape="box"];3749[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310 + FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3749 -> 3750[label="",style="solid", color="black", weight=3]; 2106[label="xuu201",fontsize=16,color="green",shape="box"];2107[label="xuu202",fontsize=16,color="green",shape="box"];1813 -> 408[label="",style="dashed", color="red", weight=0]; 1813[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1813 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1813 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1821[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 False",fontsize=16,color="black",shape="box"];1821 -> 1872[label="",style="solid", color="black", weight=3]; 1822[label="FiniteMap.mkBalBranch6MkBalBranch3 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];1822 -> 1873[label="",style="solid", color="black", weight=3]; 1548[label="error []",fontsize=16,color="red",shape="box"];1549[label="FiniteMap.mkBalBranch6MkBalBranch02 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];1549 -> 1831[label="",style="solid", color="black", weight=3]; 1550 -> 533[label="",style="dashed", color="red", weight=0]; 1550[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1550 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1551 -> 533[label="",style="dashed", color="red", weight=0]; 1551[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1551 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1552 -> 533[label="",style="dashed", color="red", weight=0]; 1552[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1552 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1553 -> 533[label="",style="dashed", color="red", weight=0]; 1553[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1553 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1554 -> 533[label="",style="dashed", color="red", weight=0]; 1554[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1554 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1555 -> 533[label="",style="dashed", color="red", weight=0]; 1555[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1555 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1556 -> 533[label="",style="dashed", color="red", weight=0]; 1556[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1556 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1557 -> 533[label="",style="dashed", color="red", weight=0]; 1557[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1557 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1558 -> 533[label="",style="dashed", color="red", weight=0]; 1558[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1558 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1559 -> 533[label="",style="dashed", color="red", weight=0]; 1559[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1559 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1560 -> 533[label="",style="dashed", color="red", weight=0]; 1560[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1560 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1561 -> 533[label="",style="dashed", color="red", weight=0]; 1561[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1561 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1562 -> 533[label="",style="dashed", color="red", weight=0]; 1562[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1562 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1563 -> 533[label="",style="dashed", color="red", weight=0]; 1563[label="compare xuu101 xuu104 == LT",fontsize=16,color="magenta"];1563 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1863[label="xuu102 < xuu105",fontsize=16,color="blue",shape="box"];4325[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 1874[label="",style="solid", color="blue", weight=3]; 4326[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 1875[label="",style="solid", color="blue", weight=3]; 4327[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 1876[label="",style="solid", color="blue", weight=3]; 4328[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 1877[label="",style="solid", color="blue", weight=3]; 4329[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 1878[label="",style="solid", color="blue", weight=3]; 4330[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 1879[label="",style="solid", color="blue", weight=3]; 4331[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 1880[label="",style="solid", color="blue", weight=3]; 4332[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 1881[label="",style="solid", color="blue", weight=3]; 4333[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 1882[label="",style="solid", color="blue", weight=3]; 4334[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4334[label="",style="solid", color="blue", weight=9]; 4334 -> 1883[label="",style="solid", color="blue", weight=3]; 4335[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4335[label="",style="solid", color="blue", weight=9]; 4335 -> 1884[label="",style="solid", color="blue", weight=3]; 4336[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4336[label="",style="solid", color="blue", weight=9]; 4336 -> 1885[label="",style="solid", color="blue", weight=3]; 4337[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4337[label="",style="solid", color="blue", weight=9]; 4337 -> 1886[label="",style="solid", color="blue", weight=3]; 4338[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1863 -> 4338[label="",style="solid", color="blue", weight=9]; 4338 -> 1887[label="",style="solid", color="blue", weight=3]; 1864 -> 1128[label="",style="dashed", color="red", weight=0]; 1864[label="xuu102 == xuu105 && xuu103 <= xuu106",fontsize=16,color="magenta"];1864 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1864 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1862[label="xuu208 || xuu209",fontsize=16,color="burlywood",shape="triangle"];4339[label="xuu208/False",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 1890[label="",style="solid", color="burlywood", weight=3]; 4340[label="xuu208/True",fontsize=10,color="white",style="solid",shape="box"];1862 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 1891[label="",style="solid", color="burlywood", weight=3]; 1566 -> 543[label="",style="dashed", color="red", weight=0]; 1566[label="xuu101 == xuu104",fontsize=16,color="magenta"];1566 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1567 -> 536[label="",style="dashed", color="red", weight=0]; 1567[label="xuu101 == xuu104",fontsize=16,color="magenta"];1567 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1568 -> 537[label="",style="dashed", color="red", weight=0]; 1568[label="xuu101 == xuu104",fontsize=16,color="magenta"];1568 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1569 -> 535[label="",style="dashed", color="red", weight=0]; 1569[label="xuu101 == xuu104",fontsize=16,color="magenta"];1569 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1570 -> 544[label="",style="dashed", color="red", weight=0]; 1570[label="xuu101 == xuu104",fontsize=16,color="magenta"];1570 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1571 -> 534[label="",style="dashed", color="red", weight=0]; 1571[label="xuu101 == xuu104",fontsize=16,color="magenta"];1571 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1572 -> 541[label="",style="dashed", color="red", weight=0]; 1572[label="xuu101 == xuu104",fontsize=16,color="magenta"];1572 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1573 -> 540[label="",style="dashed", color="red", weight=0]; 1573[label="xuu101 == xuu104",fontsize=16,color="magenta"];1573 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1574 -> 545[label="",style="dashed", color="red", weight=0]; 1574[label="xuu101 == xuu104",fontsize=16,color="magenta"];1574 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1575 -> 546[label="",style="dashed", color="red", weight=0]; 1575[label="xuu101 == xuu104",fontsize=16,color="magenta"];1575 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1576 -> 542[label="",style="dashed", color="red", weight=0]; 1576[label="xuu101 == xuu104",fontsize=16,color="magenta"];1576 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1577 -> 538[label="",style="dashed", color="red", weight=0]; 1577[label="xuu101 == xuu104",fontsize=16,color="magenta"];1577 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1578 -> 539[label="",style="dashed", color="red", weight=0]; 1578[label="xuu101 == xuu104",fontsize=16,color="magenta"];1578 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1579 -> 533[label="",style="dashed", color="red", weight=0]; 1579[label="xuu101 == xuu104",fontsize=16,color="magenta"];1579 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1580[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) xuu180",fontsize=16,color="burlywood",shape="triangle"];4341[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 1920[label="",style="solid", color="burlywood", weight=3]; 4342[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 1921[label="",style="solid", color="burlywood", weight=3]; 1581 -> 1580[label="",style="dashed", color="red", weight=0]; 1581[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="magenta"];1581 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1582[label="primMulNat (Succ xuu400000) (Succ xuu5000100)",fontsize=16,color="black",shape="box"];1582 -> 1923[label="",style="solid", color="black", weight=3]; 1583[label="primMulNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];1583 -> 1924[label="",style="solid", color="black", weight=3]; 1584[label="primMulNat Zero (Succ xuu5000100)",fontsize=16,color="black",shape="box"];1584 -> 1925[label="",style="solid", color="black", weight=3]; 1585[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1585 -> 1926[label="",style="solid", color="black", weight=3]; 1137[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4343[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4343[label="",style="solid", color="blue", weight=9]; 4343 -> 1927[label="",style="solid", color="blue", weight=3]; 4344[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4344[label="",style="solid", color="blue", weight=9]; 4344 -> 1928[label="",style="solid", color="blue", weight=3]; 1138[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4345[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 4345[label="",style="solid", color="blue", weight=9]; 4345 -> 1929[label="",style="solid", color="blue", weight=3]; 4346[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 4346[label="",style="solid", color="blue", weight=9]; 4346 -> 1930[label="",style="solid", color="blue", weight=3]; 1139 -> 1128[label="",style="dashed", color="red", weight=0]; 1139[label="xuu500001 == xuu40001 && xuu500002 == xuu40002",fontsize=16,color="magenta"];1139 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1140[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4347[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4347[label="",style="solid", color="blue", weight=9]; 4347 -> 1933[label="",style="solid", color="blue", weight=3]; 4348[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4348[label="",style="solid", color="blue", weight=9]; 4348 -> 1934[label="",style="solid", color="blue", weight=3]; 4349[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 1935[label="",style="solid", color="blue", weight=3]; 4350[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 1936[label="",style="solid", color="blue", weight=3]; 4351[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 1937[label="",style="solid", color="blue", weight=3]; 4352[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 1938[label="",style="solid", color="blue", weight=3]; 4353[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4353[label="",style="solid", color="blue", weight=9]; 4353 -> 1939[label="",style="solid", color="blue", weight=3]; 4354[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 1940[label="",style="solid", color="blue", weight=3]; 4355[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 1941[label="",style="solid", color="blue", weight=3]; 4356[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 1942[label="",style="solid", color="blue", weight=3]; 4357[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 1943[label="",style="solid", color="blue", weight=3]; 4358[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 1944[label="",style="solid", color="blue", weight=3]; 4359[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 1945[label="",style="solid", color="blue", weight=3]; 4360[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 1946[label="",style="solid", color="blue", weight=3]; 1586[label="primEqInt (Pos (Succ xuu5000000)) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4361[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4361[label="",style="solid", color="burlywood", weight=9]; 4361 -> 1947[label="",style="solid", color="burlywood", weight=3]; 4362[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1586 -> 4362[label="",style="solid", color="burlywood", weight=9]; 4362 -> 1948[label="",style="solid", color="burlywood", weight=3]; 1587[label="primEqInt (Pos (Succ xuu5000000)) (Neg xuu40000)",fontsize=16,color="black",shape="box"];1587 -> 1949[label="",style="solid", color="black", weight=3]; 1588[label="primEqInt (Pos Zero) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4363[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1588 -> 4363[label="",style="solid", color="burlywood", weight=9]; 4363 -> 1950[label="",style="solid", color="burlywood", weight=3]; 4364[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1588 -> 4364[label="",style="solid", color="burlywood", weight=9]; 4364 -> 1951[label="",style="solid", color="burlywood", weight=3]; 1589[label="primEqInt (Pos Zero) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4365[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4365[label="",style="solid", color="burlywood", weight=9]; 4365 -> 1952[label="",style="solid", color="burlywood", weight=3]; 4366[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1589 -> 4366[label="",style="solid", color="burlywood", weight=9]; 4366 -> 1953[label="",style="solid", color="burlywood", weight=3]; 1590[label="primEqInt (Neg (Succ xuu5000000)) (Pos xuu40000)",fontsize=16,color="black",shape="box"];1590 -> 1954[label="",style="solid", color="black", weight=3]; 1591[label="primEqInt (Neg (Succ xuu5000000)) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4367[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1591 -> 4367[label="",style="solid", color="burlywood", weight=9]; 4367 -> 1955[label="",style="solid", color="burlywood", weight=3]; 4368[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1591 -> 4368[label="",style="solid", color="burlywood", weight=9]; 4368 -> 1956[label="",style="solid", color="burlywood", weight=3]; 1592[label="primEqInt (Neg Zero) (Pos xuu40000)",fontsize=16,color="burlywood",shape="box"];4369[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1592 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 1957[label="",style="solid", color="burlywood", weight=3]; 4370[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1592 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 1958[label="",style="solid", color="burlywood", weight=3]; 1593[label="primEqInt (Neg Zero) (Neg xuu40000)",fontsize=16,color="burlywood",shape="box"];4371[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];1593 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 1959[label="",style="solid", color="burlywood", weight=3]; 4372[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1593 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 1960[label="",style="solid", color="burlywood", weight=3]; 1594[label="xuu40000",fontsize=16,color="green",shape="box"];1595[label="xuu500000",fontsize=16,color="green",shape="box"];1141[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4373[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 1961[label="",style="solid", color="blue", weight=3]; 4374[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 1962[label="",style="solid", color="blue", weight=3]; 4375[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 1963[label="",style="solid", color="blue", weight=3]; 4376[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 1964[label="",style="solid", color="blue", weight=3]; 4377[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 1965[label="",style="solid", color="blue", weight=3]; 4378[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4378[label="",style="solid", color="blue", weight=9]; 4378 -> 1966[label="",style="solid", color="blue", weight=3]; 4379[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 1967[label="",style="solid", color="blue", weight=3]; 4380[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 1968[label="",style="solid", color="blue", weight=3]; 4381[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 1969[label="",style="solid", color="blue", weight=3]; 4382[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 1970[label="",style="solid", color="blue", weight=3]; 4383[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 1971[label="",style="solid", color="blue", weight=3]; 4384[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 1972[label="",style="solid", color="blue", weight=3]; 4385[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 1973[label="",style="solid", color="blue", weight=3]; 4386[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1141 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 1974[label="",style="solid", color="blue", weight=3]; 1142[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4387[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 1975[label="",style="solid", color="blue", weight=3]; 4388[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 1976[label="",style="solid", color="blue", weight=3]; 4389[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 1977[label="",style="solid", color="blue", weight=3]; 4390[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 1978[label="",style="solid", color="blue", weight=3]; 4391[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 1979[label="",style="solid", color="blue", weight=3]; 4392[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 1980[label="",style="solid", color="blue", weight=3]; 4393[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 1981[label="",style="solid", color="blue", weight=3]; 4394[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4394[label="",style="solid", color="blue", weight=9]; 4394 -> 1982[label="",style="solid", color="blue", weight=3]; 4395[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 1983[label="",style="solid", color="blue", weight=3]; 4396[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 1984[label="",style="solid", color="blue", weight=3]; 4397[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 1985[label="",style="solid", color="blue", weight=3]; 4398[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 1986[label="",style="solid", color="blue", weight=3]; 4399[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 1987[label="",style="solid", color="blue", weight=3]; 4400[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 1988[label="",style="solid", color="blue", weight=3]; 1596 -> 537[label="",style="dashed", color="red", weight=0]; 1596[label="xuu500000 * xuu40001 == xuu500001 * xuu40000",fontsize=16,color="magenta"];1596 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1597 -> 533[label="",style="dashed", color="red", weight=0]; 1597[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1597 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1598 -> 534[label="",style="dashed", color="red", weight=0]; 1598[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1598 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1599 -> 535[label="",style="dashed", color="red", weight=0]; 1599[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1599 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1600 -> 536[label="",style="dashed", color="red", weight=0]; 1600[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1600 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1601 -> 537[label="",style="dashed", color="red", weight=0]; 1601[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1601 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1601 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1602 -> 538[label="",style="dashed", color="red", weight=0]; 1602[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1602 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1602 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1603 -> 539[label="",style="dashed", color="red", weight=0]; 1603[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1603 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1603 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1604 -> 540[label="",style="dashed", color="red", weight=0]; 1604[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1604 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1604 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1605 -> 541[label="",style="dashed", color="red", weight=0]; 1605[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1605 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1605 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1606 -> 542[label="",style="dashed", color="red", weight=0]; 1606[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1606 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1606 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1607 -> 543[label="",style="dashed", color="red", weight=0]; 1607[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1607 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1607 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1608 -> 544[label="",style="dashed", color="red", weight=0]; 1608[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1608 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1608 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1609 -> 545[label="",style="dashed", color="red", weight=0]; 1609[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1609 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1609 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1610 -> 546[label="",style="dashed", color="red", weight=0]; 1610[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1610 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1610 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1143 -> 543[label="",style="dashed", color="red", weight=0]; 1143[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1143 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1143 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1144[label="xuu500000 == xuu40000",fontsize=16,color="blue",shape="box"];4401[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2021[label="",style="solid", color="blue", weight=3]; 4402[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2022[label="",style="solid", color="blue", weight=3]; 4403[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2023[label="",style="solid", color="blue", weight=3]; 4404[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2024[label="",style="solid", color="blue", weight=3]; 4405[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2025[label="",style="solid", color="blue", weight=3]; 4406[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2026[label="",style="solid", color="blue", weight=3]; 4407[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2027[label="",style="solid", color="blue", weight=3]; 4408[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2028[label="",style="solid", color="blue", weight=3]; 4409[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2029[label="",style="solid", color="blue", weight=3]; 4410[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2030[label="",style="solid", color="blue", weight=3]; 4411[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2031[label="",style="solid", color="blue", weight=3]; 4412[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2032[label="",style="solid", color="blue", weight=3]; 4413[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2033[label="",style="solid", color="blue", weight=3]; 4414[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1144 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2034[label="",style="solid", color="blue", weight=3]; 1611 -> 537[label="",style="dashed", color="red", weight=0]; 1611[label="xuu500000 * xuu40001 == xuu500001 * xuu40000",fontsize=16,color="magenta"];1611 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1611 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1612[label="primEqNat xuu500000 xuu40000",fontsize=16,color="burlywood",shape="triangle"];4415[label="xuu500000/Succ xuu5000000",fontsize=10,color="white",style="solid",shape="box"];1612 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 2037[label="",style="solid", color="burlywood", weight=3]; 4416[label="xuu500000/Zero",fontsize=10,color="white",style="solid",shape="box"];1612 -> 4416[label="",style="solid", color="burlywood", weight=9]; 4416 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1613 -> 533[label="",style="dashed", color="red", weight=0]; 1613[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1613 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1613 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1614 -> 534[label="",style="dashed", color="red", weight=0]; 1614[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1614 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1614 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1615 -> 535[label="",style="dashed", color="red", weight=0]; 1615[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1615 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1615 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1616 -> 536[label="",style="dashed", color="red", weight=0]; 1616[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1616 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1616 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1617 -> 537[label="",style="dashed", color="red", weight=0]; 1617[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1617 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1617 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1618 -> 538[label="",style="dashed", color="red", weight=0]; 1618[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1618 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1618 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1619 -> 539[label="",style="dashed", color="red", weight=0]; 1619[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1619 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1619 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1620 -> 540[label="",style="dashed", color="red", weight=0]; 1620[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1620 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1620 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1621 -> 541[label="",style="dashed", color="red", weight=0]; 1621[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1621 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1621 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1622 -> 542[label="",style="dashed", color="red", weight=0]; 1622[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1622 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1622 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1623 -> 543[label="",style="dashed", color="red", weight=0]; 1623[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1623 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1623 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1624 -> 544[label="",style="dashed", color="red", weight=0]; 1624[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1624 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1624 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1625 -> 545[label="",style="dashed", color="red", weight=0]; 1625[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1625 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1625 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1626 -> 546[label="",style="dashed", color="red", weight=0]; 1626[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1626 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1626 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1627 -> 533[label="",style="dashed", color="red", weight=0]; 1627[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1627 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1627 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1628 -> 534[label="",style="dashed", color="red", weight=0]; 1628[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1628 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1628 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1629 -> 535[label="",style="dashed", color="red", weight=0]; 1629[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1629 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1629 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1630 -> 536[label="",style="dashed", color="red", weight=0]; 1630[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1630 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1630 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1631 -> 537[label="",style="dashed", color="red", weight=0]; 1631[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1631 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1631 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1632 -> 538[label="",style="dashed", color="red", weight=0]; 1632[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1632 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1632 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1633 -> 539[label="",style="dashed", color="red", weight=0]; 1633[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1633 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1633 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1634 -> 540[label="",style="dashed", color="red", weight=0]; 1634[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1634 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1634 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1635 -> 541[label="",style="dashed", color="red", weight=0]; 1635[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1635 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1635 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1636 -> 542[label="",style="dashed", color="red", weight=0]; 1636[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1636 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1636 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1637 -> 543[label="",style="dashed", color="red", weight=0]; 1637[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1637 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1637 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1638 -> 544[label="",style="dashed", color="red", weight=0]; 1638[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1638 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1638 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1639 -> 545[label="",style="dashed", color="red", weight=0]; 1639[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1639 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1639 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1640 -> 546[label="",style="dashed", color="red", weight=0]; 1640[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1640 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1640 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1641 -> 2095[label="",style="dashed", color="red", weight=0]; 1641[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1641 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1642 -> 2095[label="",style="dashed", color="red", weight=0]; 1642[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1642 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1643 -> 2095[label="",style="dashed", color="red", weight=0]; 1643[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1643 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1644[label="(xuu620,xuu621,xuu622) <= xuu63",fontsize=16,color="burlywood",shape="box"];4417[label="xuu63/(xuu630,xuu631,xuu632)",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 2109[label="",style="solid", color="burlywood", weight=3]; 1645 -> 2095[label="",style="dashed", color="red", weight=0]; 1645[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1645 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1646 -> 2095[label="",style="dashed", color="red", weight=0]; 1646[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1646 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1647 -> 2095[label="",style="dashed", color="red", weight=0]; 1647[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1647 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1648[label="False <= xuu63",fontsize=16,color="burlywood",shape="box"];4418[label="xuu63/False",fontsize=10,color="white",style="solid",shape="box"];1648 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 2110[label="",style="solid", color="burlywood", weight=3]; 4419[label="xuu63/True",fontsize=10,color="white",style="solid",shape="box"];1648 -> 4419[label="",style="solid", color="burlywood", weight=9]; 4419 -> 2111[label="",style="solid", color="burlywood", weight=3]; 1649[label="True <= xuu63",fontsize=16,color="burlywood",shape="box"];4420[label="xuu63/False",fontsize=10,color="white",style="solid",shape="box"];1649 -> 4420[label="",style="solid", color="burlywood", weight=9]; 4420 -> 2112[label="",style="solid", color="burlywood", weight=3]; 4421[label="xuu63/True",fontsize=10,color="white",style="solid",shape="box"];1649 -> 4421[label="",style="solid", color="burlywood", weight=9]; 4421 -> 2113[label="",style="solid", color="burlywood", weight=3]; 1650 -> 2095[label="",style="dashed", color="red", weight=0]; 1650[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1650 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1651[label="Left xuu620 <= xuu63",fontsize=16,color="burlywood",shape="box"];4422[label="xuu63/Left xuu630",fontsize=10,color="white",style="solid",shape="box"];1651 -> 4422[label="",style="solid", color="burlywood", weight=9]; 4422 -> 2114[label="",style="solid", color="burlywood", weight=3]; 4423[label="xuu63/Right xuu630",fontsize=10,color="white",style="solid",shape="box"];1651 -> 4423[label="",style="solid", color="burlywood", weight=9]; 4423 -> 2115[label="",style="solid", color="burlywood", weight=3]; 1652[label="Right xuu620 <= xuu63",fontsize=16,color="burlywood",shape="box"];4424[label="xuu63/Left xuu630",fontsize=10,color="white",style="solid",shape="box"];1652 -> 4424[label="",style="solid", color="burlywood", weight=9]; 4424 -> 2116[label="",style="solid", color="burlywood", weight=3]; 4425[label="xuu63/Right xuu630",fontsize=10,color="white",style="solid",shape="box"];1652 -> 4425[label="",style="solid", color="burlywood", weight=9]; 4425 -> 2117[label="",style="solid", color="burlywood", weight=3]; 1653[label="Nothing <= xuu63",fontsize=16,color="burlywood",shape="box"];4426[label="xuu63/Nothing",fontsize=10,color="white",style="solid",shape="box"];1653 -> 4426[label="",style="solid", color="burlywood", weight=9]; 4426 -> 2118[label="",style="solid", color="burlywood", weight=3]; 4427[label="xuu63/Just xuu630",fontsize=10,color="white",style="solid",shape="box"];1653 -> 4427[label="",style="solid", color="burlywood", weight=9]; 4427 -> 2119[label="",style="solid", color="burlywood", weight=3]; 1654[label="Just xuu620 <= xuu63",fontsize=16,color="burlywood",shape="box"];4428[label="xuu63/Nothing",fontsize=10,color="white",style="solid",shape="box"];1654 -> 4428[label="",style="solid", color="burlywood", weight=9]; 4428 -> 2120[label="",style="solid", color="burlywood", weight=3]; 4429[label="xuu63/Just xuu630",fontsize=10,color="white",style="solid",shape="box"];1654 -> 4429[label="",style="solid", color="burlywood", weight=9]; 4429 -> 2121[label="",style="solid", color="burlywood", weight=3]; 1655 -> 2095[label="",style="dashed", color="red", weight=0]; 1655[label="compare xuu62 xuu63 /= GT",fontsize=16,color="magenta"];1655 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1656[label="(xuu620,xuu621) <= xuu63",fontsize=16,color="burlywood",shape="box"];4430[label="xuu63/(xuu630,xuu631)",fontsize=10,color="white",style="solid",shape="box"];1656 -> 4430[label="",style="solid", color="burlywood", weight=9]; 4430 -> 2122[label="",style="solid", color="burlywood", weight=3]; 1657[label="LT <= xuu63",fontsize=16,color="burlywood",shape="box"];4431[label="xuu63/LT",fontsize=10,color="white",style="solid",shape="box"];1657 -> 4431[label="",style="solid", color="burlywood", weight=9]; 4431 -> 2123[label="",style="solid", color="burlywood", weight=3]; 4432[label="xuu63/EQ",fontsize=10,color="white",style="solid",shape="box"];1657 -> 4432[label="",style="solid", color="burlywood", weight=9]; 4432 -> 2124[label="",style="solid", color="burlywood", weight=3]; 4433[label="xuu63/GT",fontsize=10,color="white",style="solid",shape="box"];1657 -> 4433[label="",style="solid", color="burlywood", weight=9]; 4433 -> 2125[label="",style="solid", color="burlywood", weight=3]; 1658[label="EQ <= xuu63",fontsize=16,color="burlywood",shape="box"];4434[label="xuu63/LT",fontsize=10,color="white",style="solid",shape="box"];1658 -> 4434[label="",style="solid", color="burlywood", weight=9]; 4434 -> 2126[label="",style="solid", color="burlywood", weight=3]; 4435[label="xuu63/EQ",fontsize=10,color="white",style="solid",shape="box"];1658 -> 4435[label="",style="solid", color="burlywood", weight=9]; 4435 -> 2127[label="",style="solid", color="burlywood", weight=3]; 4436[label="xuu63/GT",fontsize=10,color="white",style="solid",shape="box"];1658 -> 4436[label="",style="solid", color="burlywood", weight=9]; 4436 -> 2128[label="",style="solid", color="burlywood", weight=3]; 1659[label="GT <= xuu63",fontsize=16,color="burlywood",shape="box"];4437[label="xuu63/LT",fontsize=10,color="white",style="solid",shape="box"];1659 -> 4437[label="",style="solid", color="burlywood", weight=9]; 4437 -> 2129[label="",style="solid", color="burlywood", weight=3]; 4438[label="xuu63/EQ",fontsize=10,color="white",style="solid",shape="box"];1659 -> 4438[label="",style="solid", color="burlywood", weight=9]; 4438 -> 2130[label="",style="solid", color="burlywood", weight=3]; 4439[label="xuu63/GT",fontsize=10,color="white",style="solid",shape="box"];1659 -> 4439[label="",style="solid", color="burlywood", weight=9]; 4439 -> 2131[label="",style="solid", color="burlywood", weight=3]; 1660[label="compare0 (Left xuu140) (Left xuu141) True",fontsize=16,color="black",shape="box"];1660 -> 2132[label="",style="solid", color="black", weight=3]; 1661[label="xuu69",fontsize=16,color="green",shape="box"];1662[label="xuu70",fontsize=16,color="green",shape="box"];1663[label="xuu69",fontsize=16,color="green",shape="box"];1664[label="xuu70",fontsize=16,color="green",shape="box"];1665[label="xuu69",fontsize=16,color="green",shape="box"];1666[label="xuu70",fontsize=16,color="green",shape="box"];1667[label="xuu69",fontsize=16,color="green",shape="box"];1668[label="xuu70",fontsize=16,color="green",shape="box"];1669[label="xuu69",fontsize=16,color="green",shape="box"];1670[label="xuu70",fontsize=16,color="green",shape="box"];1671[label="xuu69",fontsize=16,color="green",shape="box"];1672[label="xuu70",fontsize=16,color="green",shape="box"];1673[label="xuu69",fontsize=16,color="green",shape="box"];1674[label="xuu70",fontsize=16,color="green",shape="box"];1675[label="xuu69",fontsize=16,color="green",shape="box"];1676[label="xuu70",fontsize=16,color="green",shape="box"];1677[label="xuu69",fontsize=16,color="green",shape="box"];1678[label="xuu70",fontsize=16,color="green",shape="box"];1679[label="xuu69",fontsize=16,color="green",shape="box"];1680[label="xuu70",fontsize=16,color="green",shape="box"];1681[label="xuu69",fontsize=16,color="green",shape="box"];1682[label="xuu70",fontsize=16,color="green",shape="box"];1683[label="xuu69",fontsize=16,color="green",shape="box"];1684[label="xuu70",fontsize=16,color="green",shape="box"];1685[label="xuu69",fontsize=16,color="green",shape="box"];1686[label="xuu70",fontsize=16,color="green",shape="box"];1687[label="xuu69",fontsize=16,color="green",shape="box"];1688[label="xuu70",fontsize=16,color="green",shape="box"];1689[label="compare0 (Right xuu147) (Right xuu148) True",fontsize=16,color="black",shape="box"];1689 -> 2133[label="",style="solid", color="black", weight=3]; 1690[label="xuu76",fontsize=16,color="green",shape="box"];1691[label="xuu77",fontsize=16,color="green",shape="box"];1692[label="xuu76",fontsize=16,color="green",shape="box"];1693[label="xuu77",fontsize=16,color="green",shape="box"];1694[label="xuu76",fontsize=16,color="green",shape="box"];1695[label="xuu77",fontsize=16,color="green",shape="box"];1696[label="xuu76",fontsize=16,color="green",shape="box"];1697[label="xuu77",fontsize=16,color="green",shape="box"];1698[label="xuu76",fontsize=16,color="green",shape="box"];1699[label="xuu77",fontsize=16,color="green",shape="box"];1700[label="xuu76",fontsize=16,color="green",shape="box"];1701[label="xuu77",fontsize=16,color="green",shape="box"];1702[label="xuu76",fontsize=16,color="green",shape="box"];1703[label="xuu77",fontsize=16,color="green",shape="box"];1704[label="xuu76",fontsize=16,color="green",shape="box"];1705[label="xuu77",fontsize=16,color="green",shape="box"];1706[label="xuu76",fontsize=16,color="green",shape="box"];1707[label="xuu77",fontsize=16,color="green",shape="box"];1708[label="xuu76",fontsize=16,color="green",shape="box"];1709[label="xuu77",fontsize=16,color="green",shape="box"];1710[label="xuu76",fontsize=16,color="green",shape="box"];1711[label="xuu77",fontsize=16,color="green",shape="box"];1712[label="xuu76",fontsize=16,color="green",shape="box"];1713[label="xuu77",fontsize=16,color="green",shape="box"];1714[label="xuu76",fontsize=16,color="green",shape="box"];1715[label="xuu77",fontsize=16,color="green",shape="box"];1716[label="xuu76",fontsize=16,color="green",shape="box"];1717[label="xuu77",fontsize=16,color="green",shape="box"];1718[label="compare0 (Just xuu156) (Just xuu157) True",fontsize=16,color="black",shape="box"];1718 -> 2134[label="",style="solid", color="black", weight=3]; 1719[label="xuu114",fontsize=16,color="green",shape="box"];1720[label="xuu116",fontsize=16,color="green",shape="box"];1721[label="xuu114",fontsize=16,color="green",shape="box"];1722[label="xuu116",fontsize=16,color="green",shape="box"];1723[label="xuu114",fontsize=16,color="green",shape="box"];1724[label="xuu116",fontsize=16,color="green",shape="box"];1725[label="xuu114",fontsize=16,color="green",shape="box"];1726[label="xuu116",fontsize=16,color="green",shape="box"];1727[label="xuu114",fontsize=16,color="green",shape="box"];1728[label="xuu116",fontsize=16,color="green",shape="box"];1729[label="xuu114",fontsize=16,color="green",shape="box"];1730[label="xuu116",fontsize=16,color="green",shape="box"];1731[label="xuu114",fontsize=16,color="green",shape="box"];1732[label="xuu116",fontsize=16,color="green",shape="box"];1733[label="xuu114",fontsize=16,color="green",shape="box"];1734[label="xuu116",fontsize=16,color="green",shape="box"];1735[label="xuu114",fontsize=16,color="green",shape="box"];1736[label="xuu116",fontsize=16,color="green",shape="box"];1737[label="xuu114",fontsize=16,color="green",shape="box"];1738[label="xuu116",fontsize=16,color="green",shape="box"];1739[label="xuu114",fontsize=16,color="green",shape="box"];1740[label="xuu116",fontsize=16,color="green",shape="box"];1741[label="xuu114",fontsize=16,color="green",shape="box"];1742[label="xuu116",fontsize=16,color="green",shape="box"];1743[label="xuu114",fontsize=16,color="green",shape="box"];1744[label="xuu116",fontsize=16,color="green",shape="box"];1745[label="xuu114",fontsize=16,color="green",shape="box"];1746[label="xuu116",fontsize=16,color="green",shape="box"];1747 -> 1448[label="",style="dashed", color="red", weight=0]; 1747[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1747 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1747 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1449[label="",style="dashed", color="red", weight=0]; 1748[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1748 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1748 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1450[label="",style="dashed", color="red", weight=0]; 1749[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1749 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1749 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1451[label="",style="dashed", color="red", weight=0]; 1750[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1750 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1750 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1452[label="",style="dashed", color="red", weight=0]; 1751[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1751 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1751 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1453[label="",style="dashed", color="red", weight=0]; 1752[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1752 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1752 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1753 -> 1454[label="",style="dashed", color="red", weight=0]; 1753[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1753 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1753 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1455[label="",style="dashed", color="red", weight=0]; 1754[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1754 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1754 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1456[label="",style="dashed", color="red", weight=0]; 1755[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1755 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1755 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1457[label="",style="dashed", color="red", weight=0]; 1756[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1756 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1756 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1458[label="",style="dashed", color="red", weight=0]; 1757[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1757 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1757 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1459[label="",style="dashed", color="red", weight=0]; 1758[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1758 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1758 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1460[label="",style="dashed", color="red", weight=0]; 1759[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1759 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1759 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1461[label="",style="dashed", color="red", weight=0]; 1760[label="xuu115 <= xuu117",fontsize=16,color="magenta"];1760 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1760 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1761 -> 543[label="",style="dashed", color="red", weight=0]; 1761[label="xuu114 == xuu116",fontsize=16,color="magenta"];1761 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1762 -> 536[label="",style="dashed", color="red", weight=0]; 1762[label="xuu114 == xuu116",fontsize=16,color="magenta"];1762 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1762 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1763 -> 537[label="",style="dashed", color="red", weight=0]; 1763[label="xuu114 == xuu116",fontsize=16,color="magenta"];1763 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1763 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1764 -> 535[label="",style="dashed", color="red", weight=0]; 1764[label="xuu114 == xuu116",fontsize=16,color="magenta"];1764 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1764 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1765 -> 544[label="",style="dashed", color="red", weight=0]; 1765[label="xuu114 == xuu116",fontsize=16,color="magenta"];1765 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1765 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1766 -> 534[label="",style="dashed", color="red", weight=0]; 1766[label="xuu114 == xuu116",fontsize=16,color="magenta"];1766 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1766 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1767 -> 541[label="",style="dashed", color="red", weight=0]; 1767[label="xuu114 == xuu116",fontsize=16,color="magenta"];1767 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1767 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1768 -> 540[label="",style="dashed", color="red", weight=0]; 1768[label="xuu114 == xuu116",fontsize=16,color="magenta"];1768 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1768 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1769 -> 545[label="",style="dashed", color="red", weight=0]; 1769[label="xuu114 == xuu116",fontsize=16,color="magenta"];1769 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1770 -> 546[label="",style="dashed", color="red", weight=0]; 1770[label="xuu114 == xuu116",fontsize=16,color="magenta"];1770 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1771 -> 542[label="",style="dashed", color="red", weight=0]; 1771[label="xuu114 == xuu116",fontsize=16,color="magenta"];1771 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1772 -> 538[label="",style="dashed", color="red", weight=0]; 1772[label="xuu114 == xuu116",fontsize=16,color="magenta"];1772 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1773 -> 539[label="",style="dashed", color="red", weight=0]; 1773[label="xuu114 == xuu116",fontsize=16,color="magenta"];1773 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1774 -> 533[label="",style="dashed", color="red", weight=0]; 1774[label="xuu114 == xuu116",fontsize=16,color="magenta"];1774 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1775[label="compare1 (xuu188,xuu189) (xuu190,xuu191) xuu193",fontsize=16,color="burlywood",shape="triangle"];4440[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];1775 -> 4440[label="",style="solid", color="burlywood", weight=9]; 4440 -> 2191[label="",style="solid", color="burlywood", weight=3]; 4441[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];1775 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 2192[label="",style="solid", color="burlywood", weight=3]; 1776 -> 1775[label="",style="dashed", color="red", weight=0]; 1776[label="compare1 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="magenta"];1776 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2209[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="black",shape="triangle"];2209 -> 2231[label="",style="solid", color="black", weight=3]; 2210 -> 1812[label="",style="dashed", color="red", weight=0]; 2210[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1823 -> 2209[label="",style="dashed", color="red", weight=0]; 1823[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];1824 -> 1818[label="",style="dashed", color="red", weight=0]; 1824[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1825 -> 1819[label="",style="dashed", color="red", weight=0]; 1825[label="FiniteMap.sizeFM xuu41",fontsize=16,color="magenta"];1825 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1826 -> 2233[label="",style="dashed", color="red", weight=0]; 1826[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 (FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43)",fontsize=16,color="magenta"];1826 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1827[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 xuu41 xuu43 xuu43 xuu41 xuu41",fontsize=16,color="burlywood",shape="box"];4442[label="xuu41/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 2239[label="",style="solid", color="burlywood", weight=3]; 4443[label="xuu41/FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414",fontsize=10,color="white",style="solid",shape="box"];1827 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 2240[label="",style="solid", color="burlywood", weight=3]; 2715[label="primPlusNat (Succ xuu21200) (Succ xuu21100)",fontsize=16,color="black",shape="box"];2715 -> 2794[label="",style="solid", color="black", weight=3]; 2716[label="primPlusNat (Succ xuu21200) Zero",fontsize=16,color="black",shape="box"];2716 -> 2795[label="",style="solid", color="black", weight=3]; 2717[label="primPlusNat Zero (Succ xuu21100)",fontsize=16,color="black",shape="box"];2717 -> 2796[label="",style="solid", color="black", weight=3]; 2718[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2718 -> 2797[label="",style="solid", color="black", weight=3]; 2719 -> 2250[label="",style="dashed", color="red", weight=0]; 2719[label="primMinusNat xuu21200 xuu21100",fontsize=16,color="magenta"];2719 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2720[label="Pos (Succ xuu21200)",fontsize=16,color="green",shape="box"];2721[label="Neg (Succ xuu21100)",fontsize=16,color="green",shape="box"];2722[label="Pos Zero",fontsize=16,color="green",shape="box"];3750 -> 2194[label="",style="dashed", color="red", weight=0]; 3750[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310) (FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310)",fontsize=16,color="magenta"];3750 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3750 -> 3752[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1808[label="",style="dashed", color="red", weight=0]; 1828[label="FiniteMap.mkBalBranch6Size_r (xuu400 : xuu401) xuu41 xuu44 xuu29",fontsize=16,color="magenta"];1829 -> 1818[label="",style="dashed", color="red", weight=0]; 1829[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1872[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 otherwise",fontsize=16,color="black",shape="box"];1872 -> 2244[label="",style="solid", color="black", weight=3]; 1873[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 xuu29 xuu29 xuu44 xuu29",fontsize=16,color="burlywood",shape="box"];4444[label="xuu29/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1873 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 2245[label="",style="solid", color="burlywood", weight=3]; 4445[label="xuu29/FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294",fontsize=10,color="white",style="solid",shape="box"];1873 -> 4445[label="",style="solid", color="burlywood", weight=9]; 4445 -> 2246[label="",style="solid", color="burlywood", weight=3]; 1831 -> 2247[label="",style="dashed", color="red", weight=0]; 1831[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 (FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444)",fontsize=16,color="magenta"];1831 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1832[label="LT",fontsize=16,color="green",shape="box"];1833 -> 167[label="",style="dashed", color="red", weight=0]; 1833[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1833 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1833 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1834[label="LT",fontsize=16,color="green",shape="box"];1835 -> 168[label="",style="dashed", color="red", weight=0]; 1835[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1835 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1835 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1836[label="LT",fontsize=16,color="green",shape="box"];1837 -> 169[label="",style="dashed", color="red", weight=0]; 1837[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1837 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1837 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1838[label="LT",fontsize=16,color="green",shape="box"];1839 -> 170[label="",style="dashed", color="red", weight=0]; 1839[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1839 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1839 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1840[label="LT",fontsize=16,color="green",shape="box"];1841 -> 171[label="",style="dashed", color="red", weight=0]; 1841[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1841 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1841 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1842[label="LT",fontsize=16,color="green",shape="box"];1843 -> 172[label="",style="dashed", color="red", weight=0]; 1843[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1843 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1843 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1844[label="LT",fontsize=16,color="green",shape="box"];1845 -> 173[label="",style="dashed", color="red", weight=0]; 1845[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1845 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1845 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1846[label="LT",fontsize=16,color="green",shape="box"];1847 -> 174[label="",style="dashed", color="red", weight=0]; 1847[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1847 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1847 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1848[label="LT",fontsize=16,color="green",shape="box"];1849 -> 175[label="",style="dashed", color="red", weight=0]; 1849[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1849 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1849 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1850[label="LT",fontsize=16,color="green",shape="box"];1851 -> 176[label="",style="dashed", color="red", weight=0]; 1851[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1851 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1851 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1852[label="LT",fontsize=16,color="green",shape="box"];1853 -> 177[label="",style="dashed", color="red", weight=0]; 1853[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1853 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1853 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1854[label="LT",fontsize=16,color="green",shape="box"];1855 -> 178[label="",style="dashed", color="red", weight=0]; 1855[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1855 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1855 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1856[label="LT",fontsize=16,color="green",shape="box"];1857 -> 179[label="",style="dashed", color="red", weight=0]; 1857[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1857 -> 2277[label="",style="dashed", color="magenta", weight=3]; 1857 -> 2278[label="",style="dashed", color="magenta", weight=3]; 1858[label="LT",fontsize=16,color="green",shape="box"];1859 -> 180[label="",style="dashed", color="red", weight=0]; 1859[label="compare xuu101 xuu104",fontsize=16,color="magenta"];1859 -> 2279[label="",style="dashed", color="magenta", weight=3]; 1859 -> 2280[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1424[label="",style="dashed", color="red", weight=0]; 1874[label="xuu102 < xuu105",fontsize=16,color="magenta"];1874 -> 2281[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2282[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1425[label="",style="dashed", color="red", weight=0]; 1875[label="xuu102 < xuu105",fontsize=16,color="magenta"];1875 -> 2283[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2284[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1426[label="",style="dashed", color="red", weight=0]; 1876[label="xuu102 < xuu105",fontsize=16,color="magenta"];1876 -> 2285[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2286[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1427[label="",style="dashed", color="red", weight=0]; 1877[label="xuu102 < xuu105",fontsize=16,color="magenta"];1877 -> 2287[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2288[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1428[label="",style="dashed", color="red", weight=0]; 1878[label="xuu102 < xuu105",fontsize=16,color="magenta"];1878 -> 2289[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2290[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1429[label="",style="dashed", color="red", weight=0]; 1879[label="xuu102 < xuu105",fontsize=16,color="magenta"];1879 -> 2291[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1430[label="",style="dashed", color="red", weight=0]; 1880[label="xuu102 < xuu105",fontsize=16,color="magenta"];1880 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2294[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1431[label="",style="dashed", color="red", weight=0]; 1881[label="xuu102 < xuu105",fontsize=16,color="magenta"];1881 -> 2295[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2296[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1432[label="",style="dashed", color="red", weight=0]; 1882[label="xuu102 < xuu105",fontsize=16,color="magenta"];1882 -> 2297[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2298[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1433[label="",style="dashed", color="red", weight=0]; 1883[label="xuu102 < xuu105",fontsize=16,color="magenta"];1883 -> 2299[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2300[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1434[label="",style="dashed", color="red", weight=0]; 1884[label="xuu102 < xuu105",fontsize=16,color="magenta"];1884 -> 2301[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2302[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1435[label="",style="dashed", color="red", weight=0]; 1885[label="xuu102 < xuu105",fontsize=16,color="magenta"];1885 -> 2303[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2304[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1436[label="",style="dashed", color="red", weight=0]; 1886[label="xuu102 < xuu105",fontsize=16,color="magenta"];1886 -> 2305[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2306[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1437[label="",style="dashed", color="red", weight=0]; 1887[label="xuu102 < xuu105",fontsize=16,color="magenta"];1887 -> 2307[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2308[label="",style="dashed", color="magenta", weight=3]; 1888[label="xuu103 <= xuu106",fontsize=16,color="blue",shape="box"];4446[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2309[label="",style="solid", color="blue", weight=3]; 4447[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2310[label="",style="solid", color="blue", weight=3]; 4448[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2311[label="",style="solid", color="blue", weight=3]; 4449[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2312[label="",style="solid", color="blue", weight=3]; 4450[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2313[label="",style="solid", color="blue", weight=3]; 4451[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2314[label="",style="solid", color="blue", weight=3]; 4452[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2315[label="",style="solid", color="blue", weight=3]; 4453[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2316[label="",style="solid", color="blue", weight=3]; 4454[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2317[label="",style="solid", color="blue", weight=3]; 4455[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2318[label="",style="solid", color="blue", weight=3]; 4456[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2319[label="",style="solid", color="blue", weight=3]; 4457[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2320[label="",style="solid", color="blue", weight=3]; 4458[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 2321[label="",style="solid", color="blue", weight=3]; 4459[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 2322[label="",style="solid", color="blue", weight=3]; 1889[label="xuu102 == xuu105",fontsize=16,color="blue",shape="box"];4460[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 2323[label="",style="solid", color="blue", weight=3]; 4461[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 2324[label="",style="solid", color="blue", weight=3]; 4462[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 2325[label="",style="solid", color="blue", weight=3]; 4463[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 2326[label="",style="solid", color="blue", weight=3]; 4464[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 2327[label="",style="solid", color="blue", weight=3]; 4465[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 2328[label="",style="solid", color="blue", weight=3]; 4466[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 2329[label="",style="solid", color="blue", weight=3]; 4467[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 2330[label="",style="solid", color="blue", weight=3]; 4468[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 2331[label="",style="solid", color="blue", weight=3]; 4469[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 2332[label="",style="solid", color="blue", weight=3]; 4470[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 2333[label="",style="solid", color="blue", weight=3]; 4471[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4471[label="",style="solid", color="blue", weight=9]; 4471 -> 2334[label="",style="solid", color="blue", weight=3]; 4472[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4472[label="",style="solid", color="blue", weight=9]; 4472 -> 2335[label="",style="solid", color="blue", weight=3]; 4473[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4473[label="",style="solid", color="blue", weight=9]; 4473 -> 2336[label="",style="solid", color="blue", weight=3]; 1890[label="False || xuu209",fontsize=16,color="black",shape="box"];1890 -> 2337[label="",style="solid", color="black", weight=3]; 1891[label="True || xuu209",fontsize=16,color="black",shape="box"];1891 -> 2338[label="",style="solid", color="black", weight=3]; 1892[label="xuu104",fontsize=16,color="green",shape="box"];1893[label="xuu101",fontsize=16,color="green",shape="box"];1894[label="xuu104",fontsize=16,color="green",shape="box"];1895[label="xuu101",fontsize=16,color="green",shape="box"];1896[label="xuu104",fontsize=16,color="green",shape="box"];1897[label="xuu101",fontsize=16,color="green",shape="box"];1898[label="xuu104",fontsize=16,color="green",shape="box"];1899[label="xuu101",fontsize=16,color="green",shape="box"];1900[label="xuu104",fontsize=16,color="green",shape="box"];1901[label="xuu101",fontsize=16,color="green",shape="box"];1902[label="xuu104",fontsize=16,color="green",shape="box"];1903[label="xuu101",fontsize=16,color="green",shape="box"];1904[label="xuu104",fontsize=16,color="green",shape="box"];1905[label="xuu101",fontsize=16,color="green",shape="box"];1906[label="xuu104",fontsize=16,color="green",shape="box"];1907[label="xuu101",fontsize=16,color="green",shape="box"];1908[label="xuu104",fontsize=16,color="green",shape="box"];1909[label="xuu101",fontsize=16,color="green",shape="box"];1910[label="xuu104",fontsize=16,color="green",shape="box"];1911[label="xuu101",fontsize=16,color="green",shape="box"];1912[label="xuu104",fontsize=16,color="green",shape="box"];1913[label="xuu101",fontsize=16,color="green",shape="box"];1914[label="xuu104",fontsize=16,color="green",shape="box"];1915[label="xuu101",fontsize=16,color="green",shape="box"];1916[label="xuu104",fontsize=16,color="green",shape="box"];1917[label="xuu101",fontsize=16,color="green",shape="box"];1918[label="xuu104",fontsize=16,color="green",shape="box"];1919[label="xuu101",fontsize=16,color="green",shape="box"];1920[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) False",fontsize=16,color="black",shape="box"];1920 -> 2339[label="",style="solid", color="black", weight=3]; 1921[label="compare1 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="black",shape="box"];1921 -> 2340[label="",style="solid", color="black", weight=3]; 1922[label="True",fontsize=16,color="green",shape="box"];1923 -> 2341[label="",style="dashed", color="red", weight=0]; 1923[label="primPlusNat (primMulNat xuu400000 (Succ xuu5000100)) (Succ xuu5000100)",fontsize=16,color="magenta"];1923 -> 2342[label="",style="dashed", color="magenta", weight=3]; 1924[label="Zero",fontsize=16,color="green",shape="box"];1925[label="Zero",fontsize=16,color="green",shape="box"];1926[label="Zero",fontsize=16,color="green",shape="box"];1927 -> 537[label="",style="dashed", color="red", weight=0]; 1927[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1927 -> 2349[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2350[label="",style="dashed", color="magenta", weight=3]; 1928 -> 538[label="",style="dashed", color="red", weight=0]; 1928[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1928 -> 2351[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2352[label="",style="dashed", color="magenta", weight=3]; 1929 -> 537[label="",style="dashed", color="red", weight=0]; 1929[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1929 -> 2353[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2354[label="",style="dashed", color="magenta", weight=3]; 1930 -> 538[label="",style="dashed", color="red", weight=0]; 1930[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1930 -> 2355[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2356[label="",style="dashed", color="magenta", weight=3]; 1931[label="xuu500002 == xuu40002",fontsize=16,color="blue",shape="box"];4474[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4474[label="",style="solid", color="blue", weight=9]; 4474 -> 2357[label="",style="solid", color="blue", weight=3]; 4475[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4475[label="",style="solid", color="blue", weight=9]; 4475 -> 2358[label="",style="solid", color="blue", weight=3]; 4476[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 2359[label="",style="solid", color="blue", weight=3]; 4477[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 2360[label="",style="solid", color="blue", weight=3]; 4478[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 2361[label="",style="solid", color="blue", weight=3]; 4479[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 2362[label="",style="solid", color="blue", weight=3]; 4480[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 2363[label="",style="solid", color="blue", weight=3]; 4481[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 2364[label="",style="solid", color="blue", weight=3]; 4482[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 2365[label="",style="solid", color="blue", weight=3]; 4483[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 2366[label="",style="solid", color="blue", weight=3]; 4484[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 2367[label="",style="solid", color="blue", weight=3]; 4485[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 2368[label="",style="solid", color="blue", weight=3]; 4486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 2369[label="",style="solid", color="blue", weight=3]; 4487[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 2370[label="",style="solid", color="blue", weight=3]; 1932[label="xuu500001 == xuu40001",fontsize=16,color="blue",shape="box"];4488[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 2371[label="",style="solid", color="blue", weight=3]; 4489[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 2372[label="",style="solid", color="blue", weight=3]; 4490[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 2373[label="",style="solid", color="blue", weight=3]; 4491[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 2374[label="",style="solid", color="blue", weight=3]; 4492[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 2375[label="",style="solid", color="blue", weight=3]; 4493[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 2376[label="",style="solid", color="blue", weight=3]; 4494[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 2377[label="",style="solid", color="blue", weight=3]; 4495[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 2378[label="",style="solid", color="blue", weight=3]; 4496[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 2379[label="",style="solid", color="blue", weight=3]; 4497[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 2380[label="",style="solid", color="blue", weight=3]; 4498[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 2381[label="",style="solid", color="blue", weight=3]; 4499[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 2382[label="",style="solid", color="blue", weight=3]; 4500[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 2383[label="",style="solid", color="blue", weight=3]; 4501[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 2384[label="",style="solid", color="blue", weight=3]; 1933 -> 533[label="",style="dashed", color="red", weight=0]; 1933[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1933 -> 2385[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2386[label="",style="dashed", color="magenta", weight=3]; 1934 -> 534[label="",style="dashed", color="red", weight=0]; 1934[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1934 -> 2387[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2388[label="",style="dashed", color="magenta", weight=3]; 1935 -> 535[label="",style="dashed", color="red", weight=0]; 1935[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1935 -> 2389[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2390[label="",style="dashed", color="magenta", weight=3]; 1936 -> 536[label="",style="dashed", color="red", weight=0]; 1936[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1936 -> 2391[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2392[label="",style="dashed", color="magenta", weight=3]; 1937 -> 537[label="",style="dashed", color="red", weight=0]; 1937[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1937 -> 2393[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2394[label="",style="dashed", color="magenta", weight=3]; 1938 -> 538[label="",style="dashed", color="red", weight=0]; 1938[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1938 -> 2395[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2396[label="",style="dashed", color="magenta", weight=3]; 1939 -> 539[label="",style="dashed", color="red", weight=0]; 1939[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1939 -> 2397[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2398[label="",style="dashed", color="magenta", weight=3]; 1940 -> 540[label="",style="dashed", color="red", weight=0]; 1940[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1940 -> 2399[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2400[label="",style="dashed", color="magenta", weight=3]; 1941 -> 541[label="",style="dashed", color="red", weight=0]; 1941[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1941 -> 2401[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2402[label="",style="dashed", color="magenta", weight=3]; 1942 -> 542[label="",style="dashed", color="red", weight=0]; 1942[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1942 -> 2403[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2404[label="",style="dashed", color="magenta", weight=3]; 1943 -> 543[label="",style="dashed", color="red", weight=0]; 1943[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1943 -> 2405[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2406[label="",style="dashed", color="magenta", weight=3]; 1944 -> 544[label="",style="dashed", color="red", weight=0]; 1944[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1944 -> 2407[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2408[label="",style="dashed", color="magenta", weight=3]; 1945 -> 545[label="",style="dashed", color="red", weight=0]; 1945[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1945 -> 2409[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2410[label="",style="dashed", color="magenta", weight=3]; 1946 -> 546[label="",style="dashed", color="red", weight=0]; 1946[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1946 -> 2411[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2412[label="",style="dashed", color="magenta", weight=3]; 1947[label="primEqInt (Pos (Succ xuu5000000)) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];1947 -> 2413[label="",style="solid", color="black", weight=3]; 1948[label="primEqInt (Pos (Succ xuu5000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1948 -> 2414[label="",style="solid", color="black", weight=3]; 1949[label="False",fontsize=16,color="green",shape="box"];1950[label="primEqInt (Pos Zero) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];1950 -> 2415[label="",style="solid", color="black", weight=3]; 1951[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1951 -> 2416[label="",style="solid", color="black", weight=3]; 1952[label="primEqInt (Pos Zero) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];1952 -> 2417[label="",style="solid", color="black", weight=3]; 1953[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1953 -> 2418[label="",style="solid", color="black", weight=3]; 1954[label="False",fontsize=16,color="green",shape="box"];1955[label="primEqInt (Neg (Succ xuu5000000)) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];1955 -> 2419[label="",style="solid", color="black", weight=3]; 1956[label="primEqInt (Neg (Succ xuu5000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1956 -> 2420[label="",style="solid", color="black", weight=3]; 1957[label="primEqInt (Neg Zero) (Pos (Succ xuu400000))",fontsize=16,color="black",shape="box"];1957 -> 2421[label="",style="solid", color="black", weight=3]; 1958[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1958 -> 2422[label="",style="solid", color="black", weight=3]; 1959[label="primEqInt (Neg Zero) (Neg (Succ xuu400000))",fontsize=16,color="black",shape="box"];1959 -> 2423[label="",style="solid", color="black", weight=3]; 1960[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1960 -> 2424[label="",style="solid", color="black", weight=3]; 1961 -> 533[label="",style="dashed", color="red", weight=0]; 1961[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1961 -> 2425[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2426[label="",style="dashed", color="magenta", weight=3]; 1962 -> 534[label="",style="dashed", color="red", weight=0]; 1962[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1962 -> 2427[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2428[label="",style="dashed", color="magenta", weight=3]; 1963 -> 535[label="",style="dashed", color="red", weight=0]; 1963[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1963 -> 2429[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2430[label="",style="dashed", color="magenta", weight=3]; 1964 -> 536[label="",style="dashed", color="red", weight=0]; 1964[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1964 -> 2431[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2432[label="",style="dashed", color="magenta", weight=3]; 1965 -> 537[label="",style="dashed", color="red", weight=0]; 1965[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1965 -> 2433[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2434[label="",style="dashed", color="magenta", weight=3]; 1966 -> 538[label="",style="dashed", color="red", weight=0]; 1966[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1966 -> 2435[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2436[label="",style="dashed", color="magenta", weight=3]; 1967 -> 539[label="",style="dashed", color="red", weight=0]; 1967[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1967 -> 2437[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2438[label="",style="dashed", color="magenta", weight=3]; 1968 -> 540[label="",style="dashed", color="red", weight=0]; 1968[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1968 -> 2439[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2440[label="",style="dashed", color="magenta", weight=3]; 1969 -> 541[label="",style="dashed", color="red", weight=0]; 1969[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1969 -> 2441[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2442[label="",style="dashed", color="magenta", weight=3]; 1970 -> 542[label="",style="dashed", color="red", weight=0]; 1970[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1970 -> 2443[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2444[label="",style="dashed", color="magenta", weight=3]; 1971 -> 543[label="",style="dashed", color="red", weight=0]; 1971[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1971 -> 2445[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2446[label="",style="dashed", color="magenta", weight=3]; 1972 -> 544[label="",style="dashed", color="red", weight=0]; 1972[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1972 -> 2447[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2448[label="",style="dashed", color="magenta", weight=3]; 1973 -> 545[label="",style="dashed", color="red", weight=0]; 1973[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1973 -> 2449[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2450[label="",style="dashed", color="magenta", weight=3]; 1974 -> 546[label="",style="dashed", color="red", weight=0]; 1974[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];1974 -> 2451[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2452[label="",style="dashed", color="magenta", weight=3]; 1975 -> 533[label="",style="dashed", color="red", weight=0]; 1975[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1975 -> 2453[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2454[label="",style="dashed", color="magenta", weight=3]; 1976 -> 534[label="",style="dashed", color="red", weight=0]; 1976[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1976 -> 2455[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2456[label="",style="dashed", color="magenta", weight=3]; 1977 -> 535[label="",style="dashed", color="red", weight=0]; 1977[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1977 -> 2457[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2458[label="",style="dashed", color="magenta", weight=3]; 1978 -> 536[label="",style="dashed", color="red", weight=0]; 1978[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1978 -> 2459[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2460[label="",style="dashed", color="magenta", weight=3]; 1979 -> 537[label="",style="dashed", color="red", weight=0]; 1979[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1979 -> 2461[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2462[label="",style="dashed", color="magenta", weight=3]; 1980 -> 538[label="",style="dashed", color="red", weight=0]; 1980[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1980 -> 2463[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2464[label="",style="dashed", color="magenta", weight=3]; 1981 -> 539[label="",style="dashed", color="red", weight=0]; 1981[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1981 -> 2465[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2466[label="",style="dashed", color="magenta", weight=3]; 1982 -> 540[label="",style="dashed", color="red", weight=0]; 1982[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1982 -> 2467[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2468[label="",style="dashed", color="magenta", weight=3]; 1983 -> 541[label="",style="dashed", color="red", weight=0]; 1983[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1983 -> 2469[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2470[label="",style="dashed", color="magenta", weight=3]; 1984 -> 542[label="",style="dashed", color="red", weight=0]; 1984[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1984 -> 2471[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2472[label="",style="dashed", color="magenta", weight=3]; 1985 -> 543[label="",style="dashed", color="red", weight=0]; 1985[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1985 -> 2473[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2474[label="",style="dashed", color="magenta", weight=3]; 1986 -> 544[label="",style="dashed", color="red", weight=0]; 1986[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1986 -> 2475[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2476[label="",style="dashed", color="magenta", weight=3]; 1987 -> 545[label="",style="dashed", color="red", weight=0]; 1987[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1987 -> 2477[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2478[label="",style="dashed", color="magenta", weight=3]; 1988 -> 546[label="",style="dashed", color="red", weight=0]; 1988[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];1988 -> 2479[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2480[label="",style="dashed", color="magenta", weight=3]; 1989 -> 408[label="",style="dashed", color="red", weight=0]; 1989[label="xuu500001 * xuu40000",fontsize=16,color="magenta"];1989 -> 2481[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2482[label="",style="dashed", color="magenta", weight=3]; 1990 -> 408[label="",style="dashed", color="red", weight=0]; 1990[label="xuu500000 * xuu40001",fontsize=16,color="magenta"];1990 -> 2483[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2484[label="",style="dashed", color="magenta", weight=3]; 1991[label="xuu40000",fontsize=16,color="green",shape="box"];1992[label="xuu500000",fontsize=16,color="green",shape="box"];1993[label="xuu40000",fontsize=16,color="green",shape="box"];1994[label="xuu500000",fontsize=16,color="green",shape="box"];1995[label="xuu40000",fontsize=16,color="green",shape="box"];1996[label="xuu500000",fontsize=16,color="green",shape="box"];1997[label="xuu40000",fontsize=16,color="green",shape="box"];1998[label="xuu500000",fontsize=16,color="green",shape="box"];1999[label="xuu40000",fontsize=16,color="green",shape="box"];2000[label="xuu500000",fontsize=16,color="green",shape="box"];2001[label="xuu40000",fontsize=16,color="green",shape="box"];2002[label="xuu500000",fontsize=16,color="green",shape="box"];2003[label="xuu40000",fontsize=16,color="green",shape="box"];2004[label="xuu500000",fontsize=16,color="green",shape="box"];2005[label="xuu40000",fontsize=16,color="green",shape="box"];2006[label="xuu500000",fontsize=16,color="green",shape="box"];2007[label="xuu40000",fontsize=16,color="green",shape="box"];2008[label="xuu500000",fontsize=16,color="green",shape="box"];2009[label="xuu40000",fontsize=16,color="green",shape="box"];2010[label="xuu500000",fontsize=16,color="green",shape="box"];2011[label="xuu40000",fontsize=16,color="green",shape="box"];2012[label="xuu500000",fontsize=16,color="green",shape="box"];2013[label="xuu40000",fontsize=16,color="green",shape="box"];2014[label="xuu500000",fontsize=16,color="green",shape="box"];2015[label="xuu40000",fontsize=16,color="green",shape="box"];2016[label="xuu500000",fontsize=16,color="green",shape="box"];2017[label="xuu40000",fontsize=16,color="green",shape="box"];2018[label="xuu500000",fontsize=16,color="green",shape="box"];2019[label="xuu40001",fontsize=16,color="green",shape="box"];2020[label="xuu500001",fontsize=16,color="green",shape="box"];2021 -> 533[label="",style="dashed", color="red", weight=0]; 2021[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2021 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2022 -> 534[label="",style="dashed", color="red", weight=0]; 2022[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2022 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2023 -> 535[label="",style="dashed", color="red", weight=0]; 2023[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2023 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2024 -> 536[label="",style="dashed", color="red", weight=0]; 2024[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2024 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2025 -> 537[label="",style="dashed", color="red", weight=0]; 2025[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2025 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2026 -> 538[label="",style="dashed", color="red", weight=0]; 2026[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2026 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2027 -> 539[label="",style="dashed", color="red", weight=0]; 2027[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2027 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2028 -> 540[label="",style="dashed", color="red", weight=0]; 2028[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2028 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2029 -> 541[label="",style="dashed", color="red", weight=0]; 2029[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2029 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2030 -> 542[label="",style="dashed", color="red", weight=0]; 2030[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2030 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2031 -> 543[label="",style="dashed", color="red", weight=0]; 2031[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2031 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2031 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2032 -> 544[label="",style="dashed", color="red", weight=0]; 2032[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2032 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2033 -> 545[label="",style="dashed", color="red", weight=0]; 2033[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2033 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2034 -> 546[label="",style="dashed", color="red", weight=0]; 2034[label="xuu500000 == xuu40000",fontsize=16,color="magenta"];2034 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2035 -> 408[label="",style="dashed", color="red", weight=0]; 2035[label="xuu500001 * xuu40000",fontsize=16,color="magenta"];2035 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2036 -> 408[label="",style="dashed", color="red", weight=0]; 2036[label="xuu500000 * xuu40001",fontsize=16,color="magenta"];2036 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2037[label="primEqNat (Succ xuu5000000) xuu40000",fontsize=16,color="burlywood",shape="box"];4502[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4502[label="",style="solid", color="burlywood", weight=9]; 4502 -> 2517[label="",style="solid", color="burlywood", weight=3]; 4503[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4503[label="",style="solid", color="burlywood", weight=9]; 4503 -> 2518[label="",style="solid", color="burlywood", weight=3]; 2038[label="primEqNat Zero xuu40000",fontsize=16,color="burlywood",shape="box"];4504[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2038 -> 4504[label="",style="solid", color="burlywood", weight=9]; 4504 -> 2519[label="",style="solid", color="burlywood", weight=3]; 4505[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2038 -> 4505[label="",style="solid", color="burlywood", weight=9]; 4505 -> 2520[label="",style="solid", color="burlywood", weight=3]; 2039[label="xuu40000",fontsize=16,color="green",shape="box"];2040[label="xuu500000",fontsize=16,color="green",shape="box"];2041[label="xuu40000",fontsize=16,color="green",shape="box"];2042[label="xuu500000",fontsize=16,color="green",shape="box"];2043[label="xuu40000",fontsize=16,color="green",shape="box"];2044[label="xuu500000",fontsize=16,color="green",shape="box"];2045[label="xuu40000",fontsize=16,color="green",shape="box"];2046[label="xuu500000",fontsize=16,color="green",shape="box"];2047[label="xuu40000",fontsize=16,color="green",shape="box"];2048[label="xuu500000",fontsize=16,color="green",shape="box"];2049[label="xuu40000",fontsize=16,color="green",shape="box"];2050[label="xuu500000",fontsize=16,color="green",shape="box"];2051[label="xuu40000",fontsize=16,color="green",shape="box"];2052[label="xuu500000",fontsize=16,color="green",shape="box"];2053[label="xuu40000",fontsize=16,color="green",shape="box"];2054[label="xuu500000",fontsize=16,color="green",shape="box"];2055[label="xuu40000",fontsize=16,color="green",shape="box"];2056[label="xuu500000",fontsize=16,color="green",shape="box"];2057[label="xuu40000",fontsize=16,color="green",shape="box"];2058[label="xuu500000",fontsize=16,color="green",shape="box"];2059[label="xuu40000",fontsize=16,color="green",shape="box"];2060[label="xuu500000",fontsize=16,color="green",shape="box"];2061[label="xuu40000",fontsize=16,color="green",shape="box"];2062[label="xuu500000",fontsize=16,color="green",shape="box"];2063[label="xuu40000",fontsize=16,color="green",shape="box"];2064[label="xuu500000",fontsize=16,color="green",shape="box"];2065[label="xuu40000",fontsize=16,color="green",shape="box"];2066[label="xuu500000",fontsize=16,color="green",shape="box"];2067[label="xuu40000",fontsize=16,color="green",shape="box"];2068[label="xuu500000",fontsize=16,color="green",shape="box"];2069[label="xuu40000",fontsize=16,color="green",shape="box"];2070[label="xuu500000",fontsize=16,color="green",shape="box"];2071[label="xuu40000",fontsize=16,color="green",shape="box"];2072[label="xuu500000",fontsize=16,color="green",shape="box"];2073[label="xuu40000",fontsize=16,color="green",shape="box"];2074[label="xuu500000",fontsize=16,color="green",shape="box"];2075[label="xuu40000",fontsize=16,color="green",shape="box"];2076[label="xuu500000",fontsize=16,color="green",shape="box"];2077[label="xuu40000",fontsize=16,color="green",shape="box"];2078[label="xuu500000",fontsize=16,color="green",shape="box"];2079[label="xuu40000",fontsize=16,color="green",shape="box"];2080[label="xuu500000",fontsize=16,color="green",shape="box"];2081[label="xuu40000",fontsize=16,color="green",shape="box"];2082[label="xuu500000",fontsize=16,color="green",shape="box"];2083[label="xuu40000",fontsize=16,color="green",shape="box"];2084[label="xuu500000",fontsize=16,color="green",shape="box"];2085[label="xuu40000",fontsize=16,color="green",shape="box"];2086[label="xuu500000",fontsize=16,color="green",shape="box"];2087[label="xuu40000",fontsize=16,color="green",shape="box"];2088[label="xuu500000",fontsize=16,color="green",shape="box"];2089[label="xuu40000",fontsize=16,color="green",shape="box"];2090[label="xuu500000",fontsize=16,color="green",shape="box"];2091[label="xuu40000",fontsize=16,color="green",shape="box"];2092[label="xuu500000",fontsize=16,color="green",shape="box"];2093[label="xuu40000",fontsize=16,color="green",shape="box"];2094[label="xuu500000",fontsize=16,color="green",shape="box"];2096 -> 167[label="",style="dashed", color="red", weight=0]; 2096[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2096 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2095[label="xuu210 /= GT",fontsize=16,color="black",shape="triangle"];2095 -> 2523[label="",style="solid", color="black", weight=3]; 2097 -> 168[label="",style="dashed", color="red", weight=0]; 2097[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2097 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2098 -> 169[label="",style="dashed", color="red", weight=0]; 2098[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2098 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2109[label="(xuu620,xuu621,xuu622) <= (xuu630,xuu631,xuu632)",fontsize=16,color="black",shape="box"];2109 -> 2528[label="",style="solid", color="black", weight=3]; 2099 -> 171[label="",style="dashed", color="red", weight=0]; 2099[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2099 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2100 -> 172[label="",style="dashed", color="red", weight=0]; 2100[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2100 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2101 -> 173[label="",style="dashed", color="red", weight=0]; 2101[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2101 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2110[label="False <= False",fontsize=16,color="black",shape="box"];2110 -> 2535[label="",style="solid", color="black", weight=3]; 2111[label="False <= True",fontsize=16,color="black",shape="box"];2111 -> 2536[label="",style="solid", color="black", weight=3]; 2112[label="True <= False",fontsize=16,color="black",shape="box"];2112 -> 2537[label="",style="solid", color="black", weight=3]; 2113[label="True <= True",fontsize=16,color="black",shape="box"];2113 -> 2538[label="",style="solid", color="black", weight=3]; 2102 -> 175[label="",style="dashed", color="red", weight=0]; 2102[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2102 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2114[label="Left xuu620 <= Left xuu630",fontsize=16,color="black",shape="box"];2114 -> 2541[label="",style="solid", color="black", weight=3]; 2115[label="Left xuu620 <= Right xuu630",fontsize=16,color="black",shape="box"];2115 -> 2542[label="",style="solid", color="black", weight=3]; 2116[label="Right xuu620 <= Left xuu630",fontsize=16,color="black",shape="box"];2116 -> 2543[label="",style="solid", color="black", weight=3]; 2117[label="Right xuu620 <= Right xuu630",fontsize=16,color="black",shape="box"];2117 -> 2544[label="",style="solid", color="black", weight=3]; 2118[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2118 -> 2545[label="",style="solid", color="black", weight=3]; 2119[label="Nothing <= Just xuu630",fontsize=16,color="black",shape="box"];2119 -> 2546[label="",style="solid", color="black", weight=3]; 2120[label="Just xuu620 <= Nothing",fontsize=16,color="black",shape="box"];2120 -> 2547[label="",style="solid", color="black", weight=3]; 2121[label="Just xuu620 <= Just xuu630",fontsize=16,color="black",shape="box"];2121 -> 2548[label="",style="solid", color="black", weight=3]; 2103 -> 178[label="",style="dashed", color="red", weight=0]; 2103[label="compare xuu62 xuu63",fontsize=16,color="magenta"];2103 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2122[label="(xuu620,xuu621) <= (xuu630,xuu631)",fontsize=16,color="black",shape="box"];2122 -> 2551[label="",style="solid", color="black", weight=3]; 2123[label="LT <= LT",fontsize=16,color="black",shape="box"];2123 -> 2552[label="",style="solid", color="black", weight=3]; 2124[label="LT <= EQ",fontsize=16,color="black",shape="box"];2124 -> 2553[label="",style="solid", color="black", weight=3]; 2125[label="LT <= GT",fontsize=16,color="black",shape="box"];2125 -> 2554[label="",style="solid", color="black", weight=3]; 2126[label="EQ <= LT",fontsize=16,color="black",shape="box"];2126 -> 2555[label="",style="solid", color="black", weight=3]; 2127[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2127 -> 2556[label="",style="solid", color="black", weight=3]; 2128[label="EQ <= GT",fontsize=16,color="black",shape="box"];2128 -> 2557[label="",style="solid", color="black", weight=3]; 2129[label="GT <= LT",fontsize=16,color="black",shape="box"];2129 -> 2558[label="",style="solid", color="black", weight=3]; 2130[label="GT <= EQ",fontsize=16,color="black",shape="box"];2130 -> 2559[label="",style="solid", color="black", weight=3]; 2131[label="GT <= GT",fontsize=16,color="black",shape="box"];2131 -> 2560[label="",style="solid", color="black", weight=3]; 2132[label="GT",fontsize=16,color="green",shape="box"];2133[label="GT",fontsize=16,color="green",shape="box"];2134[label="GT",fontsize=16,color="green",shape="box"];2135[label="xuu115",fontsize=16,color="green",shape="box"];2136[label="xuu117",fontsize=16,color="green",shape="box"];2137[label="xuu115",fontsize=16,color="green",shape="box"];2138[label="xuu117",fontsize=16,color="green",shape="box"];2139[label="xuu115",fontsize=16,color="green",shape="box"];2140[label="xuu117",fontsize=16,color="green",shape="box"];2141[label="xuu115",fontsize=16,color="green",shape="box"];2142[label="xuu117",fontsize=16,color="green",shape="box"];2143[label="xuu115",fontsize=16,color="green",shape="box"];2144[label="xuu117",fontsize=16,color="green",shape="box"];2145[label="xuu115",fontsize=16,color="green",shape="box"];2146[label="xuu117",fontsize=16,color="green",shape="box"];2147[label="xuu115",fontsize=16,color="green",shape="box"];2148[label="xuu117",fontsize=16,color="green",shape="box"];2149[label="xuu115",fontsize=16,color="green",shape="box"];2150[label="xuu117",fontsize=16,color="green",shape="box"];2151[label="xuu115",fontsize=16,color="green",shape="box"];2152[label="xuu117",fontsize=16,color="green",shape="box"];2153[label="xuu115",fontsize=16,color="green",shape="box"];2154[label="xuu117",fontsize=16,color="green",shape="box"];2155[label="xuu115",fontsize=16,color="green",shape="box"];2156[label="xuu117",fontsize=16,color="green",shape="box"];2157[label="xuu115",fontsize=16,color="green",shape="box"];2158[label="xuu117",fontsize=16,color="green",shape="box"];2159[label="xuu115",fontsize=16,color="green",shape="box"];2160[label="xuu117",fontsize=16,color="green",shape="box"];2161[label="xuu115",fontsize=16,color="green",shape="box"];2162[label="xuu117",fontsize=16,color="green",shape="box"];2163[label="xuu116",fontsize=16,color="green",shape="box"];2164[label="xuu114",fontsize=16,color="green",shape="box"];2165[label="xuu116",fontsize=16,color="green",shape="box"];2166[label="xuu114",fontsize=16,color="green",shape="box"];2167[label="xuu116",fontsize=16,color="green",shape="box"];2168[label="xuu114",fontsize=16,color="green",shape="box"];2169[label="xuu116",fontsize=16,color="green",shape="box"];2170[label="xuu114",fontsize=16,color="green",shape="box"];2171[label="xuu116",fontsize=16,color="green",shape="box"];2172[label="xuu114",fontsize=16,color="green",shape="box"];2173[label="xuu116",fontsize=16,color="green",shape="box"];2174[label="xuu114",fontsize=16,color="green",shape="box"];2175[label="xuu116",fontsize=16,color="green",shape="box"];2176[label="xuu114",fontsize=16,color="green",shape="box"];2177[label="xuu116",fontsize=16,color="green",shape="box"];2178[label="xuu114",fontsize=16,color="green",shape="box"];2179[label="xuu116",fontsize=16,color="green",shape="box"];2180[label="xuu114",fontsize=16,color="green",shape="box"];2181[label="xuu116",fontsize=16,color="green",shape="box"];2182[label="xuu114",fontsize=16,color="green",shape="box"];2183[label="xuu116",fontsize=16,color="green",shape="box"];2184[label="xuu114",fontsize=16,color="green",shape="box"];2185[label="xuu116",fontsize=16,color="green",shape="box"];2186[label="xuu114",fontsize=16,color="green",shape="box"];2187[label="xuu116",fontsize=16,color="green",shape="box"];2188[label="xuu114",fontsize=16,color="green",shape="box"];2189[label="xuu116",fontsize=16,color="green",shape="box"];2190[label="xuu114",fontsize=16,color="green",shape="box"];2191[label="compare1 (xuu188,xuu189) (xuu190,xuu191) False",fontsize=16,color="black",shape="box"];2191 -> 2561[label="",style="solid", color="black", weight=3]; 2192[label="compare1 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="black",shape="box"];2192 -> 2562[label="",style="solid", color="black", weight=3]; 2193[label="True",fontsize=16,color="green",shape="box"];2231 -> 1819[label="",style="dashed", color="red", weight=0]; 2231[label="FiniteMap.sizeFM xuu43",fontsize=16,color="magenta"];2231 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2232[label="xuu41",fontsize=16,color="green",shape="box"];2234 -> 1806[label="",style="dashed", color="red", weight=0]; 2234[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2234 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2233[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 xuu213",fontsize=16,color="burlywood",shape="triangle"];4506[label="xuu213/False",fontsize=10,color="white",style="solid",shape="box"];2233 -> 4506[label="",style="solid", color="burlywood", weight=9]; 4506 -> 2566[label="",style="solid", color="burlywood", weight=3]; 4507[label="xuu213/True",fontsize=10,color="white",style="solid",shape="box"];2233 -> 4507[label="",style="solid", color="burlywood", weight=9]; 4507 -> 2567[label="",style="solid", color="burlywood", weight=3]; 2239[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 FiniteMap.EmptyFM xuu43 xuu43 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2239 -> 2568[label="",style="solid", color="black", weight=3]; 2240[label="FiniteMap.mkBalBranch6MkBalBranch0 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2240 -> 2569[label="",style="solid", color="black", weight=3]; 2794[label="Succ (Succ (primPlusNat xuu21200 xuu21100))",fontsize=16,color="green",shape="box"];2794 -> 2922[label="",style="dashed", color="green", weight=3]; 2795[label="Succ xuu21200",fontsize=16,color="green",shape="box"];2796[label="Succ xuu21100",fontsize=16,color="green",shape="box"];2797[label="Zero",fontsize=16,color="green",shape="box"];2798[label="xuu21100",fontsize=16,color="green",shape="box"];2799[label="xuu21200",fontsize=16,color="green",shape="box"];3751[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3751 -> 3753[label="",style="solid", color="black", weight=3]; 3752[label="FiniteMap.mkBranchRight_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3752 -> 3754[label="",style="solid", color="black", weight=3]; 2244[label="FiniteMap.mkBalBranch6MkBalBranch2 (xuu400 : xuu401) xuu41 xuu44 xuu29 (xuu400 : xuu401) xuu41 xuu29 xuu44 True",fontsize=16,color="black",shape="box"];2244 -> 2573[label="",style="solid", color="black", weight=3]; 2245[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu44 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2245 -> 2574[label="",style="solid", color="black", weight=3]; 2246[label="FiniteMap.mkBalBranch6MkBalBranch1 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2246 -> 2575[label="",style="solid", color="black", weight=3]; 2248 -> 1426[label="",style="dashed", color="red", weight=0]; 2248[label="FiniteMap.sizeFM xuu443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2248 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2247[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 xuu218",fontsize=16,color="burlywood",shape="triangle"];4508[label="xuu218/False",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4508[label="",style="solid", color="burlywood", weight=9]; 4508 -> 2578[label="",style="solid", color="burlywood", weight=3]; 4509[label="xuu218/True",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4509[label="",style="solid", color="burlywood", weight=9]; 4509 -> 2579[label="",style="solid", color="burlywood", weight=3]; 2253[label="xuu104",fontsize=16,color="green",shape="box"];2254[label="xuu101",fontsize=16,color="green",shape="box"];2255[label="xuu104",fontsize=16,color="green",shape="box"];2256[label="xuu101",fontsize=16,color="green",shape="box"];2257[label="xuu104",fontsize=16,color="green",shape="box"];2258[label="xuu101",fontsize=16,color="green",shape="box"];2259[label="xuu104",fontsize=16,color="green",shape="box"];2260[label="xuu101",fontsize=16,color="green",shape="box"];2261[label="xuu104",fontsize=16,color="green",shape="box"];2262[label="xuu101",fontsize=16,color="green",shape="box"];2263[label="xuu104",fontsize=16,color="green",shape="box"];2264[label="xuu101",fontsize=16,color="green",shape="box"];2265[label="xuu104",fontsize=16,color="green",shape="box"];2266[label="xuu101",fontsize=16,color="green",shape="box"];2267[label="xuu104",fontsize=16,color="green",shape="box"];2268[label="xuu101",fontsize=16,color="green",shape="box"];2269[label="xuu104",fontsize=16,color="green",shape="box"];2270[label="xuu101",fontsize=16,color="green",shape="box"];2271[label="xuu104",fontsize=16,color="green",shape="box"];2272[label="xuu101",fontsize=16,color="green",shape="box"];2273[label="xuu104",fontsize=16,color="green",shape="box"];2274[label="xuu101",fontsize=16,color="green",shape="box"];2275[label="xuu104",fontsize=16,color="green",shape="box"];2276[label="xuu101",fontsize=16,color="green",shape="box"];2277[label="xuu104",fontsize=16,color="green",shape="box"];2278[label="xuu101",fontsize=16,color="green",shape="box"];2279[label="xuu104",fontsize=16,color="green",shape="box"];2280[label="xuu101",fontsize=16,color="green",shape="box"];2281[label="xuu102",fontsize=16,color="green",shape="box"];2282[label="xuu105",fontsize=16,color="green",shape="box"];2283[label="xuu102",fontsize=16,color="green",shape="box"];2284[label="xuu105",fontsize=16,color="green",shape="box"];2285[label="xuu102",fontsize=16,color="green",shape="box"];2286[label="xuu105",fontsize=16,color="green",shape="box"];2287[label="xuu102",fontsize=16,color="green",shape="box"];2288[label="xuu105",fontsize=16,color="green",shape="box"];2289[label="xuu102",fontsize=16,color="green",shape="box"];2290[label="xuu105",fontsize=16,color="green",shape="box"];2291[label="xuu102",fontsize=16,color="green",shape="box"];2292[label="xuu105",fontsize=16,color="green",shape="box"];2293[label="xuu102",fontsize=16,color="green",shape="box"];2294[label="xuu105",fontsize=16,color="green",shape="box"];2295[label="xuu102",fontsize=16,color="green",shape="box"];2296[label="xuu105",fontsize=16,color="green",shape="box"];2297[label="xuu102",fontsize=16,color="green",shape="box"];2298[label="xuu105",fontsize=16,color="green",shape="box"];2299[label="xuu102",fontsize=16,color="green",shape="box"];2300[label="xuu105",fontsize=16,color="green",shape="box"];2301[label="xuu102",fontsize=16,color="green",shape="box"];2302[label="xuu105",fontsize=16,color="green",shape="box"];2303[label="xuu102",fontsize=16,color="green",shape="box"];2304[label="xuu105",fontsize=16,color="green",shape="box"];2305[label="xuu102",fontsize=16,color="green",shape="box"];2306[label="xuu105",fontsize=16,color="green",shape="box"];2307[label="xuu102",fontsize=16,color="green",shape="box"];2308[label="xuu105",fontsize=16,color="green",shape="box"];2309 -> 1448[label="",style="dashed", color="red", weight=0]; 2309[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2309 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1449[label="",style="dashed", color="red", weight=0]; 2310[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2310 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1450[label="",style="dashed", color="red", weight=0]; 2311[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2311 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1451[label="",style="dashed", color="red", weight=0]; 2312[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2312 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1452[label="",style="dashed", color="red", weight=0]; 2313[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2313 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1453[label="",style="dashed", color="red", weight=0]; 2314[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2314 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1454[label="",style="dashed", color="red", weight=0]; 2315[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2315 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1455[label="",style="dashed", color="red", weight=0]; 2316[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2316 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1456[label="",style="dashed", color="red", weight=0]; 2317[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2317 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1457[label="",style="dashed", color="red", weight=0]; 2318[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2318 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1458[label="",style="dashed", color="red", weight=0]; 2319[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2319 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2320 -> 1459[label="",style="dashed", color="red", weight=0]; 2320[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2320 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1460[label="",style="dashed", color="red", weight=0]; 2321[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2321 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1461[label="",style="dashed", color="red", weight=0]; 2322[label="xuu103 <= xuu106",fontsize=16,color="magenta"];2322 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2323 -> 543[label="",style="dashed", color="red", weight=0]; 2323[label="xuu102 == xuu105",fontsize=16,color="magenta"];2323 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2324 -> 536[label="",style="dashed", color="red", weight=0]; 2324[label="xuu102 == xuu105",fontsize=16,color="magenta"];2324 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2325 -> 537[label="",style="dashed", color="red", weight=0]; 2325[label="xuu102 == xuu105",fontsize=16,color="magenta"];2325 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2326 -> 535[label="",style="dashed", color="red", weight=0]; 2326[label="xuu102 == xuu105",fontsize=16,color="magenta"];2326 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2327 -> 544[label="",style="dashed", color="red", weight=0]; 2327[label="xuu102 == xuu105",fontsize=16,color="magenta"];2327 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2328 -> 534[label="",style="dashed", color="red", weight=0]; 2328[label="xuu102 == xuu105",fontsize=16,color="magenta"];2328 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2329 -> 541[label="",style="dashed", color="red", weight=0]; 2329[label="xuu102 == xuu105",fontsize=16,color="magenta"];2329 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2330 -> 540[label="",style="dashed", color="red", weight=0]; 2330[label="xuu102 == xuu105",fontsize=16,color="magenta"];2330 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2331 -> 545[label="",style="dashed", color="red", weight=0]; 2331[label="xuu102 == xuu105",fontsize=16,color="magenta"];2331 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2332 -> 546[label="",style="dashed", color="red", weight=0]; 2332[label="xuu102 == xuu105",fontsize=16,color="magenta"];2332 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2333 -> 542[label="",style="dashed", color="red", weight=0]; 2333[label="xuu102 == xuu105",fontsize=16,color="magenta"];2333 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2334 -> 538[label="",style="dashed", color="red", weight=0]; 2334[label="xuu102 == xuu105",fontsize=16,color="magenta"];2334 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2335 -> 539[label="",style="dashed", color="red", weight=0]; 2335[label="xuu102 == xuu105",fontsize=16,color="magenta"];2335 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2336 -> 533[label="",style="dashed", color="red", weight=0]; 2336[label="xuu102 == xuu105",fontsize=16,color="magenta"];2336 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2337[label="xuu209",fontsize=16,color="green",shape="box"];2338[label="True",fontsize=16,color="green",shape="box"];2339[label="compare0 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) otherwise",fontsize=16,color="black",shape="box"];2339 -> 2636[label="",style="solid", color="black", weight=3]; 2340[label="LT",fontsize=16,color="green",shape="box"];2342 -> 1197[label="",style="dashed", color="red", weight=0]; 2342[label="primMulNat xuu400000 (Succ xuu5000100)",fontsize=16,color="magenta"];2342 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2341[label="primPlusNat xuu222 (Succ xuu5000100)",fontsize=16,color="burlywood",shape="triangle"];4510[label="xuu222/Succ xuu2220",fontsize=10,color="white",style="solid",shape="box"];2341 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 2639[label="",style="solid", color="burlywood", weight=3]; 4511[label="xuu222/Zero",fontsize=10,color="white",style="solid",shape="box"];2341 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 2640[label="",style="solid", color="burlywood", weight=3]; 2349[label="xuu40001",fontsize=16,color="green",shape="box"];2350[label="xuu500001",fontsize=16,color="green",shape="box"];2351[label="xuu40001",fontsize=16,color="green",shape="box"];2352[label="xuu500001",fontsize=16,color="green",shape="box"];2353[label="xuu40000",fontsize=16,color="green",shape="box"];2354[label="xuu500000",fontsize=16,color="green",shape="box"];2355[label="xuu40000",fontsize=16,color="green",shape="box"];2356[label="xuu500000",fontsize=16,color="green",shape="box"];2357 -> 533[label="",style="dashed", color="red", weight=0]; 2357[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2357 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2358 -> 534[label="",style="dashed", color="red", weight=0]; 2358[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2358 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2359 -> 535[label="",style="dashed", color="red", weight=0]; 2359[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2359 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2360 -> 536[label="",style="dashed", color="red", weight=0]; 2360[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2360 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2361 -> 537[label="",style="dashed", color="red", weight=0]; 2361[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2361 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2362 -> 538[label="",style="dashed", color="red", weight=0]; 2362[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2362 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2363 -> 539[label="",style="dashed", color="red", weight=0]; 2363[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2363 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2364 -> 540[label="",style="dashed", color="red", weight=0]; 2364[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2364 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2365 -> 541[label="",style="dashed", color="red", weight=0]; 2365[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2365 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2366 -> 542[label="",style="dashed", color="red", weight=0]; 2366[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2366 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2367 -> 543[label="",style="dashed", color="red", weight=0]; 2367[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2367 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2368 -> 544[label="",style="dashed", color="red", weight=0]; 2368[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2368 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2369 -> 545[label="",style="dashed", color="red", weight=0]; 2369[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2369 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2370 -> 546[label="",style="dashed", color="red", weight=0]; 2370[label="xuu500002 == xuu40002",fontsize=16,color="magenta"];2370 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2371 -> 533[label="",style="dashed", color="red", weight=0]; 2371[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2371 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2372 -> 534[label="",style="dashed", color="red", weight=0]; 2372[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2372 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2373 -> 535[label="",style="dashed", color="red", weight=0]; 2373[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2373 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2374 -> 536[label="",style="dashed", color="red", weight=0]; 2374[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2374 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2375 -> 537[label="",style="dashed", color="red", weight=0]; 2375[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2375 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2376 -> 538[label="",style="dashed", color="red", weight=0]; 2376[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2376 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2377 -> 539[label="",style="dashed", color="red", weight=0]; 2377[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2377 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2378 -> 540[label="",style="dashed", color="red", weight=0]; 2378[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2378 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2379 -> 541[label="",style="dashed", color="red", weight=0]; 2379[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2379 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2380 -> 542[label="",style="dashed", color="red", weight=0]; 2380[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2380 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2381 -> 543[label="",style="dashed", color="red", weight=0]; 2381[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2381 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2382 -> 544[label="",style="dashed", color="red", weight=0]; 2382[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2382 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2383 -> 545[label="",style="dashed", color="red", weight=0]; 2383[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2383 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2384 -> 546[label="",style="dashed", color="red", weight=0]; 2384[label="xuu500001 == xuu40001",fontsize=16,color="magenta"];2384 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2385[label="xuu40000",fontsize=16,color="green",shape="box"];2386[label="xuu500000",fontsize=16,color="green",shape="box"];2387[label="xuu40000",fontsize=16,color="green",shape="box"];2388[label="xuu500000",fontsize=16,color="green",shape="box"];2389[label="xuu40000",fontsize=16,color="green",shape="box"];2390[label="xuu500000",fontsize=16,color="green",shape="box"];2391[label="xuu40000",fontsize=16,color="green",shape="box"];2392[label="xuu500000",fontsize=16,color="green",shape="box"];2393[label="xuu40000",fontsize=16,color="green",shape="box"];2394[label="xuu500000",fontsize=16,color="green",shape="box"];2395[label="xuu40000",fontsize=16,color="green",shape="box"];2396[label="xuu500000",fontsize=16,color="green",shape="box"];2397[label="xuu40000",fontsize=16,color="green",shape="box"];2398[label="xuu500000",fontsize=16,color="green",shape="box"];2399[label="xuu40000",fontsize=16,color="green",shape="box"];2400[label="xuu500000",fontsize=16,color="green",shape="box"];2401[label="xuu40000",fontsize=16,color="green",shape="box"];2402[label="xuu500000",fontsize=16,color="green",shape="box"];2403[label="xuu40000",fontsize=16,color="green",shape="box"];2404[label="xuu500000",fontsize=16,color="green",shape="box"];2405[label="xuu40000",fontsize=16,color="green",shape="box"];2406[label="xuu500000",fontsize=16,color="green",shape="box"];2407[label="xuu40000",fontsize=16,color="green",shape="box"];2408[label="xuu500000",fontsize=16,color="green",shape="box"];2409[label="xuu40000",fontsize=16,color="green",shape="box"];2410[label="xuu500000",fontsize=16,color="green",shape="box"];2411[label="xuu40000",fontsize=16,color="green",shape="box"];2412[label="xuu500000",fontsize=16,color="green",shape="box"];2413 -> 1612[label="",style="dashed", color="red", weight=0]; 2413[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2413 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2414[label="False",fontsize=16,color="green",shape="box"];2415[label="False",fontsize=16,color="green",shape="box"];2416[label="True",fontsize=16,color="green",shape="box"];2417[label="False",fontsize=16,color="green",shape="box"];2418[label="True",fontsize=16,color="green",shape="box"];2419 -> 1612[label="",style="dashed", color="red", weight=0]; 2419[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2419 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2420[label="False",fontsize=16,color="green",shape="box"];2421[label="False",fontsize=16,color="green",shape="box"];2422[label="True",fontsize=16,color="green",shape="box"];2423[label="False",fontsize=16,color="green",shape="box"];2424[label="True",fontsize=16,color="green",shape="box"];2425[label="xuu40001",fontsize=16,color="green",shape="box"];2426[label="xuu500001",fontsize=16,color="green",shape="box"];2427[label="xuu40001",fontsize=16,color="green",shape="box"];2428[label="xuu500001",fontsize=16,color="green",shape="box"];2429[label="xuu40001",fontsize=16,color="green",shape="box"];2430[label="xuu500001",fontsize=16,color="green",shape="box"];2431[label="xuu40001",fontsize=16,color="green",shape="box"];2432[label="xuu500001",fontsize=16,color="green",shape="box"];2433[label="xuu40001",fontsize=16,color="green",shape="box"];2434[label="xuu500001",fontsize=16,color="green",shape="box"];2435[label="xuu40001",fontsize=16,color="green",shape="box"];2436[label="xuu500001",fontsize=16,color="green",shape="box"];2437[label="xuu40001",fontsize=16,color="green",shape="box"];2438[label="xuu500001",fontsize=16,color="green",shape="box"];2439[label="xuu40001",fontsize=16,color="green",shape="box"];2440[label="xuu500001",fontsize=16,color="green",shape="box"];2441[label="xuu40001",fontsize=16,color="green",shape="box"];2442[label="xuu500001",fontsize=16,color="green",shape="box"];2443[label="xuu40001",fontsize=16,color="green",shape="box"];2444[label="xuu500001",fontsize=16,color="green",shape="box"];2445[label="xuu40001",fontsize=16,color="green",shape="box"];2446[label="xuu500001",fontsize=16,color="green",shape="box"];2447[label="xuu40001",fontsize=16,color="green",shape="box"];2448[label="xuu500001",fontsize=16,color="green",shape="box"];2449[label="xuu40001",fontsize=16,color="green",shape="box"];2450[label="xuu500001",fontsize=16,color="green",shape="box"];2451[label="xuu40001",fontsize=16,color="green",shape="box"];2452[label="xuu500001",fontsize=16,color="green",shape="box"];2453[label="xuu40000",fontsize=16,color="green",shape="box"];2454[label="xuu500000",fontsize=16,color="green",shape="box"];2455[label="xuu40000",fontsize=16,color="green",shape="box"];2456[label="xuu500000",fontsize=16,color="green",shape="box"];2457[label="xuu40000",fontsize=16,color="green",shape="box"];2458[label="xuu500000",fontsize=16,color="green",shape="box"];2459[label="xuu40000",fontsize=16,color="green",shape="box"];2460[label="xuu500000",fontsize=16,color="green",shape="box"];2461[label="xuu40000",fontsize=16,color="green",shape="box"];2462[label="xuu500000",fontsize=16,color="green",shape="box"];2463[label="xuu40000",fontsize=16,color="green",shape="box"];2464[label="xuu500000",fontsize=16,color="green",shape="box"];2465[label="xuu40000",fontsize=16,color="green",shape="box"];2466[label="xuu500000",fontsize=16,color="green",shape="box"];2467[label="xuu40000",fontsize=16,color="green",shape="box"];2468[label="xuu500000",fontsize=16,color="green",shape="box"];2469[label="xuu40000",fontsize=16,color="green",shape="box"];2470[label="xuu500000",fontsize=16,color="green",shape="box"];2471[label="xuu40000",fontsize=16,color="green",shape="box"];2472[label="xuu500000",fontsize=16,color="green",shape="box"];2473[label="xuu40000",fontsize=16,color="green",shape="box"];2474[label="xuu500000",fontsize=16,color="green",shape="box"];2475[label="xuu40000",fontsize=16,color="green",shape="box"];2476[label="xuu500000",fontsize=16,color="green",shape="box"];2477[label="xuu40000",fontsize=16,color="green",shape="box"];2478[label="xuu500000",fontsize=16,color="green",shape="box"];2479[label="xuu40000",fontsize=16,color="green",shape="box"];2480[label="xuu500000",fontsize=16,color="green",shape="box"];2481[label="xuu40000",fontsize=16,color="green",shape="box"];2482[label="xuu500001",fontsize=16,color="green",shape="box"];2483[label="xuu40001",fontsize=16,color="green",shape="box"];2484[label="xuu500000",fontsize=16,color="green",shape="box"];2485[label="xuu40000",fontsize=16,color="green",shape="box"];2486[label="xuu500000",fontsize=16,color="green",shape="box"];2487[label="xuu40000",fontsize=16,color="green",shape="box"];2488[label="xuu500000",fontsize=16,color="green",shape="box"];2489[label="xuu40000",fontsize=16,color="green",shape="box"];2490[label="xuu500000",fontsize=16,color="green",shape="box"];2491[label="xuu40000",fontsize=16,color="green",shape="box"];2492[label="xuu500000",fontsize=16,color="green",shape="box"];2493[label="xuu40000",fontsize=16,color="green",shape="box"];2494[label="xuu500000",fontsize=16,color="green",shape="box"];2495[label="xuu40000",fontsize=16,color="green",shape="box"];2496[label="xuu500000",fontsize=16,color="green",shape="box"];2497[label="xuu40000",fontsize=16,color="green",shape="box"];2498[label="xuu500000",fontsize=16,color="green",shape="box"];2499[label="xuu40000",fontsize=16,color="green",shape="box"];2500[label="xuu500000",fontsize=16,color="green",shape="box"];2501[label="xuu40000",fontsize=16,color="green",shape="box"];2502[label="xuu500000",fontsize=16,color="green",shape="box"];2503[label="xuu40000",fontsize=16,color="green",shape="box"];2504[label="xuu500000",fontsize=16,color="green",shape="box"];2505[label="xuu40000",fontsize=16,color="green",shape="box"];2506[label="xuu500000",fontsize=16,color="green",shape="box"];2507[label="xuu40000",fontsize=16,color="green",shape="box"];2508[label="xuu500000",fontsize=16,color="green",shape="box"];2509[label="xuu40000",fontsize=16,color="green",shape="box"];2510[label="xuu500000",fontsize=16,color="green",shape="box"];2511[label="xuu40000",fontsize=16,color="green",shape="box"];2512[label="xuu500000",fontsize=16,color="green",shape="box"];2513[label="xuu40000",fontsize=16,color="green",shape="box"];2514[label="xuu500001",fontsize=16,color="green",shape="box"];2515[label="xuu40001",fontsize=16,color="green",shape="box"];2516[label="xuu500000",fontsize=16,color="green",shape="box"];2517[label="primEqNat (Succ xuu5000000) (Succ xuu400000)",fontsize=16,color="black",shape="box"];2517 -> 2709[label="",style="solid", color="black", weight=3]; 2518[label="primEqNat (Succ xuu5000000) Zero",fontsize=16,color="black",shape="box"];2518 -> 2710[label="",style="solid", color="black", weight=3]; 2519[label="primEqNat Zero (Succ xuu400000)",fontsize=16,color="black",shape="box"];2519 -> 2711[label="",style="solid", color="black", weight=3]; 2520[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2520 -> 2712[label="",style="solid", color="black", weight=3]; 2521[label="xuu63",fontsize=16,color="green",shape="box"];2522[label="xuu62",fontsize=16,color="green",shape="box"];2523 -> 2713[label="",style="dashed", color="red", weight=0]; 2523[label="not (xuu210 == GT)",fontsize=16,color="magenta"];2523 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2524[label="xuu63",fontsize=16,color="green",shape="box"];2525[label="xuu62",fontsize=16,color="green",shape="box"];2526[label="xuu63",fontsize=16,color="green",shape="box"];2527[label="xuu62",fontsize=16,color="green",shape="box"];2528 -> 1862[label="",style="dashed", color="red", weight=0]; 2528[label="xuu620 < xuu630 || xuu620 == xuu630 && (xuu621 < xuu631 || xuu621 == xuu631 && xuu622 <= xuu632)",fontsize=16,color="magenta"];2528 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2529[label="xuu63",fontsize=16,color="green",shape="box"];2530[label="xuu62",fontsize=16,color="green",shape="box"];2531[label="xuu63",fontsize=16,color="green",shape="box"];2532[label="xuu62",fontsize=16,color="green",shape="box"];2533[label="xuu63",fontsize=16,color="green",shape="box"];2534[label="xuu62",fontsize=16,color="green",shape="box"];2535[label="True",fontsize=16,color="green",shape="box"];2536[label="True",fontsize=16,color="green",shape="box"];2537[label="False",fontsize=16,color="green",shape="box"];2538[label="True",fontsize=16,color="green",shape="box"];2539[label="xuu63",fontsize=16,color="green",shape="box"];2540[label="xuu62",fontsize=16,color="green",shape="box"];2541[label="xuu620 <= xuu630",fontsize=16,color="blue",shape="box"];4512[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 2725[label="",style="solid", color="blue", weight=3]; 4513[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 2726[label="",style="solid", color="blue", weight=3]; 4514[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 2727[label="",style="solid", color="blue", weight=3]; 4515[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 2728[label="",style="solid", color="blue", weight=3]; 4516[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 2729[label="",style="solid", color="blue", weight=3]; 4517[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 2730[label="",style="solid", color="blue", weight=3]; 4518[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 2731[label="",style="solid", color="blue", weight=3]; 4519[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 2732[label="",style="solid", color="blue", weight=3]; 4520[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 2733[label="",style="solid", color="blue", weight=3]; 4521[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 2734[label="",style="solid", color="blue", weight=3]; 4522[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 2735[label="",style="solid", color="blue", weight=3]; 4523[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 2736[label="",style="solid", color="blue", weight=3]; 4524[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 2737[label="",style="solid", color="blue", weight=3]; 4525[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2541 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 2738[label="",style="solid", color="blue", weight=3]; 2542[label="True",fontsize=16,color="green",shape="box"];2543[label="False",fontsize=16,color="green",shape="box"];2544[label="xuu620 <= xuu630",fontsize=16,color="blue",shape="box"];4526[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 2739[label="",style="solid", color="blue", weight=3]; 4527[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 2740[label="",style="solid", color="blue", weight=3]; 4528[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 2741[label="",style="solid", color="blue", weight=3]; 4529[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 2742[label="",style="solid", color="blue", weight=3]; 4530[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 2743[label="",style="solid", color="blue", weight=3]; 4531[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 2744[label="",style="solid", color="blue", weight=3]; 4532[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 2745[label="",style="solid", color="blue", weight=3]; 4533[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 2746[label="",style="solid", color="blue", weight=3]; 4534[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 2747[label="",style="solid", color="blue", weight=3]; 4535[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 2748[label="",style="solid", color="blue", weight=3]; 4536[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 2749[label="",style="solid", color="blue", weight=3]; 4537[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 2750[label="",style="solid", color="blue", weight=3]; 4538[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 2751[label="",style="solid", color="blue", weight=3]; 4539[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2544 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 2752[label="",style="solid", color="blue", weight=3]; 2545[label="True",fontsize=16,color="green",shape="box"];2546[label="True",fontsize=16,color="green",shape="box"];2547[label="False",fontsize=16,color="green",shape="box"];2548[label="xuu620 <= xuu630",fontsize=16,color="blue",shape="box"];4540[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 2753[label="",style="solid", color="blue", weight=3]; 4541[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 2754[label="",style="solid", color="blue", weight=3]; 4542[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 2755[label="",style="solid", color="blue", weight=3]; 4543[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 2756[label="",style="solid", color="blue", weight=3]; 4544[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 2757[label="",style="solid", color="blue", weight=3]; 4545[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 2758[label="",style="solid", color="blue", weight=3]; 4546[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 2759[label="",style="solid", color="blue", weight=3]; 4547[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 2760[label="",style="solid", color="blue", weight=3]; 4548[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 2761[label="",style="solid", color="blue", weight=3]; 4549[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 2762[label="",style="solid", color="blue", weight=3]; 4550[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 2763[label="",style="solid", color="blue", weight=3]; 4551[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 2764[label="",style="solid", color="blue", weight=3]; 4552[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 2765[label="",style="solid", color="blue", weight=3]; 4553[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 2766[label="",style="solid", color="blue", weight=3]; 2549[label="xuu63",fontsize=16,color="green",shape="box"];2550[label="xuu62",fontsize=16,color="green",shape="box"];2551 -> 1862[label="",style="dashed", color="red", weight=0]; 2551[label="xuu620 < xuu630 || xuu620 == xuu630 && xuu621 <= xuu631",fontsize=16,color="magenta"];2551 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2552[label="True",fontsize=16,color="green",shape="box"];2553[label="True",fontsize=16,color="green",shape="box"];2554[label="True",fontsize=16,color="green",shape="box"];2555[label="False",fontsize=16,color="green",shape="box"];2556[label="True",fontsize=16,color="green",shape="box"];2557[label="True",fontsize=16,color="green",shape="box"];2558[label="False",fontsize=16,color="green",shape="box"];2559[label="False",fontsize=16,color="green",shape="box"];2560[label="True",fontsize=16,color="green",shape="box"];2561[label="compare0 (xuu188,xuu189) (xuu190,xuu191) otherwise",fontsize=16,color="black",shape="box"];2561 -> 2769[label="",style="solid", color="black", weight=3]; 2562[label="LT",fontsize=16,color="green",shape="box"];2563[label="xuu43",fontsize=16,color="green",shape="box"];2564 -> 408[label="",style="dashed", color="red", weight=0]; 2564[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2564 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2209[label="",style="dashed", color="red", weight=0]; 2565[label="FiniteMap.mkBalBranch6Size_l [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2566[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 False",fontsize=16,color="black",shape="box"];2566 -> 2772[label="",style="solid", color="black", weight=3]; 2567[label="FiniteMap.mkBalBranch6MkBalBranch3 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];2567 -> 2773[label="",style="solid", color="black", weight=3]; 2568[label="error []",fontsize=16,color="red",shape="box"];2569[label="FiniteMap.mkBalBranch6MkBalBranch02 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];2569 -> 2774[label="",style="solid", color="black", weight=3]; 2922 -> 2343[label="",style="dashed", color="red", weight=0]; 2922[label="primPlusNat xuu21200 xuu21100",fontsize=16,color="magenta"];2922 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2929[label="",style="dashed", color="magenta", weight=3]; 3753 -> 2194[label="",style="dashed", color="red", weight=0]; 3753[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310)",fontsize=16,color="magenta"];3753 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3754[label="FiniteMap.sizeFM xuu311",fontsize=16,color="burlywood",shape="triangle"];4554[label="xuu311/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 3757[label="",style="solid", color="burlywood", weight=3]; 4555[label="xuu311/FiniteMap.Branch xuu3110 xuu3111 xuu3112 xuu3113 xuu3114",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4555[label="",style="solid", color="burlywood", weight=9]; 4555 -> 3758[label="",style="solid", color="burlywood", weight=3]; 2573 -> 3508[label="",style="dashed", color="red", weight=0]; 2573[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu400 : xuu401) xuu41 xuu29 xuu44",fontsize=16,color="magenta"];2573 -> 3519[label="",style="dashed", color="magenta", weight=3]; 2573 -> 3520[label="",style="dashed", color="magenta", weight=3]; 2573 -> 3521[label="",style="dashed", color="magenta", weight=3]; 2573 -> 3522[label="",style="dashed", color="magenta", weight=3]; 2573 -> 3523[label="",style="dashed", color="magenta", weight=3]; 2574[label="error []",fontsize=16,color="red",shape="box"];2575[label="FiniteMap.mkBalBranch6MkBalBranch12 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294)",fontsize=16,color="black",shape="box"];2575 -> 2779[label="",style="solid", color="black", weight=3]; 2576 -> 1819[label="",style="dashed", color="red", weight=0]; 2576[label="FiniteMap.sizeFM xuu443",fontsize=16,color="magenta"];2576 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2577 -> 408[label="",style="dashed", color="red", weight=0]; 2577[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2577 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2578[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 False",fontsize=16,color="black",shape="box"];2578 -> 2783[label="",style="solid", color="black", weight=3]; 2579[label="FiniteMap.mkBalBranch6MkBalBranch01 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2579 -> 2784[label="",style="solid", color="black", weight=3]; 2580[label="xuu103",fontsize=16,color="green",shape="box"];2581[label="xuu106",fontsize=16,color="green",shape="box"];2582[label="xuu103",fontsize=16,color="green",shape="box"];2583[label="xuu106",fontsize=16,color="green",shape="box"];2584[label="xuu103",fontsize=16,color="green",shape="box"];2585[label="xuu106",fontsize=16,color="green",shape="box"];2586[label="xuu103",fontsize=16,color="green",shape="box"];2587[label="xuu106",fontsize=16,color="green",shape="box"];2588[label="xuu103",fontsize=16,color="green",shape="box"];2589[label="xuu106",fontsize=16,color="green",shape="box"];2590[label="xuu103",fontsize=16,color="green",shape="box"];2591[label="xuu106",fontsize=16,color="green",shape="box"];2592[label="xuu103",fontsize=16,color="green",shape="box"];2593[label="xuu106",fontsize=16,color="green",shape="box"];2594[label="xuu103",fontsize=16,color="green",shape="box"];2595[label="xuu106",fontsize=16,color="green",shape="box"];2596[label="xuu103",fontsize=16,color="green",shape="box"];2597[label="xuu106",fontsize=16,color="green",shape="box"];2598[label="xuu103",fontsize=16,color="green",shape="box"];2599[label="xuu106",fontsize=16,color="green",shape="box"];2600[label="xuu103",fontsize=16,color="green",shape="box"];2601[label="xuu106",fontsize=16,color="green",shape="box"];2602[label="xuu103",fontsize=16,color="green",shape="box"];2603[label="xuu106",fontsize=16,color="green",shape="box"];2604[label="xuu103",fontsize=16,color="green",shape="box"];2605[label="xuu106",fontsize=16,color="green",shape="box"];2606[label="xuu103",fontsize=16,color="green",shape="box"];2607[label="xuu106",fontsize=16,color="green",shape="box"];2608[label="xuu105",fontsize=16,color="green",shape="box"];2609[label="xuu102",fontsize=16,color="green",shape="box"];2610[label="xuu105",fontsize=16,color="green",shape="box"];2611[label="xuu102",fontsize=16,color="green",shape="box"];2612[label="xuu105",fontsize=16,color="green",shape="box"];2613[label="xuu102",fontsize=16,color="green",shape="box"];2614[label="xuu105",fontsize=16,color="green",shape="box"];2615[label="xuu102",fontsize=16,color="green",shape="box"];2616[label="xuu105",fontsize=16,color="green",shape="box"];2617[label="xuu102",fontsize=16,color="green",shape="box"];2618[label="xuu105",fontsize=16,color="green",shape="box"];2619[label="xuu102",fontsize=16,color="green",shape="box"];2620[label="xuu105",fontsize=16,color="green",shape="box"];2621[label="xuu102",fontsize=16,color="green",shape="box"];2622[label="xuu105",fontsize=16,color="green",shape="box"];2623[label="xuu102",fontsize=16,color="green",shape="box"];2624[label="xuu105",fontsize=16,color="green",shape="box"];2625[label="xuu102",fontsize=16,color="green",shape="box"];2626[label="xuu105",fontsize=16,color="green",shape="box"];2627[label="xuu102",fontsize=16,color="green",shape="box"];2628[label="xuu105",fontsize=16,color="green",shape="box"];2629[label="xuu102",fontsize=16,color="green",shape="box"];2630[label="xuu105",fontsize=16,color="green",shape="box"];2631[label="xuu102",fontsize=16,color="green",shape="box"];2632[label="xuu105",fontsize=16,color="green",shape="box"];2633[label="xuu102",fontsize=16,color="green",shape="box"];2634[label="xuu105",fontsize=16,color="green",shape="box"];2635[label="xuu102",fontsize=16,color="green",shape="box"];2636[label="compare0 (xuu173,xuu174,xuu175) (xuu176,xuu177,xuu178) True",fontsize=16,color="black",shape="box"];2636 -> 2785[label="",style="solid", color="black", weight=3]; 2637[label="xuu400000",fontsize=16,color="green",shape="box"];2638[label="Succ xuu5000100",fontsize=16,color="green",shape="box"];2639[label="primPlusNat (Succ xuu2220) (Succ xuu5000100)",fontsize=16,color="black",shape="box"];2639 -> 2786[label="",style="solid", color="black", weight=3]; 2640[label="primPlusNat Zero (Succ xuu5000100)",fontsize=16,color="black",shape="box"];2640 -> 2787[label="",style="solid", color="black", weight=3]; 2649[label="xuu40002",fontsize=16,color="green",shape="box"];2650[label="xuu500002",fontsize=16,color="green",shape="box"];2651[label="xuu40002",fontsize=16,color="green",shape="box"];2652[label="xuu500002",fontsize=16,color="green",shape="box"];2653[label="xuu40002",fontsize=16,color="green",shape="box"];2654[label="xuu500002",fontsize=16,color="green",shape="box"];2655[label="xuu40002",fontsize=16,color="green",shape="box"];2656[label="xuu500002",fontsize=16,color="green",shape="box"];2657[label="xuu40002",fontsize=16,color="green",shape="box"];2658[label="xuu500002",fontsize=16,color="green",shape="box"];2659[label="xuu40002",fontsize=16,color="green",shape="box"];2660[label="xuu500002",fontsize=16,color="green",shape="box"];2661[label="xuu40002",fontsize=16,color="green",shape="box"];2662[label="xuu500002",fontsize=16,color="green",shape="box"];2663[label="xuu40002",fontsize=16,color="green",shape="box"];2664[label="xuu500002",fontsize=16,color="green",shape="box"];2665[label="xuu40002",fontsize=16,color="green",shape="box"];2666[label="xuu500002",fontsize=16,color="green",shape="box"];2667[label="xuu40002",fontsize=16,color="green",shape="box"];2668[label="xuu500002",fontsize=16,color="green",shape="box"];2669[label="xuu40002",fontsize=16,color="green",shape="box"];2670[label="xuu500002",fontsize=16,color="green",shape="box"];2671[label="xuu40002",fontsize=16,color="green",shape="box"];2672[label="xuu500002",fontsize=16,color="green",shape="box"];2673[label="xuu40002",fontsize=16,color="green",shape="box"];2674[label="xuu500002",fontsize=16,color="green",shape="box"];2675[label="xuu40002",fontsize=16,color="green",shape="box"];2676[label="xuu500002",fontsize=16,color="green",shape="box"];2677[label="xuu40001",fontsize=16,color="green",shape="box"];2678[label="xuu500001",fontsize=16,color="green",shape="box"];2679[label="xuu40001",fontsize=16,color="green",shape="box"];2680[label="xuu500001",fontsize=16,color="green",shape="box"];2681[label="xuu40001",fontsize=16,color="green",shape="box"];2682[label="xuu500001",fontsize=16,color="green",shape="box"];2683[label="xuu40001",fontsize=16,color="green",shape="box"];2684[label="xuu500001",fontsize=16,color="green",shape="box"];2685[label="xuu40001",fontsize=16,color="green",shape="box"];2686[label="xuu500001",fontsize=16,color="green",shape="box"];2687[label="xuu40001",fontsize=16,color="green",shape="box"];2688[label="xuu500001",fontsize=16,color="green",shape="box"];2689[label="xuu40001",fontsize=16,color="green",shape="box"];2690[label="xuu500001",fontsize=16,color="green",shape="box"];2691[label="xuu40001",fontsize=16,color="green",shape="box"];2692[label="xuu500001",fontsize=16,color="green",shape="box"];2693[label="xuu40001",fontsize=16,color="green",shape="box"];2694[label="xuu500001",fontsize=16,color="green",shape="box"];2695[label="xuu40001",fontsize=16,color="green",shape="box"];2696[label="xuu500001",fontsize=16,color="green",shape="box"];2697[label="xuu40001",fontsize=16,color="green",shape="box"];2698[label="xuu500001",fontsize=16,color="green",shape="box"];2699[label="xuu40001",fontsize=16,color="green",shape="box"];2700[label="xuu500001",fontsize=16,color="green",shape="box"];2701[label="xuu40001",fontsize=16,color="green",shape="box"];2702[label="xuu500001",fontsize=16,color="green",shape="box"];2703[label="xuu40001",fontsize=16,color="green",shape="box"];2704[label="xuu500001",fontsize=16,color="green",shape="box"];2705[label="xuu400000",fontsize=16,color="green",shape="box"];2706[label="xuu5000000",fontsize=16,color="green",shape="box"];2707[label="xuu400000",fontsize=16,color="green",shape="box"];2708[label="xuu5000000",fontsize=16,color="green",shape="box"];2709 -> 1612[label="",style="dashed", color="red", weight=0]; 2709[label="primEqNat xuu5000000 xuu400000",fontsize=16,color="magenta"];2709 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2710[label="False",fontsize=16,color="green",shape="box"];2711[label="False",fontsize=16,color="green",shape="box"];2712[label="True",fontsize=16,color="green",shape="box"];2714 -> 533[label="",style="dashed", color="red", weight=0]; 2714[label="xuu210 == GT",fontsize=16,color="magenta"];2714 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2713[label="not xuu223",fontsize=16,color="burlywood",shape="triangle"];4556[label="xuu223/False",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 2792[label="",style="solid", color="burlywood", weight=3]; 4557[label="xuu223/True",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 2793[label="",style="solid", color="burlywood", weight=3]; 2723[label="xuu620 < xuu630",fontsize=16,color="blue",shape="box"];4558[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 2800[label="",style="solid", color="blue", weight=3]; 4559[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 2801[label="",style="solid", color="blue", weight=3]; 4560[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 2802[label="",style="solid", color="blue", weight=3]; 4561[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 2803[label="",style="solid", color="blue", weight=3]; 4562[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 2804[label="",style="solid", color="blue", weight=3]; 4563[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 2805[label="",style="solid", color="blue", weight=3]; 4564[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 2806[label="",style="solid", color="blue", weight=3]; 4565[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 2807[label="",style="solid", color="blue", weight=3]; 4566[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 2808[label="",style="solid", color="blue", weight=3]; 4567[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 2809[label="",style="solid", color="blue", weight=3]; 4568[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 2810[label="",style="solid", color="blue", weight=3]; 4569[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 2811[label="",style="solid", color="blue", weight=3]; 4570[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 2812[label="",style="solid", color="blue", weight=3]; 4571[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 2813[label="",style="solid", color="blue", weight=3]; 2724 -> 1128[label="",style="dashed", color="red", weight=0]; 2724[label="xuu620 == xuu630 && (xuu621 < xuu631 || xuu621 == xuu631 && xuu622 <= xuu632)",fontsize=16,color="magenta"];2724 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1448[label="",style="dashed", color="red", weight=0]; 2725[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2725 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2726 -> 1449[label="",style="dashed", color="red", weight=0]; 2726[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2726 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2727 -> 1450[label="",style="dashed", color="red", weight=0]; 2727[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2727 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1451[label="",style="dashed", color="red", weight=0]; 2728[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2728 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2729 -> 1452[label="",style="dashed", color="red", weight=0]; 2729[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2729 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2730 -> 1453[label="",style="dashed", color="red", weight=0]; 2730[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2730 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2731 -> 1454[label="",style="dashed", color="red", weight=0]; 2731[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2731 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2732 -> 1455[label="",style="dashed", color="red", weight=0]; 2732[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2732 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2733 -> 1456[label="",style="dashed", color="red", weight=0]; 2733[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2733 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2734 -> 1457[label="",style="dashed", color="red", weight=0]; 2734[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2734 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2735 -> 1458[label="",style="dashed", color="red", weight=0]; 2735[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2735 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2736 -> 1459[label="",style="dashed", color="red", weight=0]; 2736[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2736 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2737 -> 1460[label="",style="dashed", color="red", weight=0]; 2737[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2737 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2738 -> 1461[label="",style="dashed", color="red", weight=0]; 2738[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2738 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2738 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2739 -> 1448[label="",style="dashed", color="red", weight=0]; 2739[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2739 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2740 -> 1449[label="",style="dashed", color="red", weight=0]; 2740[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2740 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2741 -> 1450[label="",style="dashed", color="red", weight=0]; 2741[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2741 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2742 -> 1451[label="",style="dashed", color="red", weight=0]; 2742[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2742 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2743 -> 1452[label="",style="dashed", color="red", weight=0]; 2743[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2743 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2744 -> 1453[label="",style="dashed", color="red", weight=0]; 2744[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2744 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2745 -> 1454[label="",style="dashed", color="red", weight=0]; 2745[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2745 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2746 -> 1455[label="",style="dashed", color="red", weight=0]; 2746[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2746 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2747 -> 1456[label="",style="dashed", color="red", weight=0]; 2747[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2747 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2748 -> 1457[label="",style="dashed", color="red", weight=0]; 2748[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2748 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2749 -> 1458[label="",style="dashed", color="red", weight=0]; 2749[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2749 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2750 -> 1459[label="",style="dashed", color="red", weight=0]; 2750[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2750 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2751 -> 1460[label="",style="dashed", color="red", weight=0]; 2751[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2751 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2752 -> 1461[label="",style="dashed", color="red", weight=0]; 2752[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2752 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2753 -> 1448[label="",style="dashed", color="red", weight=0]; 2753[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2753 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2754 -> 1449[label="",style="dashed", color="red", weight=0]; 2754[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2754 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2755 -> 1450[label="",style="dashed", color="red", weight=0]; 2755[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2755 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2756 -> 1451[label="",style="dashed", color="red", weight=0]; 2756[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2756 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2757 -> 1452[label="",style="dashed", color="red", weight=0]; 2757[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2757 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2758 -> 1453[label="",style="dashed", color="red", weight=0]; 2758[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2758 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2759 -> 1454[label="",style="dashed", color="red", weight=0]; 2759[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2759 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2760 -> 1455[label="",style="dashed", color="red", weight=0]; 2760[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2760 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2761 -> 1456[label="",style="dashed", color="red", weight=0]; 2761[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2761 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2762 -> 1457[label="",style="dashed", color="red", weight=0]; 2762[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2762 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2763 -> 1458[label="",style="dashed", color="red", weight=0]; 2763[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2763 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2764 -> 1459[label="",style="dashed", color="red", weight=0]; 2764[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2764 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2765 -> 1460[label="",style="dashed", color="red", weight=0]; 2765[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2765 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2766 -> 1461[label="",style="dashed", color="red", weight=0]; 2766[label="xuu620 <= xuu630",fontsize=16,color="magenta"];2766 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2767[label="xuu620 < xuu630",fontsize=16,color="blue",shape="box"];4572[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 2900[label="",style="solid", color="blue", weight=3]; 4573[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 2901[label="",style="solid", color="blue", weight=3]; 4574[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 2902[label="",style="solid", color="blue", weight=3]; 4575[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 2903[label="",style="solid", color="blue", weight=3]; 4576[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 2904[label="",style="solid", color="blue", weight=3]; 4577[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 2905[label="",style="solid", color="blue", weight=3]; 4578[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 2906[label="",style="solid", color="blue", weight=3]; 4579[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 2907[label="",style="solid", color="blue", weight=3]; 4580[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 2908[label="",style="solid", color="blue", weight=3]; 4581[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 2909[label="",style="solid", color="blue", weight=3]; 4582[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 2910[label="",style="solid", color="blue", weight=3]; 4583[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 2911[label="",style="solid", color="blue", weight=3]; 4584[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 2912[label="",style="solid", color="blue", weight=3]; 4585[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2767 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 2913[label="",style="solid", color="blue", weight=3]; 2768 -> 1128[label="",style="dashed", color="red", weight=0]; 2768[label="xuu620 == xuu630 && xuu621 <= xuu631",fontsize=16,color="magenta"];2768 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2769[label="compare0 (xuu188,xuu189) (xuu190,xuu191) True",fontsize=16,color="black",shape="box"];2769 -> 2916[label="",style="solid", color="black", weight=3]; 2770 -> 1812[label="",style="dashed", color="red", weight=0]; 2770[label="FiniteMap.mkBalBranch6Size_r [] xuu41 xuu41 xuu43",fontsize=16,color="magenta"];2771 -> 1818[label="",style="dashed", color="red", weight=0]; 2771[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2772[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 otherwise",fontsize=16,color="black",shape="box"];2772 -> 2917[label="",style="solid", color="black", weight=3]; 2773[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 xuu43 xuu43 xuu41 xuu43",fontsize=16,color="burlywood",shape="box"];4586[label="xuu43/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4586[label="",style="solid", color="burlywood", weight=9]; 4586 -> 2918[label="",style="solid", color="burlywood", weight=3]; 4587[label="xuu43/FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4587[label="",style="solid", color="burlywood", weight=9]; 4587 -> 2919[label="",style="solid", color="burlywood", weight=3]; 2774 -> 2920[label="",style="dashed", color="red", weight=0]; 2774[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 (FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414)",fontsize=16,color="magenta"];2774 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2928[label="xuu21100",fontsize=16,color="green",shape="box"];2929[label="xuu21200",fontsize=16,color="green",shape="box"];3755[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3756[label="FiniteMap.mkBranchLeft_size xuu311 xuu308 xuu310",fontsize=16,color="black",shape="box"];3756 -> 3759[label="",style="solid", color="black", weight=3]; 3757[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3757 -> 3760[label="",style="solid", color="black", weight=3]; 3758[label="FiniteMap.sizeFM (FiniteMap.Branch xuu3110 xuu3111 xuu3112 xuu3113 xuu3114)",fontsize=16,color="black",shape="box"];3758 -> 3761[label="",style="solid", color="black", weight=3]; 3519[label="xuu29",fontsize=16,color="green",shape="box"];3520[label="xuu44",fontsize=16,color="green",shape="box"];3521[label="Succ Zero",fontsize=16,color="green",shape="box"];3522[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3523[label="xuu41",fontsize=16,color="green",shape="box"];2779 -> 2926[label="",style="dashed", color="red", weight=0]; 2779[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 (FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293)",fontsize=16,color="magenta"];2779 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2780[label="xuu443",fontsize=16,color="green",shape="box"];2781 -> 1819[label="",style="dashed", color="red", weight=0]; 2781[label="FiniteMap.sizeFM xuu444",fontsize=16,color="magenta"];2781 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2782[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2783[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 otherwise",fontsize=16,color="black",shape="box"];2783 -> 2931[label="",style="solid", color="black", weight=3]; 2784[label="FiniteMap.mkBalBranch6Single_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="black",shape="box"];2784 -> 2932[label="",style="solid", color="black", weight=3]; 2785[label="GT",fontsize=16,color="green",shape="box"];2786[label="Succ (Succ (primPlusNat xuu2220 xuu5000100))",fontsize=16,color="green",shape="box"];2786 -> 2933[label="",style="dashed", color="green", weight=3]; 2787[label="Succ xuu5000100",fontsize=16,color="green",shape="box"];2788[label="xuu400000",fontsize=16,color="green",shape="box"];2789[label="xuu5000000",fontsize=16,color="green",shape="box"];2790[label="GT",fontsize=16,color="green",shape="box"];2791[label="xuu210",fontsize=16,color="green",shape="box"];2792[label="not False",fontsize=16,color="black",shape="box"];2792 -> 2934[label="",style="solid", color="black", weight=3]; 2793[label="not True",fontsize=16,color="black",shape="box"];2793 -> 2935[label="",style="solid", color="black", weight=3]; 2800 -> 1424[label="",style="dashed", color="red", weight=0]; 2800[label="xuu620 < xuu630",fontsize=16,color="magenta"];2800 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2801 -> 1425[label="",style="dashed", color="red", weight=0]; 2801[label="xuu620 < xuu630",fontsize=16,color="magenta"];2801 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2802 -> 1426[label="",style="dashed", color="red", weight=0]; 2802[label="xuu620 < xuu630",fontsize=16,color="magenta"];2802 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2803 -> 1427[label="",style="dashed", color="red", weight=0]; 2803[label="xuu620 < xuu630",fontsize=16,color="magenta"];2803 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2804 -> 1428[label="",style="dashed", color="red", weight=0]; 2804[label="xuu620 < xuu630",fontsize=16,color="magenta"];2804 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2805 -> 1429[label="",style="dashed", color="red", weight=0]; 2805[label="xuu620 < xuu630",fontsize=16,color="magenta"];2805 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2806 -> 1430[label="",style="dashed", color="red", weight=0]; 2806[label="xuu620 < xuu630",fontsize=16,color="magenta"];2806 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2807 -> 1431[label="",style="dashed", color="red", weight=0]; 2807[label="xuu620 < xuu630",fontsize=16,color="magenta"];2807 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2808 -> 1432[label="",style="dashed", color="red", weight=0]; 2808[label="xuu620 < xuu630",fontsize=16,color="magenta"];2808 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2809 -> 1433[label="",style="dashed", color="red", weight=0]; 2809[label="xuu620 < xuu630",fontsize=16,color="magenta"];2809 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2809 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2810 -> 1434[label="",style="dashed", color="red", weight=0]; 2810[label="xuu620 < xuu630",fontsize=16,color="magenta"];2810 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2811 -> 1435[label="",style="dashed", color="red", weight=0]; 2811[label="xuu620 < xuu630",fontsize=16,color="magenta"];2811 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2812 -> 1436[label="",style="dashed", color="red", weight=0]; 2812[label="xuu620 < xuu630",fontsize=16,color="magenta"];2812 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2813 -> 1437[label="",style="dashed", color="red", weight=0]; 2813[label="xuu620 < xuu630",fontsize=16,color="magenta"];2813 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2814 -> 1862[label="",style="dashed", color="red", weight=0]; 2814[label="xuu621 < xuu631 || xuu621 == xuu631 && xuu622 <= xuu632",fontsize=16,color="magenta"];2814 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2815[label="xuu620 == xuu630",fontsize=16,color="blue",shape="box"];4588[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 2966[label="",style="solid", color="blue", weight=3]; 4589[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 2967[label="",style="solid", color="blue", weight=3]; 4590[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 2968[label="",style="solid", color="blue", weight=3]; 4591[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 2969[label="",style="solid", color="blue", weight=3]; 4592[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 2970[label="",style="solid", color="blue", weight=3]; 4593[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 2971[label="",style="solid", color="blue", weight=3]; 4594[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 2972[label="",style="solid", color="blue", weight=3]; 4595[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 2973[label="",style="solid", color="blue", weight=3]; 4596[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 2974[label="",style="solid", color="blue", weight=3]; 4597[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 2975[label="",style="solid", color="blue", weight=3]; 4598[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 2976[label="",style="solid", color="blue", weight=3]; 4599[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 2977[label="",style="solid", color="blue", weight=3]; 4600[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 2978[label="",style="solid", color="blue", weight=3]; 4601[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2815 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 2979[label="",style="solid", color="blue", weight=3]; 2816[label="xuu620",fontsize=16,color="green",shape="box"];2817[label="xuu630",fontsize=16,color="green",shape="box"];2818[label="xuu620",fontsize=16,color="green",shape="box"];2819[label="xuu630",fontsize=16,color="green",shape="box"];2820[label="xuu620",fontsize=16,color="green",shape="box"];2821[label="xuu630",fontsize=16,color="green",shape="box"];2822[label="xuu620",fontsize=16,color="green",shape="box"];2823[label="xuu630",fontsize=16,color="green",shape="box"];2824[label="xuu620",fontsize=16,color="green",shape="box"];2825[label="xuu630",fontsize=16,color="green",shape="box"];2826[label="xuu620",fontsize=16,color="green",shape="box"];2827[label="xuu630",fontsize=16,color="green",shape="box"];2828[label="xuu620",fontsize=16,color="green",shape="box"];2829[label="xuu630",fontsize=16,color="green",shape="box"];2830[label="xuu620",fontsize=16,color="green",shape="box"];2831[label="xuu630",fontsize=16,color="green",shape="box"];2832[label="xuu620",fontsize=16,color="green",shape="box"];2833[label="xuu630",fontsize=16,color="green",shape="box"];2834[label="xuu620",fontsize=16,color="green",shape="box"];2835[label="xuu630",fontsize=16,color="green",shape="box"];2836[label="xuu620",fontsize=16,color="green",shape="box"];2837[label="xuu630",fontsize=16,color="green",shape="box"];2838[label="xuu620",fontsize=16,color="green",shape="box"];2839[label="xuu630",fontsize=16,color="green",shape="box"];2840[label="xuu620",fontsize=16,color="green",shape="box"];2841[label="xuu630",fontsize=16,color="green",shape="box"];2842[label="xuu620",fontsize=16,color="green",shape="box"];2843[label="xuu630",fontsize=16,color="green",shape="box"];2844[label="xuu620",fontsize=16,color="green",shape="box"];2845[label="xuu630",fontsize=16,color="green",shape="box"];2846[label="xuu620",fontsize=16,color="green",shape="box"];2847[label="xuu630",fontsize=16,color="green",shape="box"];2848[label="xuu620",fontsize=16,color="green",shape="box"];2849[label="xuu630",fontsize=16,color="green",shape="box"];2850[label="xuu620",fontsize=16,color="green",shape="box"];2851[label="xuu630",fontsize=16,color="green",shape="box"];2852[label="xuu620",fontsize=16,color="green",shape="box"];2853[label="xuu630",fontsize=16,color="green",shape="box"];2854[label="xuu620",fontsize=16,color="green",shape="box"];2855[label="xuu630",fontsize=16,color="green",shape="box"];2856[label="xuu620",fontsize=16,color="green",shape="box"];2857[label="xuu630",fontsize=16,color="green",shape="box"];2858[label="xuu620",fontsize=16,color="green",shape="box"];2859[label="xuu630",fontsize=16,color="green",shape="box"];2860[label="xuu620",fontsize=16,color="green",shape="box"];2861[label="xuu630",fontsize=16,color="green",shape="box"];2862[label="xuu620",fontsize=16,color="green",shape="box"];2863[label="xuu630",fontsize=16,color="green",shape="box"];2864[label="xuu620",fontsize=16,color="green",shape="box"];2865[label="xuu630",fontsize=16,color="green",shape="box"];2866[label="xuu620",fontsize=16,color="green",shape="box"];2867[label="xuu630",fontsize=16,color="green",shape="box"];2868[label="xuu620",fontsize=16,color="green",shape="box"];2869[label="xuu630",fontsize=16,color="green",shape="box"];2870[label="xuu620",fontsize=16,color="green",shape="box"];2871[label="xuu630",fontsize=16,color="green",shape="box"];2872[label="xuu620",fontsize=16,color="green",shape="box"];2873[label="xuu630",fontsize=16,color="green",shape="box"];2874[label="xuu620",fontsize=16,color="green",shape="box"];2875[label="xuu630",fontsize=16,color="green",shape="box"];2876[label="xuu620",fontsize=16,color="green",shape="box"];2877[label="xuu630",fontsize=16,color="green",shape="box"];2878[label="xuu620",fontsize=16,color="green",shape="box"];2879[label="xuu630",fontsize=16,color="green",shape="box"];2880[label="xuu620",fontsize=16,color="green",shape="box"];2881[label="xuu630",fontsize=16,color="green",shape="box"];2882[label="xuu620",fontsize=16,color="green",shape="box"];2883[label="xuu630",fontsize=16,color="green",shape="box"];2884[label="xuu620",fontsize=16,color="green",shape="box"];2885[label="xuu630",fontsize=16,color="green",shape="box"];2886[label="xuu620",fontsize=16,color="green",shape="box"];2887[label="xuu630",fontsize=16,color="green",shape="box"];2888[label="xuu620",fontsize=16,color="green",shape="box"];2889[label="xuu630",fontsize=16,color="green",shape="box"];2890[label="xuu620",fontsize=16,color="green",shape="box"];2891[label="xuu630",fontsize=16,color="green",shape="box"];2892[label="xuu620",fontsize=16,color="green",shape="box"];2893[label="xuu630",fontsize=16,color="green",shape="box"];2894[label="xuu620",fontsize=16,color="green",shape="box"];2895[label="xuu630",fontsize=16,color="green",shape="box"];2896[label="xuu620",fontsize=16,color="green",shape="box"];2897[label="xuu630",fontsize=16,color="green",shape="box"];2898[label="xuu620",fontsize=16,color="green",shape="box"];2899[label="xuu630",fontsize=16,color="green",shape="box"];2900 -> 1424[label="",style="dashed", color="red", weight=0]; 2900[label="xuu620 < xuu630",fontsize=16,color="magenta"];2900 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2900 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2901 -> 1425[label="",style="dashed", color="red", weight=0]; 2901[label="xuu620 < xuu630",fontsize=16,color="magenta"];2901 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2901 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2902 -> 1426[label="",style="dashed", color="red", weight=0]; 2902[label="xuu620 < xuu630",fontsize=16,color="magenta"];2902 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2903 -> 1427[label="",style="dashed", color="red", weight=0]; 2903[label="xuu620 < xuu630",fontsize=16,color="magenta"];2903 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2903 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2904 -> 1428[label="",style="dashed", color="red", weight=0]; 2904[label="xuu620 < xuu630",fontsize=16,color="magenta"];2904 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2904 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2905 -> 1429[label="",style="dashed", color="red", weight=0]; 2905[label="xuu620 < xuu630",fontsize=16,color="magenta"];2905 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2905 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2906 -> 1430[label="",style="dashed", color="red", weight=0]; 2906[label="xuu620 < xuu630",fontsize=16,color="magenta"];2906 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2906 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2907 -> 1431[label="",style="dashed", color="red", weight=0]; 2907[label="xuu620 < xuu630",fontsize=16,color="magenta"];2907 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2907 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2908 -> 1432[label="",style="dashed", color="red", weight=0]; 2908[label="xuu620 < xuu630",fontsize=16,color="magenta"];2908 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2908 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2909 -> 1433[label="",style="dashed", color="red", weight=0]; 2909[label="xuu620 < xuu630",fontsize=16,color="magenta"];2909 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2909 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2910 -> 1434[label="",style="dashed", color="red", weight=0]; 2910[label="xuu620 < xuu630",fontsize=16,color="magenta"];2910 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2910 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2911 -> 1435[label="",style="dashed", color="red", weight=0]; 2911[label="xuu620 < xuu630",fontsize=16,color="magenta"];2911 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2911 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2912 -> 1436[label="",style="dashed", color="red", weight=0]; 2912[label="xuu620 < xuu630",fontsize=16,color="magenta"];2912 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2912 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2913 -> 1437[label="",style="dashed", color="red", weight=0]; 2913[label="xuu620 < xuu630",fontsize=16,color="magenta"];2913 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2913 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2914[label="xuu621 <= xuu631",fontsize=16,color="blue",shape="box"];4602[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 3008[label="",style="solid", color="blue", weight=3]; 4603[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 3009[label="",style="solid", color="blue", weight=3]; 4604[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 3010[label="",style="solid", color="blue", weight=3]; 4605[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 3011[label="",style="solid", color="blue", weight=3]; 4606[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 3012[label="",style="solid", color="blue", weight=3]; 4607[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 3013[label="",style="solid", color="blue", weight=3]; 4608[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 3014[label="",style="solid", color="blue", weight=3]; 4609[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 3015[label="",style="solid", color="blue", weight=3]; 4610[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 3016[label="",style="solid", color="blue", weight=3]; 4611[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 3017[label="",style="solid", color="blue", weight=3]; 4612[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 3018[label="",style="solid", color="blue", weight=3]; 4613[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 3019[label="",style="solid", color="blue", weight=3]; 4614[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 3020[label="",style="solid", color="blue", weight=3]; 4615[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 3021[label="",style="solid", color="blue", weight=3]; 2915[label="xuu620 == xuu630",fontsize=16,color="blue",shape="box"];4616[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 3022[label="",style="solid", color="blue", weight=3]; 4617[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 3023[label="",style="solid", color="blue", weight=3]; 4618[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 3024[label="",style="solid", color="blue", weight=3]; 4619[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 3025[label="",style="solid", color="blue", weight=3]; 4620[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 3026[label="",style="solid", color="blue", weight=3]; 4621[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 3027[label="",style="solid", color="blue", weight=3]; 4622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 3028[label="",style="solid", color="blue", weight=3]; 4623[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 3029[label="",style="solid", color="blue", weight=3]; 4624[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 3030[label="",style="solid", color="blue", weight=3]; 4625[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 3031[label="",style="solid", color="blue", weight=3]; 4626[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 3032[label="",style="solid", color="blue", weight=3]; 4627[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 3033[label="",style="solid", color="blue", weight=3]; 4628[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 3034[label="",style="solid", color="blue", weight=3]; 4629[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 3035[label="",style="solid", color="blue", weight=3]; 2916[label="GT",fontsize=16,color="green",shape="box"];2917[label="FiniteMap.mkBalBranch6MkBalBranch2 [] xuu41 xuu41 xuu43 [] xuu41 xuu43 xuu41 True",fontsize=16,color="black",shape="box"];2917 -> 3036[label="",style="solid", color="black", weight=3]; 2918[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu41 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2918 -> 3037[label="",style="solid", color="black", weight=3]; 2919[label="FiniteMap.mkBalBranch6MkBalBranch1 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434)",fontsize=16,color="black",shape="box"];2919 -> 3038[label="",style="solid", color="black", weight=3]; 2921 -> 1426[label="",style="dashed", color="red", weight=0]; 2921[label="FiniteMap.sizeFM xuu413 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];2921 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2920[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 xuu224",fontsize=16,color="burlywood",shape="triangle"];4630[label="xuu224/False",fontsize=10,color="white",style="solid",shape="box"];2920 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 3041[label="",style="solid", color="burlywood", weight=3]; 4631[label="xuu224/True",fontsize=10,color="white",style="solid",shape="box"];2920 -> 4631[label="",style="solid", color="burlywood", weight=9]; 4631 -> 3042[label="",style="solid", color="burlywood", weight=3]; 3759 -> 3754[label="",style="dashed", color="red", weight=0]; 3759[label="FiniteMap.sizeFM xuu310",fontsize=16,color="magenta"];3759 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3760[label="Pos Zero",fontsize=16,color="green",shape="box"];3761[label="xuu3112",fontsize=16,color="green",shape="box"];2927 -> 1426[label="",style="dashed", color="red", weight=0]; 2927[label="FiniteMap.sizeFM xuu294 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];2927 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2926[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 xuu228",fontsize=16,color="burlywood",shape="triangle"];4632[label="xuu228/False",fontsize=10,color="white",style="solid",shape="box"];2926 -> 4632[label="",style="solid", color="burlywood", weight=9]; 4632 -> 3048[label="",style="solid", color="burlywood", weight=3]; 4633[label="xuu228/True",fontsize=10,color="white",style="solid",shape="box"];2926 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2930[label="xuu444",fontsize=16,color="green",shape="box"];2931[label="FiniteMap.mkBalBranch6MkBalBranch00 (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu440 xuu441 xuu442 xuu443 xuu444 True",fontsize=16,color="black",shape="box"];2931 -> 3050[label="",style="solid", color="black", weight=3]; 2932 -> 3508[label="",style="dashed", color="red", weight=0]; 2932[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu440 xuu441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu400 : xuu401) xuu41 xuu29 xuu443) xuu444",fontsize=16,color="magenta"];2932 -> 3524[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3525[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3526[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3527[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3528[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2343[label="",style="dashed", color="red", weight=0]; 2933[label="primPlusNat xuu2220 xuu5000100",fontsize=16,color="magenta"];2933 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2934[label="True",fontsize=16,color="green",shape="box"];2935[label="False",fontsize=16,color="green",shape="box"];2936[label="xuu620",fontsize=16,color="green",shape="box"];2937[label="xuu630",fontsize=16,color="green",shape="box"];2938[label="xuu620",fontsize=16,color="green",shape="box"];2939[label="xuu630",fontsize=16,color="green",shape="box"];2940[label="xuu620",fontsize=16,color="green",shape="box"];2941[label="xuu630",fontsize=16,color="green",shape="box"];2942[label="xuu620",fontsize=16,color="green",shape="box"];2943[label="xuu630",fontsize=16,color="green",shape="box"];2944[label="xuu620",fontsize=16,color="green",shape="box"];2945[label="xuu630",fontsize=16,color="green",shape="box"];2946[label="xuu620",fontsize=16,color="green",shape="box"];2947[label="xuu630",fontsize=16,color="green",shape="box"];2948[label="xuu620",fontsize=16,color="green",shape="box"];2949[label="xuu630",fontsize=16,color="green",shape="box"];2950[label="xuu620",fontsize=16,color="green",shape="box"];2951[label="xuu630",fontsize=16,color="green",shape="box"];2952[label="xuu620",fontsize=16,color="green",shape="box"];2953[label="xuu630",fontsize=16,color="green",shape="box"];2954[label="xuu620",fontsize=16,color="green",shape="box"];2955[label="xuu630",fontsize=16,color="green",shape="box"];2956[label="xuu620",fontsize=16,color="green",shape="box"];2957[label="xuu630",fontsize=16,color="green",shape="box"];2958[label="xuu620",fontsize=16,color="green",shape="box"];2959[label="xuu630",fontsize=16,color="green",shape="box"];2960[label="xuu620",fontsize=16,color="green",shape="box"];2961[label="xuu630",fontsize=16,color="green",shape="box"];2962[label="xuu620",fontsize=16,color="green",shape="box"];2963[label="xuu630",fontsize=16,color="green",shape="box"];2964[label="xuu621 < xuu631",fontsize=16,color="blue",shape="box"];4634[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 3054[label="",style="solid", color="blue", weight=3]; 4635[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 3055[label="",style="solid", color="blue", weight=3]; 4636[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 3056[label="",style="solid", color="blue", weight=3]; 4637[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 3057[label="",style="solid", color="blue", weight=3]; 4638[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 3058[label="",style="solid", color="blue", weight=3]; 4639[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 3059[label="",style="solid", color="blue", weight=3]; 4640[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 3060[label="",style="solid", color="blue", weight=3]; 4641[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 3061[label="",style="solid", color="blue", weight=3]; 4642[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 3062[label="",style="solid", color="blue", weight=3]; 4643[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 3063[label="",style="solid", color="blue", weight=3]; 4644[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 3064[label="",style="solid", color="blue", weight=3]; 4645[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4645[label="",style="solid", color="blue", weight=9]; 4645 -> 3065[label="",style="solid", color="blue", weight=3]; 4646[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4646[label="",style="solid", color="blue", weight=9]; 4646 -> 3066[label="",style="solid", color="blue", weight=3]; 4647[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2964 -> 4647[label="",style="solid", color="blue", weight=9]; 4647 -> 3067[label="",style="solid", color="blue", weight=3]; 2965 -> 1128[label="",style="dashed", color="red", weight=0]; 2965[label="xuu621 == xuu631 && xuu622 <= xuu632",fontsize=16,color="magenta"];2965 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2965 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2966 -> 543[label="",style="dashed", color="red", weight=0]; 2966[label="xuu620 == xuu630",fontsize=16,color="magenta"];2966 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2966 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2967 -> 536[label="",style="dashed", color="red", weight=0]; 2967[label="xuu620 == xuu630",fontsize=16,color="magenta"];2967 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2967 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2968 -> 537[label="",style="dashed", color="red", weight=0]; 2968[label="xuu620 == xuu630",fontsize=16,color="magenta"];2968 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2969 -> 535[label="",style="dashed", color="red", weight=0]; 2969[label="xuu620 == xuu630",fontsize=16,color="magenta"];2969 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2969 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2970 -> 544[label="",style="dashed", color="red", weight=0]; 2970[label="xuu620 == xuu630",fontsize=16,color="magenta"];2970 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2971 -> 534[label="",style="dashed", color="red", weight=0]; 2971[label="xuu620 == xuu630",fontsize=16,color="magenta"];2971 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2971 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2972 -> 541[label="",style="dashed", color="red", weight=0]; 2972[label="xuu620 == xuu630",fontsize=16,color="magenta"];2972 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2973 -> 540[label="",style="dashed", color="red", weight=0]; 2973[label="xuu620 == xuu630",fontsize=16,color="magenta"];2973 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2974 -> 545[label="",style="dashed", color="red", weight=0]; 2974[label="xuu620 == xuu630",fontsize=16,color="magenta"];2974 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2974 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2975 -> 546[label="",style="dashed", color="red", weight=0]; 2975[label="xuu620 == xuu630",fontsize=16,color="magenta"];2975 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2976 -> 542[label="",style="dashed", color="red", weight=0]; 2976[label="xuu620 == xuu630",fontsize=16,color="magenta"];2976 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2977 -> 538[label="",style="dashed", color="red", weight=0]; 2977[label="xuu620 == xuu630",fontsize=16,color="magenta"];2977 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2978 -> 539[label="",style="dashed", color="red", weight=0]; 2978[label="xuu620 == xuu630",fontsize=16,color="magenta"];2978 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2979 -> 533[label="",style="dashed", color="red", weight=0]; 2979[label="xuu620 == xuu630",fontsize=16,color="magenta"];2979 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2979 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2980[label="xuu620",fontsize=16,color="green",shape="box"];2981[label="xuu630",fontsize=16,color="green",shape="box"];2982[label="xuu620",fontsize=16,color="green",shape="box"];2983[label="xuu630",fontsize=16,color="green",shape="box"];2984[label="xuu620",fontsize=16,color="green",shape="box"];2985[label="xuu630",fontsize=16,color="green",shape="box"];2986[label="xuu620",fontsize=16,color="green",shape="box"];2987[label="xuu630",fontsize=16,color="green",shape="box"];2988[label="xuu620",fontsize=16,color="green",shape="box"];2989[label="xuu630",fontsize=16,color="green",shape="box"];2990[label="xuu620",fontsize=16,color="green",shape="box"];2991[label="xuu630",fontsize=16,color="green",shape="box"];2992[label="xuu620",fontsize=16,color="green",shape="box"];2993[label="xuu630",fontsize=16,color="green",shape="box"];2994[label="xuu620",fontsize=16,color="green",shape="box"];2995[label="xuu630",fontsize=16,color="green",shape="box"];2996[label="xuu620",fontsize=16,color="green",shape="box"];2997[label="xuu630",fontsize=16,color="green",shape="box"];2998[label="xuu620",fontsize=16,color="green",shape="box"];2999[label="xuu630",fontsize=16,color="green",shape="box"];3000[label="xuu620",fontsize=16,color="green",shape="box"];3001[label="xuu630",fontsize=16,color="green",shape="box"];3002[label="xuu620",fontsize=16,color="green",shape="box"];3003[label="xuu630",fontsize=16,color="green",shape="box"];3004[label="xuu620",fontsize=16,color="green",shape="box"];3005[label="xuu630",fontsize=16,color="green",shape="box"];3006[label="xuu620",fontsize=16,color="green",shape="box"];3007[label="xuu630",fontsize=16,color="green",shape="box"];3008 -> 1448[label="",style="dashed", color="red", weight=0]; 3008[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3008 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3009 -> 1449[label="",style="dashed", color="red", weight=0]; 3009[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3009 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3010 -> 1450[label="",style="dashed", color="red", weight=0]; 3010[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3010 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3011 -> 1451[label="",style="dashed", color="red", weight=0]; 3011[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3011 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3012 -> 1452[label="",style="dashed", color="red", weight=0]; 3012[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3012 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3013 -> 1453[label="",style="dashed", color="red", weight=0]; 3013[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3013 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3014 -> 1454[label="",style="dashed", color="red", weight=0]; 3014[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3014 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3015 -> 1455[label="",style="dashed", color="red", weight=0]; 3015[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3015 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3015 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3016 -> 1456[label="",style="dashed", color="red", weight=0]; 3016[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3016 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3016 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3017 -> 1457[label="",style="dashed", color="red", weight=0]; 3017[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3017 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3017 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3018 -> 1458[label="",style="dashed", color="red", weight=0]; 3018[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3018 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3019 -> 1459[label="",style="dashed", color="red", weight=0]; 3019[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3019 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3020 -> 1460[label="",style="dashed", color="red", weight=0]; 3020[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3020 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3020 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3021 -> 1461[label="",style="dashed", color="red", weight=0]; 3021[label="xuu621 <= xuu631",fontsize=16,color="magenta"];3021 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3021 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3022 -> 543[label="",style="dashed", color="red", weight=0]; 3022[label="xuu620 == xuu630",fontsize=16,color="magenta"];3022 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3022 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3023 -> 536[label="",style="dashed", color="red", weight=0]; 3023[label="xuu620 == xuu630",fontsize=16,color="magenta"];3023 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3023 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3024 -> 537[label="",style="dashed", color="red", weight=0]; 3024[label="xuu620 == xuu630",fontsize=16,color="magenta"];3024 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3025 -> 535[label="",style="dashed", color="red", weight=0]; 3025[label="xuu620 == xuu630",fontsize=16,color="magenta"];3025 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3025 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3026 -> 544[label="",style="dashed", color="red", weight=0]; 3026[label="xuu620 == xuu630",fontsize=16,color="magenta"];3026 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3026 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3027 -> 534[label="",style="dashed", color="red", weight=0]; 3027[label="xuu620 == xuu630",fontsize=16,color="magenta"];3027 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3028 -> 541[label="",style="dashed", color="red", weight=0]; 3028[label="xuu620 == xuu630",fontsize=16,color="magenta"];3028 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3029 -> 540[label="",style="dashed", color="red", weight=0]; 3029[label="xuu620 == xuu630",fontsize=16,color="magenta"];3029 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3030 -> 545[label="",style="dashed", color="red", weight=0]; 3030[label="xuu620 == xuu630",fontsize=16,color="magenta"];3030 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3031 -> 546[label="",style="dashed", color="red", weight=0]; 3031[label="xuu620 == xuu630",fontsize=16,color="magenta"];3031 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3032 -> 542[label="",style="dashed", color="red", weight=0]; 3032[label="xuu620 == xuu630",fontsize=16,color="magenta"];3032 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3033 -> 538[label="",style="dashed", color="red", weight=0]; 3033[label="xuu620 == xuu630",fontsize=16,color="magenta"];3033 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3034 -> 539[label="",style="dashed", color="red", weight=0]; 3034[label="xuu620 == xuu630",fontsize=16,color="magenta"];3034 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3035 -> 533[label="",style="dashed", color="red", weight=0]; 3035[label="xuu620 == xuu630",fontsize=16,color="magenta"];3035 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3508[label="",style="dashed", color="red", weight=0]; 3036[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu41 xuu43 xuu41",fontsize=16,color="magenta"];3036 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3037[label="error []",fontsize=16,color="red",shape="box"];3038[label="FiniteMap.mkBalBranch6MkBalBranch12 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434)",fontsize=16,color="black",shape="box"];3038 -> 3155[label="",style="solid", color="black", weight=3]; 3039 -> 1819[label="",style="dashed", color="red", weight=0]; 3039[label="FiniteMap.sizeFM xuu413",fontsize=16,color="magenta"];3039 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3040 -> 408[label="",style="dashed", color="red", weight=0]; 3040[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3040 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3041[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 False",fontsize=16,color="black",shape="box"];3041 -> 3159[label="",style="solid", color="black", weight=3]; 3042[label="FiniteMap.mkBalBranch6MkBalBranch01 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3042 -> 3160[label="",style="solid", color="black", weight=3]; 3762[label="xuu310",fontsize=16,color="green",shape="box"];3046 -> 1819[label="",style="dashed", color="red", weight=0]; 3046[label="FiniteMap.sizeFM xuu294",fontsize=16,color="magenta"];3046 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3047 -> 408[label="",style="dashed", color="red", weight=0]; 3047[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3047 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3048[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 False",fontsize=16,color="black",shape="box"];3048 -> 3165[label="",style="solid", color="black", weight=3]; 3049[label="FiniteMap.mkBalBranch6MkBalBranch11 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3049 -> 3166[label="",style="solid", color="black", weight=3]; 3050[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 xuu443 xuu444)",fontsize=16,color="burlywood",shape="box"];4648[label="xuu443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 3167[label="",style="solid", color="burlywood", weight=3]; 4649[label="xuu443/FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 3168[label="",style="solid", color="burlywood", weight=3]; 3524 -> 3508[label="",style="dashed", color="red", weight=0]; 3524[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu400 : xuu401) xuu41 xuu29 xuu443",fontsize=16,color="magenta"];3524 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3525[label="xuu444",fontsize=16,color="green",shape="box"];3526[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3527[label="xuu440",fontsize=16,color="green",shape="box"];3528[label="xuu441",fontsize=16,color="green",shape="box"];3052[label="xuu5000100",fontsize=16,color="green",shape="box"];3053[label="xuu2220",fontsize=16,color="green",shape="box"];3054 -> 1424[label="",style="dashed", color="red", weight=0]; 3054[label="xuu621 < xuu631",fontsize=16,color="magenta"];3054 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3055 -> 1425[label="",style="dashed", color="red", weight=0]; 3055[label="xuu621 < xuu631",fontsize=16,color="magenta"];3055 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3056 -> 1426[label="",style="dashed", color="red", weight=0]; 3056[label="xuu621 < xuu631",fontsize=16,color="magenta"];3056 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3057 -> 1427[label="",style="dashed", color="red", weight=0]; 3057[label="xuu621 < xuu631",fontsize=16,color="magenta"];3057 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3058 -> 1428[label="",style="dashed", color="red", weight=0]; 3058[label="xuu621 < xuu631",fontsize=16,color="magenta"];3058 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3059 -> 1429[label="",style="dashed", color="red", weight=0]; 3059[label="xuu621 < xuu631",fontsize=16,color="magenta"];3059 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3060 -> 1430[label="",style="dashed", color="red", weight=0]; 3060[label="xuu621 < xuu631",fontsize=16,color="magenta"];3060 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3061 -> 1431[label="",style="dashed", color="red", weight=0]; 3061[label="xuu621 < xuu631",fontsize=16,color="magenta"];3061 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3062 -> 1432[label="",style="dashed", color="red", weight=0]; 3062[label="xuu621 < xuu631",fontsize=16,color="magenta"];3062 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3063 -> 1433[label="",style="dashed", color="red", weight=0]; 3063[label="xuu621 < xuu631",fontsize=16,color="magenta"];3063 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3064 -> 1434[label="",style="dashed", color="red", weight=0]; 3064[label="xuu621 < xuu631",fontsize=16,color="magenta"];3064 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3065 -> 1435[label="",style="dashed", color="red", weight=0]; 3065[label="xuu621 < xuu631",fontsize=16,color="magenta"];3065 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3066 -> 1436[label="",style="dashed", color="red", weight=0]; 3066[label="xuu621 < xuu631",fontsize=16,color="magenta"];3066 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3067 -> 1437[label="",style="dashed", color="red", weight=0]; 3067[label="xuu621 < xuu631",fontsize=16,color="magenta"];3067 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3068[label="xuu622 <= xuu632",fontsize=16,color="blue",shape="box"];4650[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4650[label="",style="solid", color="blue", weight=9]; 4650 -> 3198[label="",style="solid", color="blue", weight=3]; 4651[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4651[label="",style="solid", color="blue", weight=9]; 4651 -> 3199[label="",style="solid", color="blue", weight=3]; 4652[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4652[label="",style="solid", color="blue", weight=9]; 4652 -> 3200[label="",style="solid", color="blue", weight=3]; 4653[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4653[label="",style="solid", color="blue", weight=9]; 4653 -> 3201[label="",style="solid", color="blue", weight=3]; 4654[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 3202[label="",style="solid", color="blue", weight=3]; 4655[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 3203[label="",style="solid", color="blue", weight=3]; 4656[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 3204[label="",style="solid", color="blue", weight=3]; 4657[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 3205[label="",style="solid", color="blue", weight=3]; 4658[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 3206[label="",style="solid", color="blue", weight=3]; 4659[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 3207[label="",style="solid", color="blue", weight=3]; 4660[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 3208[label="",style="solid", color="blue", weight=3]; 4661[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 3209[label="",style="solid", color="blue", weight=3]; 4662[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 3210[label="",style="solid", color="blue", weight=3]; 4663[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3068 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 3211[label="",style="solid", color="blue", weight=3]; 3069[label="xuu621 == xuu631",fontsize=16,color="blue",shape="box"];4664[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 3212[label="",style="solid", color="blue", weight=3]; 4665[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 3213[label="",style="solid", color="blue", weight=3]; 4666[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 3214[label="",style="solid", color="blue", weight=3]; 4667[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 3215[label="",style="solid", color="blue", weight=3]; 4668[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 3216[label="",style="solid", color="blue", weight=3]; 4669[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4669[label="",style="solid", color="blue", weight=9]; 4669 -> 3217[label="",style="solid", color="blue", weight=3]; 4670[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4670[label="",style="solid", color="blue", weight=9]; 4670 -> 3218[label="",style="solid", color="blue", weight=3]; 4671[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4671[label="",style="solid", color="blue", weight=9]; 4671 -> 3219[label="",style="solid", color="blue", weight=3]; 4672[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4672[label="",style="solid", color="blue", weight=9]; 4672 -> 3220[label="",style="solid", color="blue", weight=3]; 4673[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4673[label="",style="solid", color="blue", weight=9]; 4673 -> 3221[label="",style="solid", color="blue", weight=3]; 4674[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4674[label="",style="solid", color="blue", weight=9]; 4674 -> 3222[label="",style="solid", color="blue", weight=3]; 4675[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4675[label="",style="solid", color="blue", weight=9]; 4675 -> 3223[label="",style="solid", color="blue", weight=3]; 4676[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4676[label="",style="solid", color="blue", weight=9]; 4676 -> 3224[label="",style="solid", color="blue", weight=3]; 4677[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3069 -> 4677[label="",style="solid", color="blue", weight=9]; 4677 -> 3225[label="",style="solid", color="blue", weight=3]; 3070[label="xuu630",fontsize=16,color="green",shape="box"];3071[label="xuu620",fontsize=16,color="green",shape="box"];3072[label="xuu630",fontsize=16,color="green",shape="box"];3073[label="xuu620",fontsize=16,color="green",shape="box"];3074[label="xuu630",fontsize=16,color="green",shape="box"];3075[label="xuu620",fontsize=16,color="green",shape="box"];3076[label="xuu630",fontsize=16,color="green",shape="box"];3077[label="xuu620",fontsize=16,color="green",shape="box"];3078[label="xuu630",fontsize=16,color="green",shape="box"];3079[label="xuu620",fontsize=16,color="green",shape="box"];3080[label="xuu630",fontsize=16,color="green",shape="box"];3081[label="xuu620",fontsize=16,color="green",shape="box"];3082[label="xuu630",fontsize=16,color="green",shape="box"];3083[label="xuu620",fontsize=16,color="green",shape="box"];3084[label="xuu630",fontsize=16,color="green",shape="box"];3085[label="xuu620",fontsize=16,color="green",shape="box"];3086[label="xuu630",fontsize=16,color="green",shape="box"];3087[label="xuu620",fontsize=16,color="green",shape="box"];3088[label="xuu630",fontsize=16,color="green",shape="box"];3089[label="xuu620",fontsize=16,color="green",shape="box"];3090[label="xuu630",fontsize=16,color="green",shape="box"];3091[label="xuu620",fontsize=16,color="green",shape="box"];3092[label="xuu630",fontsize=16,color="green",shape="box"];3093[label="xuu620",fontsize=16,color="green",shape="box"];3094[label="xuu630",fontsize=16,color="green",shape="box"];3095[label="xuu620",fontsize=16,color="green",shape="box"];3096[label="xuu630",fontsize=16,color="green",shape="box"];3097[label="xuu620",fontsize=16,color="green",shape="box"];3098[label="xuu621",fontsize=16,color="green",shape="box"];3099[label="xuu631",fontsize=16,color="green",shape="box"];3100[label="xuu621",fontsize=16,color="green",shape="box"];3101[label="xuu631",fontsize=16,color="green",shape="box"];3102[label="xuu621",fontsize=16,color="green",shape="box"];3103[label="xuu631",fontsize=16,color="green",shape="box"];3104[label="xuu621",fontsize=16,color="green",shape="box"];3105[label="xuu631",fontsize=16,color="green",shape="box"];3106[label="xuu621",fontsize=16,color="green",shape="box"];3107[label="xuu631",fontsize=16,color="green",shape="box"];3108[label="xuu621",fontsize=16,color="green",shape="box"];3109[label="xuu631",fontsize=16,color="green",shape="box"];3110[label="xuu621",fontsize=16,color="green",shape="box"];3111[label="xuu631",fontsize=16,color="green",shape="box"];3112[label="xuu621",fontsize=16,color="green",shape="box"];3113[label="xuu631",fontsize=16,color="green",shape="box"];3114[label="xuu621",fontsize=16,color="green",shape="box"];3115[label="xuu631",fontsize=16,color="green",shape="box"];3116[label="xuu621",fontsize=16,color="green",shape="box"];3117[label="xuu631",fontsize=16,color="green",shape="box"];3118[label="xuu621",fontsize=16,color="green",shape="box"];3119[label="xuu631",fontsize=16,color="green",shape="box"];3120[label="xuu621",fontsize=16,color="green",shape="box"];3121[label="xuu631",fontsize=16,color="green",shape="box"];3122[label="xuu621",fontsize=16,color="green",shape="box"];3123[label="xuu631",fontsize=16,color="green",shape="box"];3124[label="xuu621",fontsize=16,color="green",shape="box"];3125[label="xuu631",fontsize=16,color="green",shape="box"];3126[label="xuu630",fontsize=16,color="green",shape="box"];3127[label="xuu620",fontsize=16,color="green",shape="box"];3128[label="xuu630",fontsize=16,color="green",shape="box"];3129[label="xuu620",fontsize=16,color="green",shape="box"];3130[label="xuu630",fontsize=16,color="green",shape="box"];3131[label="xuu620",fontsize=16,color="green",shape="box"];3132[label="xuu630",fontsize=16,color="green",shape="box"];3133[label="xuu620",fontsize=16,color="green",shape="box"];3134[label="xuu630",fontsize=16,color="green",shape="box"];3135[label="xuu620",fontsize=16,color="green",shape="box"];3136[label="xuu630",fontsize=16,color="green",shape="box"];3137[label="xuu620",fontsize=16,color="green",shape="box"];3138[label="xuu630",fontsize=16,color="green",shape="box"];3139[label="xuu620",fontsize=16,color="green",shape="box"];3140[label="xuu630",fontsize=16,color="green",shape="box"];3141[label="xuu620",fontsize=16,color="green",shape="box"];3142[label="xuu630",fontsize=16,color="green",shape="box"];3143[label="xuu620",fontsize=16,color="green",shape="box"];3144[label="xuu630",fontsize=16,color="green",shape="box"];3145[label="xuu620",fontsize=16,color="green",shape="box"];3146[label="xuu630",fontsize=16,color="green",shape="box"];3147[label="xuu620",fontsize=16,color="green",shape="box"];3148[label="xuu630",fontsize=16,color="green",shape="box"];3149[label="xuu620",fontsize=16,color="green",shape="box"];3150[label="xuu630",fontsize=16,color="green",shape="box"];3151[label="xuu620",fontsize=16,color="green",shape="box"];3152[label="xuu630",fontsize=16,color="green",shape="box"];3153[label="xuu620",fontsize=16,color="green",shape="box"];3529[label="xuu43",fontsize=16,color="green",shape="box"];3530[label="xuu41",fontsize=16,color="green",shape="box"];3531[label="Succ Zero",fontsize=16,color="green",shape="box"];3532[label="[]",fontsize=16,color="green",shape="box"];3533[label="xuu41",fontsize=16,color="green",shape="box"];3155 -> 3226[label="",style="dashed", color="red", weight=0]; 3155[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 (FiniteMap.sizeFM xuu434 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433)",fontsize=16,color="magenta"];3155 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3156[label="xuu413",fontsize=16,color="green",shape="box"];3157 -> 1819[label="",style="dashed", color="red", weight=0]; 3157[label="FiniteMap.sizeFM xuu414",fontsize=16,color="magenta"];3157 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3158[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3159[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 otherwise",fontsize=16,color="black",shape="box"];3159 -> 3229[label="",style="solid", color="black", weight=3]; 3160[label="FiniteMap.mkBalBranch6Single_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="black",shape="box"];3160 -> 3230[label="",style="solid", color="black", weight=3]; 3162[label="xuu294",fontsize=16,color="green",shape="box"];3163 -> 1819[label="",style="dashed", color="red", weight=0]; 3163[label="FiniteMap.sizeFM xuu293",fontsize=16,color="magenta"];3163 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3164[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3165[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 otherwise",fontsize=16,color="black",shape="box"];3165 -> 3233[label="",style="solid", color="black", weight=3]; 3166[label="FiniteMap.mkBalBranch6Single_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44",fontsize=16,color="black",shape="box"];3166 -> 3234[label="",style="solid", color="black", weight=3]; 3167[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 FiniteMap.EmptyFM xuu444)",fontsize=16,color="black",shape="box"];3167 -> 3235[label="",style="solid", color="black", weight=3]; 3168[label="FiniteMap.mkBalBranch6Double_L (xuu400 : xuu401) xuu41 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444) xuu29 xuu29 (FiniteMap.Branch xuu440 xuu441 xuu442 (FiniteMap.Branch xuu4430 xuu4431 xuu4432 xuu4433 xuu4434) xuu444)",fontsize=16,color="black",shape="box"];3168 -> 3236[label="",style="solid", color="black", weight=3]; 3680[label="xuu29",fontsize=16,color="green",shape="box"];3681[label="xuu443",fontsize=16,color="green",shape="box"];3682[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3683[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3684[label="xuu41",fontsize=16,color="green",shape="box"];3170[label="xuu621",fontsize=16,color="green",shape="box"];3171[label="xuu631",fontsize=16,color="green",shape="box"];3172[label="xuu621",fontsize=16,color="green",shape="box"];3173[label="xuu631",fontsize=16,color="green",shape="box"];3174[label="xuu621",fontsize=16,color="green",shape="box"];3175[label="xuu631",fontsize=16,color="green",shape="box"];3176[label="xuu621",fontsize=16,color="green",shape="box"];3177[label="xuu631",fontsize=16,color="green",shape="box"];3178[label="xuu621",fontsize=16,color="green",shape="box"];3179[label="xuu631",fontsize=16,color="green",shape="box"];3180[label="xuu621",fontsize=16,color="green",shape="box"];3181[label="xuu631",fontsize=16,color="green",shape="box"];3182[label="xuu621",fontsize=16,color="green",shape="box"];3183[label="xuu631",fontsize=16,color="green",shape="box"];3184[label="xuu621",fontsize=16,color="green",shape="box"];3185[label="xuu631",fontsize=16,color="green",shape="box"];3186[label="xuu621",fontsize=16,color="green",shape="box"];3187[label="xuu631",fontsize=16,color="green",shape="box"];3188[label="xuu621",fontsize=16,color="green",shape="box"];3189[label="xuu631",fontsize=16,color="green",shape="box"];3190[label="xuu621",fontsize=16,color="green",shape="box"];3191[label="xuu631",fontsize=16,color="green",shape="box"];3192[label="xuu621",fontsize=16,color="green",shape="box"];3193[label="xuu631",fontsize=16,color="green",shape="box"];3194[label="xuu621",fontsize=16,color="green",shape="box"];3195[label="xuu631",fontsize=16,color="green",shape="box"];3196[label="xuu621",fontsize=16,color="green",shape="box"];3197[label="xuu631",fontsize=16,color="green",shape="box"];3198 -> 1448[label="",style="dashed", color="red", weight=0]; 3198[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3198 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3199 -> 1449[label="",style="dashed", color="red", weight=0]; 3199[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3199 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3200 -> 1450[label="",style="dashed", color="red", weight=0]; 3200[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3200 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3201 -> 1451[label="",style="dashed", color="red", weight=0]; 3201[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3201 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3202 -> 1452[label="",style="dashed", color="red", weight=0]; 3202[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3202 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3203 -> 1453[label="",style="dashed", color="red", weight=0]; 3203[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3203 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3204 -> 1454[label="",style="dashed", color="red", weight=0]; 3204[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3204 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3205 -> 1455[label="",style="dashed", color="red", weight=0]; 3205[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3205 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3206 -> 1456[label="",style="dashed", color="red", weight=0]; 3206[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3206 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3207 -> 1457[label="",style="dashed", color="red", weight=0]; 3207[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3207 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3208 -> 1458[label="",style="dashed", color="red", weight=0]; 3208[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3208 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3209 -> 1459[label="",style="dashed", color="red", weight=0]; 3209[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3209 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3210 -> 1460[label="",style="dashed", color="red", weight=0]; 3210[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3210 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3211 -> 1461[label="",style="dashed", color="red", weight=0]; 3211[label="xuu622 <= xuu632",fontsize=16,color="magenta"];3211 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3212 -> 543[label="",style="dashed", color="red", weight=0]; 3212[label="xuu621 == xuu631",fontsize=16,color="magenta"];3212 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3213 -> 536[label="",style="dashed", color="red", weight=0]; 3213[label="xuu621 == xuu631",fontsize=16,color="magenta"];3213 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3214 -> 537[label="",style="dashed", color="red", weight=0]; 3214[label="xuu621 == xuu631",fontsize=16,color="magenta"];3214 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3215 -> 535[label="",style="dashed", color="red", weight=0]; 3215[label="xuu621 == xuu631",fontsize=16,color="magenta"];3215 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3216 -> 544[label="",style="dashed", color="red", weight=0]; 3216[label="xuu621 == xuu631",fontsize=16,color="magenta"];3216 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3217 -> 534[label="",style="dashed", color="red", weight=0]; 3217[label="xuu621 == xuu631",fontsize=16,color="magenta"];3217 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3218 -> 541[label="",style="dashed", color="red", weight=0]; 3218[label="xuu621 == xuu631",fontsize=16,color="magenta"];3218 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3219 -> 540[label="",style="dashed", color="red", weight=0]; 3219[label="xuu621 == xuu631",fontsize=16,color="magenta"];3219 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3220 -> 545[label="",style="dashed", color="red", weight=0]; 3220[label="xuu621 == xuu631",fontsize=16,color="magenta"];3220 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3221 -> 546[label="",style="dashed", color="red", weight=0]; 3221[label="xuu621 == xuu631",fontsize=16,color="magenta"];3221 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3222 -> 542[label="",style="dashed", color="red", weight=0]; 3222[label="xuu621 == xuu631",fontsize=16,color="magenta"];3222 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3223 -> 538[label="",style="dashed", color="red", weight=0]; 3223[label="xuu621 == xuu631",fontsize=16,color="magenta"];3223 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3224 -> 539[label="",style="dashed", color="red", weight=0]; 3224[label="xuu621 == xuu631",fontsize=16,color="magenta"];3224 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3225 -> 533[label="",style="dashed", color="red", weight=0]; 3225[label="xuu621 == xuu631",fontsize=16,color="magenta"];3225 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3227 -> 1426[label="",style="dashed", color="red", weight=0]; 3227[label="FiniteMap.sizeFM xuu434 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3227 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3226[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 xuu232",fontsize=16,color="burlywood",shape="triangle"];4678[label="xuu232/False",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 3297[label="",style="solid", color="burlywood", weight=3]; 4679[label="xuu232/True",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 3298[label="",style="solid", color="burlywood", weight=3]; 3228[label="xuu414",fontsize=16,color="green",shape="box"];3229[label="FiniteMap.mkBalBranch6MkBalBranch00 [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu410 xuu411 xuu412 xuu413 xuu414 True",fontsize=16,color="black",shape="box"];3229 -> 3299[label="",style="solid", color="black", weight=3]; 3230 -> 3508[label="",style="dashed", color="red", weight=0]; 3230[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu410 xuu411 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu41 xuu43 xuu413) xuu414",fontsize=16,color="magenta"];3230 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3232[label="xuu293",fontsize=16,color="green",shape="box"];3233[label="FiniteMap.mkBalBranch6MkBalBranch10 (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44 xuu290 xuu291 xuu292 xuu293 xuu294 True",fontsize=16,color="black",shape="box"];3233 -> 3301[label="",style="solid", color="black", weight=3]; 3234 -> 3508[label="",style="dashed", color="red", weight=0]; 3234[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu290 xuu291 xuu293 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu400 : xuu401) xuu41 xuu294 xuu44)",fontsize=16,color="magenta"];3234 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3235[label="error []",fontsize=16,color="red",shape="box"];3236 -> 3508[label="",style="dashed", color="red", weight=0]; 3236[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4430 xuu4431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu400 : xuu401) xuu41 xuu29 xuu4433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444)",fontsize=16,color="magenta"];3236 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3239[label="xuu622",fontsize=16,color="green",shape="box"];3240[label="xuu632",fontsize=16,color="green",shape="box"];3241[label="xuu622",fontsize=16,color="green",shape="box"];3242[label="xuu632",fontsize=16,color="green",shape="box"];3243[label="xuu622",fontsize=16,color="green",shape="box"];3244[label="xuu632",fontsize=16,color="green",shape="box"];3245[label="xuu622",fontsize=16,color="green",shape="box"];3246[label="xuu632",fontsize=16,color="green",shape="box"];3247[label="xuu622",fontsize=16,color="green",shape="box"];3248[label="xuu632",fontsize=16,color="green",shape="box"];3249[label="xuu622",fontsize=16,color="green",shape="box"];3250[label="xuu632",fontsize=16,color="green",shape="box"];3251[label="xuu622",fontsize=16,color="green",shape="box"];3252[label="xuu632",fontsize=16,color="green",shape="box"];3253[label="xuu622",fontsize=16,color="green",shape="box"];3254[label="xuu632",fontsize=16,color="green",shape="box"];3255[label="xuu622",fontsize=16,color="green",shape="box"];3256[label="xuu632",fontsize=16,color="green",shape="box"];3257[label="xuu622",fontsize=16,color="green",shape="box"];3258[label="xuu632",fontsize=16,color="green",shape="box"];3259[label="xuu622",fontsize=16,color="green",shape="box"];3260[label="xuu632",fontsize=16,color="green",shape="box"];3261[label="xuu622",fontsize=16,color="green",shape="box"];3262[label="xuu632",fontsize=16,color="green",shape="box"];3263[label="xuu622",fontsize=16,color="green",shape="box"];3264[label="xuu632",fontsize=16,color="green",shape="box"];3265[label="xuu622",fontsize=16,color="green",shape="box"];3266[label="xuu632",fontsize=16,color="green",shape="box"];3267[label="xuu631",fontsize=16,color="green",shape="box"];3268[label="xuu621",fontsize=16,color="green",shape="box"];3269[label="xuu631",fontsize=16,color="green",shape="box"];3270[label="xuu621",fontsize=16,color="green",shape="box"];3271[label="xuu631",fontsize=16,color="green",shape="box"];3272[label="xuu621",fontsize=16,color="green",shape="box"];3273[label="xuu631",fontsize=16,color="green",shape="box"];3274[label="xuu621",fontsize=16,color="green",shape="box"];3275[label="xuu631",fontsize=16,color="green",shape="box"];3276[label="xuu621",fontsize=16,color="green",shape="box"];3277[label="xuu631",fontsize=16,color="green",shape="box"];3278[label="xuu621",fontsize=16,color="green",shape="box"];3279[label="xuu631",fontsize=16,color="green",shape="box"];3280[label="xuu621",fontsize=16,color="green",shape="box"];3281[label="xuu631",fontsize=16,color="green",shape="box"];3282[label="xuu621",fontsize=16,color="green",shape="box"];3283[label="xuu631",fontsize=16,color="green",shape="box"];3284[label="xuu621",fontsize=16,color="green",shape="box"];3285[label="xuu631",fontsize=16,color="green",shape="box"];3286[label="xuu621",fontsize=16,color="green",shape="box"];3287[label="xuu631",fontsize=16,color="green",shape="box"];3288[label="xuu621",fontsize=16,color="green",shape="box"];3289[label="xuu631",fontsize=16,color="green",shape="box"];3290[label="xuu621",fontsize=16,color="green",shape="box"];3291[label="xuu631",fontsize=16,color="green",shape="box"];3292[label="xuu621",fontsize=16,color="green",shape="box"];3293[label="xuu631",fontsize=16,color="green",shape="box"];3294[label="xuu621",fontsize=16,color="green",shape="box"];3295 -> 1819[label="",style="dashed", color="red", weight=0]; 3295[label="FiniteMap.sizeFM xuu434",fontsize=16,color="magenta"];3295 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3296 -> 408[label="",style="dashed", color="red", weight=0]; 3296[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3296 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3297[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 False",fontsize=16,color="black",shape="box"];3297 -> 3330[label="",style="solid", color="black", weight=3]; 3298[label="FiniteMap.mkBalBranch6MkBalBranch11 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 True",fontsize=16,color="black",shape="box"];3298 -> 3331[label="",style="solid", color="black", weight=3]; 3299[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 xuu413 xuu414)",fontsize=16,color="burlywood",shape="box"];4680[label="xuu413/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3299 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 3332[label="",style="solid", color="burlywood", weight=3]; 4681[label="xuu413/FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134",fontsize=10,color="white",style="solid",shape="box"];3299 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 3333[label="",style="solid", color="burlywood", weight=3]; 3534 -> 3508[label="",style="dashed", color="red", weight=0]; 3534[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu41 xuu43 xuu413",fontsize=16,color="magenta"];3534 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3535[label="xuu414",fontsize=16,color="green",shape="box"];3536[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3537[label="xuu410",fontsize=16,color="green",shape="box"];3538[label="xuu411",fontsize=16,color="green",shape="box"];3301[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 xuu294) xuu44",fontsize=16,color="burlywood",shape="box"];4682[label="xuu294/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3301 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 3335[label="",style="solid", color="burlywood", weight=3]; 4683[label="xuu294/FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944",fontsize=10,color="white",style="solid",shape="box"];3301 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 3336[label="",style="solid", color="burlywood", weight=3]; 3539[label="xuu293",fontsize=16,color="green",shape="box"];3540 -> 3508[label="",style="dashed", color="red", weight=0]; 3540[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu400 : xuu401) xuu41 xuu294 xuu44",fontsize=16,color="magenta"];3540 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3541[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3542[label="xuu290",fontsize=16,color="green",shape="box"];3543[label="xuu291",fontsize=16,color="green",shape="box"];3544 -> 3508[label="",style="dashed", color="red", weight=0]; 3544[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu400 : xuu401) xuu41 xuu29 xuu4433",fontsize=16,color="magenta"];3544 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3508[label="",style="dashed", color="red", weight=0]; 3545[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu440 xuu441 xuu4434 xuu444",fontsize=16,color="magenta"];3545 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3546[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3547[label="xuu4430",fontsize=16,color="green",shape="box"];3548[label="xuu4431",fontsize=16,color="green",shape="box"];3327[label="xuu434",fontsize=16,color="green",shape="box"];3328 -> 1819[label="",style="dashed", color="red", weight=0]; 3328[label="FiniteMap.sizeFM xuu433",fontsize=16,color="magenta"];3328 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3329[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3330[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 otherwise",fontsize=16,color="black",shape="box"];3330 -> 3374[label="",style="solid", color="black", weight=3]; 3331[label="FiniteMap.mkBalBranch6Single_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41",fontsize=16,color="black",shape="box"];3331 -> 3375[label="",style="solid", color="black", weight=3]; 3332[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 FiniteMap.EmptyFM xuu414)",fontsize=16,color="black",shape="box"];3332 -> 3376[label="",style="solid", color="black", weight=3]; 3333[label="FiniteMap.mkBalBranch6Double_L [] xuu41 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414) xuu43 xuu43 (FiniteMap.Branch xuu410 xuu411 xuu412 (FiniteMap.Branch xuu4130 xuu4131 xuu4132 xuu4133 xuu4134) xuu414)",fontsize=16,color="black",shape="box"];3333 -> 3377[label="",style="solid", color="black", weight=3]; 3685[label="xuu43",fontsize=16,color="green",shape="box"];3686[label="xuu413",fontsize=16,color="green",shape="box"];3687[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3688[label="[]",fontsize=16,color="green",shape="box"];3689[label="xuu41",fontsize=16,color="green",shape="box"];3335[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 FiniteMap.EmptyFM) xuu44",fontsize=16,color="black",shape="box"];3335 -> 3380[label="",style="solid", color="black", weight=3]; 3336[label="FiniteMap.mkBalBranch6Double_R (xuu400 : xuu401) xuu41 xuu44 (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) (FiniteMap.Branch xuu290 xuu291 xuu292 xuu293 (FiniteMap.Branch xuu2940 xuu2941 xuu2942 xuu2943 xuu2944)) xuu44",fontsize=16,color="black",shape="box"];3336 -> 3381[label="",style="solid", color="black", weight=3]; 3690[label="xuu294",fontsize=16,color="green",shape="box"];3691[label="xuu44",fontsize=16,color="green",shape="box"];3692[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3693[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3694[label="xuu41",fontsize=16,color="green",shape="box"];3695[label="xuu29",fontsize=16,color="green",shape="box"];3696[label="xuu4433",fontsize=16,color="green",shape="box"];3697[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3698[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3699[label="xuu41",fontsize=16,color="green",shape="box"];3700[label="xuu4434",fontsize=16,color="green",shape="box"];3701[label="xuu444",fontsize=16,color="green",shape="box"];3702[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3703[label="xuu440",fontsize=16,color="green",shape="box"];3704[label="xuu441",fontsize=16,color="green",shape="box"];3373[label="xuu433",fontsize=16,color="green",shape="box"];3374[label="FiniteMap.mkBalBranch6MkBalBranch10 [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41 xuu430 xuu431 xuu432 xuu433 xuu434 True",fontsize=16,color="black",shape="box"];3374 -> 3386[label="",style="solid", color="black", weight=3]; 3375 -> 3508[label="",style="dashed", color="red", weight=0]; 3375[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu430 xuu431 xuu433 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu41 xuu434 xuu41)",fontsize=16,color="magenta"];3375 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3376[label="error []",fontsize=16,color="red",shape="box"];3377 -> 3508[label="",style="dashed", color="red", weight=0]; 3377[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu4130 xuu4131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu41 xuu43 xuu4133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414)",fontsize=16,color="magenta"];3377 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3380[label="error []",fontsize=16,color="red",shape="box"];3381 -> 3508[label="",style="dashed", color="red", weight=0]; 3381[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2940 xuu2941 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu400 : xuu401) xuu41 xuu2944 xuu44)",fontsize=16,color="magenta"];3381 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3386[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 xuu434) xuu41",fontsize=16,color="burlywood",shape="box"];4684[label="xuu434/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3386 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 3430[label="",style="solid", color="burlywood", weight=3]; 4685[label="xuu434/FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344",fontsize=10,color="white",style="solid",shape="box"];3386 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 3431[label="",style="solid", color="burlywood", weight=3]; 3579[label="xuu433",fontsize=16,color="green",shape="box"];3580 -> 3508[label="",style="dashed", color="red", weight=0]; 3580[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu41 xuu434 xuu41",fontsize=16,color="magenta"];3580 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3581[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3582[label="xuu430",fontsize=16,color="green",shape="box"];3583[label="xuu431",fontsize=16,color="green",shape="box"];3584 -> 3508[label="",style="dashed", color="red", weight=0]; 3584[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu41 xuu43 xuu4133",fontsize=16,color="magenta"];3584 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3584 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3508[label="",style="dashed", color="red", weight=0]; 3585[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu410 xuu411 xuu4134 xuu414",fontsize=16,color="magenta"];3585 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3585 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3586[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3587[label="xuu4130",fontsize=16,color="green",shape="box"];3588[label="xuu4131",fontsize=16,color="green",shape="box"];3594 -> 3508[label="",style="dashed", color="red", weight=0]; 3594[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu290 xuu291 xuu293 xuu2943",fontsize=16,color="magenta"];3594 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3508[label="",style="dashed", color="red", weight=0]; 3595[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu400 : xuu401) xuu41 xuu2944 xuu44",fontsize=16,color="magenta"];3595 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3596[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3597[label="xuu2940",fontsize=16,color="green",shape="box"];3598[label="xuu2941",fontsize=16,color="green",shape="box"];3430[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 FiniteMap.EmptyFM) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 FiniteMap.EmptyFM) xuu41",fontsize=16,color="black",shape="box"];3430 -> 3730[label="",style="solid", color="black", weight=3]; 3431[label="FiniteMap.mkBalBranch6Double_R [] xuu41 xuu41 (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 (FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344)) (FiniteMap.Branch xuu430 xuu431 xuu432 xuu433 (FiniteMap.Branch xuu4340 xuu4341 xuu4342 xuu4343 xuu4344)) xuu41",fontsize=16,color="black",shape="box"];3431 -> 3731[label="",style="solid", color="black", weight=3]; 3705[label="xuu434",fontsize=16,color="green",shape="box"];3706[label="xuu41",fontsize=16,color="green",shape="box"];3707[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3708[label="[]",fontsize=16,color="green",shape="box"];3709[label="xuu41",fontsize=16,color="green",shape="box"];3710[label="xuu43",fontsize=16,color="green",shape="box"];3711[label="xuu4133",fontsize=16,color="green",shape="box"];3712[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3713[label="[]",fontsize=16,color="green",shape="box"];3714[label="xuu41",fontsize=16,color="green",shape="box"];3715[label="xuu4134",fontsize=16,color="green",shape="box"];3716[label="xuu414",fontsize=16,color="green",shape="box"];3717[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3718[label="xuu410",fontsize=16,color="green",shape="box"];3719[label="xuu411",fontsize=16,color="green",shape="box"];3720[label="xuu293",fontsize=16,color="green",shape="box"];3721[label="xuu2943",fontsize=16,color="green",shape="box"];3722[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3723[label="xuu290",fontsize=16,color="green",shape="box"];3724[label="xuu291",fontsize=16,color="green",shape="box"];3725[label="xuu2944",fontsize=16,color="green",shape="box"];3726[label="xuu44",fontsize=16,color="green",shape="box"];3727[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3728[label="xuu400 : xuu401",fontsize=16,color="green",shape="box"];3729[label="xuu41",fontsize=16,color="green",shape="box"];3730[label="error []",fontsize=16,color="red",shape="box"];3731 -> 3508[label="",style="dashed", color="red", weight=0]; 3731[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4340 xuu4341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu430 xuu431 xuu433 xuu4343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu41 xuu4344 xuu41)",fontsize=16,color="magenta"];3731 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3508[label="",style="dashed", color="red", weight=0]; 3733[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu430 xuu431 xuu433 xuu4343",fontsize=16,color="magenta"];3733 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3733 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3508[label="",style="dashed", color="red", weight=0]; 3734[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu41 xuu4344 xuu41",fontsize=16,color="magenta"];3734 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3734 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3735[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3736[label="xuu4340",fontsize=16,color="green",shape="box"];3737[label="xuu4341",fontsize=16,color="green",shape="box"];3739[label="xuu433",fontsize=16,color="green",shape="box"];3740[label="xuu4343",fontsize=16,color="green",shape="box"];3741[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3742[label="xuu430",fontsize=16,color="green",shape="box"];3743[label="xuu431",fontsize=16,color="green",shape="box"];3744[label="xuu4344",fontsize=16,color="green",shape="box"];3745[label="xuu41",fontsize=16,color="green",shape="box"];3746[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3747[label="[]",fontsize=16,color="green",shape="box"];3748[label="xuu41",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(xuu500000), Succ(xuu40000)) -> new_primCmpNat(xuu500000, xuu40000) 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(xuu500000), Succ(xuu40000)) -> new_primCmpNat(xuu500000, xuu40000) 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_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu620, xuu630, bec, bed) new_primCompAux0(xuu37, xuu38, EQ, app(ty_Maybe, db)) -> new_compare4(xuu37, xuu38, db) new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bc, bd, be) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_ltEs(xuu62, xuu63, hc) -> new_compare(xuu62, xuu63, hc) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccf) -> new_lt2(xuu114, xuu116, cdd) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu621, xuu631, cag, cah) new_compare21(xuu69, xuu70, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu69, xuu70, cga, cgb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) new_compare21(xuu69, xuu70, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu69, xuu70, cfb) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu620, xuu630, bge) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu101, xuu104, ed) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu102, xuu105, fa, fb, fc) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu621, xuu631, cbb, cbc) new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu621, xuu631, bba) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu620, xuu630, bdc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cce), ccf) -> new_lt(xuu114, xuu116, cce) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu620, xuu630, hh, baa, bab) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_[], bef)) -> new_ltEs(xuu620, xuu630, bef) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu620, xuu630, bgc, bgd) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu103, xuu106, ha, hb) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu620, xuu630, bgh) new_ltEs1(Left(xuu620), Left(xuu630), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu620, xuu630, beb) new_ltEs1(Left(xuu620), Left(xuu630), app(ty_[], bdc), bdd) -> new_ltEs(xuu620, xuu630, bdc) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu102, xuu105, fh, ga) new_compare3(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu621, xuu631, bbh, bca) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu620, xuu630, baf, bag) new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, ca), cb)) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu622, xuu632, bch) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu621, xuu631, cbb, cbc) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu620, xuu630, bfb, bfc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu620, xuu630, hh, baa, bab) new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu620, xuu630, bec, bed) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu620, xuu630, bhh, caa) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu621, xuu631, cba) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu101, xuu104, eb, ec) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu620, xuu630, bhg) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu620, xuu630, bae) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu620, xuu630, bef) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(xuu115, xuu117, cea, ceb, cec) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu620, xuu630, bfe, bff) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_[], he), hf, hg) -> new_lt(xuu620, xuu630, he) new_compare21(xuu69, xuu70, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu69, xuu70, cfh) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu102, xuu105, fd, ff) new_lt3(xuu101, xuu104, ee, ef) -> new_compare5(xuu101, xuu104, ee, ef) new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, bh)) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu620, xuu630, bhh, caa) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu103, xuu106, gc, gd, ge) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_[], bba), hg) -> new_lt(xuu621, xuu631, bba) new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu620, xuu630, bfd) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu102, xuu105, fg) new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu76, xuu77, cbh, cca) new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_Either, cg), da)) -> new_compare3(xuu37, xuu38, cg, da) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_[], bgh), bha) -> new_lt(xuu620, xuu630, bgh) new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cc)) -> new_compare(xuu37, xuu38, cc) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu621, xuu631, bbg) new_compare22(xuu76, xuu77, False, app(ty_[], cbd)) -> new_ltEs(xuu76, xuu77, cbd) new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu103, xuu106, gb) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu101, xuu104, ee, ef) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu620, xuu630, bae) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu622, xuu632, bcf, bcg) new_ltEs2(Just(xuu620), Just(xuu630), app(ty_[], bfg)) -> new_ltEs(xuu620, xuu630, bfg) new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux0(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu620, xuu630, bfg) new_ltEs2(Just(xuu620), Just(xuu630), app(ty_Maybe, bge)) -> new_ltEs2(xuu620, xuu630, bge) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(xuu114, xuu116, ccg, cch, cda) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccf) -> new_lt3(xuu114, xuu116, cde, cdf) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu620, xuu630, baf, bag) new_compare3(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu620, xuu630, beb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu622, xuu632, bcb) new_lt1(xuu101, xuu104, eb, ec) -> new_compare3(xuu101, xuu104, eb, ec) new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu620, xuu630, bgf, bgg) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu621, xuu631, bbh, bca) new_lt0(xuu101, xuu104, dg, dh, ea) -> new_compare1(xuu101, xuu104, dg, dh, ea) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_[], cac)) -> new_ltEs(xuu621, xuu631, cac) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu620, xuu630, bhe, bhf) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu621, xuu631, cba) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu621, xuu631, bbe, bbf) new_primCompAux0(xuu37, xuu38, EQ, app(app(ty_@2, dc), dd)) -> new_compare5(xuu37, xuu38, dc, dd) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu622, xuu632, bda, bdb) new_ltEs2(Just(xuu620), Just(xuu630), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu622, xuu632, bcf, bcg) new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu620, xuu630, bgc, bgd) new_ltEs1(Left(xuu620), Left(xuu630), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu103, xuu106, gh) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu621, xuu631, cac) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) new_lt(xuu101, xuu104, h) -> new_compare(xuu101, xuu104, h) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cdb), cdc), ccf) -> new_lt1(xuu114, xuu116, cdb, cdc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu620, xuu630, bac, bad) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu622, xuu632, bda, bdb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu620, xuu630, bac, bad) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu101, xuu104, dg, dh, ea) new_compare21(xuu69, xuu70, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu69, xuu70, cfc, cfd, cfe) new_lt2(xuu101, xuu104, ed) -> new_compare4(xuu101, xuu104, ed) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, ced), cee)) -> new_ltEs1(xuu115, xuu117, ced, cee) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], h), de, df) -> new_compare(xuu101, xuu104, h) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu620, xuu630, he) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu620, xuu630, bdh, bea) new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu620, xuu630, bdh, bea) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu620, xuu630, bfb, bfc) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu622, xuu632, bch) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_Maybe, bhg), bha) -> new_lt2(xuu620, xuu630, bhg) new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ba)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu76, xuu77, cbe, cbf, cbg) new_primCompAux0(xuu37, xuu38, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare1(xuu37, xuu38, cd, ce, cf) new_compare5(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ca, cb) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_compare4(Just(xuu50000), Just(xuu4000), bh) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cdh)) -> new_ltEs(xuu115, xuu117, cdh) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu620, xuu630, bgf, bgg) new_compare21(xuu69, xuu70, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu69, xuu70, cff, cfg) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu621, xuu631, bbg) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu621, xuu631, bbe, bbf) new_compare(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ba) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu620, xuu630, bfd) new_compare20(xuu62, xuu63, False, app(ty_[], hc), hd) -> new_compare(xuu62, xuu63, hc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu622, xuu632, bcb) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_[], eh), df) -> new_lt(xuu102, xuu105, eh) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu103, xuu106, gf, gg) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu621, xuu631, cag, cah) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu620, xuu630, bfe, bff) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu620, xuu630, bhe, bhf) The TRS R consists of the following rules: new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_@2, edh), eea)) -> new_esEs21(xuu500000, xuu40000, edh, eea) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs28(Left(xuu500000), Left(xuu40000), ty_Float, edc) -> new_esEs26(xuu500000, xuu40000) new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Double, edc) -> new_esEs23(xuu500000, xuu40000) new_pePe(True, xuu209) -> True new_ltEs20(xuu622, xuu632, app(ty_Maybe, bch)) -> new_ltEs15(xuu622, xuu632, bch) new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs38(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_esEs7(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_Either, eff), efg)) -> new_esEs28(xuu50001, xuu4001, eff, efg) new_esEs30(xuu101, xuu104, app(app(ty_@2, ee), ef)) -> new_esEs21(xuu101, xuu104, ee, ef) new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs24(xuu115, xuu117, app(app(ty_Either, ced), cee)) -> new_ltEs14(xuu115, xuu117, ced, cee) new_esEs39(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare14(xuu37, xuu38) new_esEs5(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_compare111(xuu140, xuu141, True, ehd, ehe) -> LT new_esEs14(xuu500002, xuu40002, ty_Int) -> new_esEs19(xuu500002, xuu40002) new_esEs11(xuu50000, xuu4000, app(app(ty_Either, dgb), dgc)) -> new_esEs28(xuu50000, xuu4000, dgb, dgc) new_esEs32(xuu620, xuu630, app(ty_[], he)) -> new_esEs25(xuu620, xuu630, he) new_compare7(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ba) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, ba) new_compare0(xuu5000, xuu400, ty_Char) -> new_compare14(xuu5000, xuu400) new_esEs16(xuu500000, xuu40000, app(app(ty_Either, dcb), dcc)) -> new_esEs28(xuu500000, xuu40000, dcb, dcc) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs24(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs30(xuu101, xuu104, ty_Integer) -> new_esEs20(xuu101, xuu104) new_ltEs15(Just(xuu620), Just(xuu630), ty_Char) -> new_ltEs13(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, dhf, dhg, dhh) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dhf, dhg, dhh) new_esEs31(xuu621, xuu631, app(ty_Ratio, deh)) -> new_esEs17(xuu621, xuu631, deh) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare19(xuu37, xuu38) new_lt23(xuu114, xuu116, ty_Bool) -> new_lt13(xuu114, xuu116) new_ltEs14(Left(xuu620), Left(xuu630), ty_@0, bdd) -> new_ltEs8(xuu620, xuu630) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, dhf, dhg, dhh) -> GT new_esEs31(xuu621, xuu631, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs13(xuu621, xuu631, bbb, bbc, bbd) new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) new_esEs14(xuu500002, xuu40002, app(ty_Ratio, cgf)) -> new_esEs17(xuu500002, xuu40002, cgf) new_lt23(xuu114, xuu116, app(app(ty_Either, cdb), cdc)) -> new_lt15(xuu114, xuu116, cdb, cdc) new_esEs16(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Float) -> new_lt11(xuu101, xuu104) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_Ratio, ffd)) -> new_esEs17(xuu500000, xuu40000, ffd) new_not(True) -> False new_lt22(xuu620, xuu630, app(ty_[], bgh)) -> new_lt7(xuu620, xuu630, bgh) new_lt22(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_lt23(xuu114, xuu116, ty_Int) -> new_lt9(xuu114, xuu116) new_esEs35(xuu500000, xuu40000, app(app(ty_@2, fad), fae)) -> new_esEs21(xuu500000, xuu40000, fad, fae) new_esEs14(xuu500002, xuu40002, ty_Bool) -> new_esEs22(xuu500002, xuu40002) new_esEs7(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_ltEs24(xuu115, xuu117, ty_Integer) -> new_ltEs16(xuu115, xuu117) new_primEqNat0(Succ(xuu5000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu400000)) -> False new_lt6(xuu102, xuu105, app(ty_Maybe, fg)) -> new_lt16(xuu102, xuu105, fg) new_ltEs24(xuu115, xuu117, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs10(xuu115, xuu117, cea, ceb, cec) new_esEs39(xuu114, xuu116, app(ty_Ratio, fhd)) -> new_esEs17(xuu114, xuu116, fhd) new_esEs39(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_esEs24(xuu114, xuu116, cdd) new_esEs10(xuu50001, xuu4001, app(app(ty_@2, fbg), fbh)) -> new_esEs21(xuu50001, xuu4001, fbg, fbh) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cc)) -> new_compare7(xuu37, xuu38, cc) new_compare115(xuu156, xuu157, False, fdg) -> GT new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare9(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) new_esEs9(xuu50000, xuu4000, app(ty_[], egg)) -> new_esEs25(xuu50000, xuu4000, egg) new_esEs29(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) new_esEs16(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_lt19(xuu101, xuu104) -> new_esEs12(new_compare19(xuu101, xuu104), LT) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu621, xuu631, ty_Float) -> new_ltEs5(xuu621, xuu631) new_compare17(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs13(xuu76, xuu77) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs17(xuu620, xuu630, bfe, bff) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_lt6(xuu102, xuu105, ty_@0) -> new_lt8(xuu102, xuu105) new_compare28(xuu114, xuu115, xuu116, xuu117, False, cdg, ccf) -> new_compare113(xuu114, xuu115, xuu116, xuu117, new_lt23(xuu114, xuu116, cdg), new_asAs(new_esEs39(xuu114, xuu116, cdg), new_ltEs24(xuu115, xuu117, ccf)), cdg, ccf) new_compare116(xuu147, xuu148, True, fhb, fhc) -> LT new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT new_lt22(xuu620, xuu630, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt10(xuu620, xuu630, bhb, bhc, bhd) new_compare9(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs8(xuu69, xuu70) new_esEs30(xuu101, xuu104, ty_@0) -> new_esEs18(xuu101, xuu104) new_esEs16(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs8(xuu50000, xuu4000, app(ty_Ratio, fce)) -> new_esEs17(xuu50000, xuu4000, fce) new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ecc)) -> new_esEs24(xuu500000, xuu40000, ecc) new_lt23(xuu114, xuu116, ty_Integer) -> new_lt17(xuu114, xuu116) new_primPlusNat1(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat1(xuu21200, xuu21100))) new_lt5(xuu101, xuu104, app(app(ty_@2, ee), ef)) -> new_lt18(xuu101, xuu104, ee, ef) new_primCompAux00(xuu37, xuu38, GT, dee) -> GT new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs7(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primCmpNat0(Zero, Succ(xuu40000)) -> LT new_esEs4(xuu50002, xuu4002, app(app(ty_@2, dgh), dha)) -> new_esEs21(xuu50002, xuu4002, dgh, dha) new_esEs29(xuu102, xuu105, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(xuu102, xuu105, fa, fb, fc) new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_Maybe, fgb)) -> new_esEs24(xuu500000, xuu40000, fgb) new_ltEs23(xuu621, xuu631, ty_Int) -> new_ltEs9(xuu621, xuu631) new_lt20(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_ltEs23(xuu621, xuu631, app(ty_Ratio, fha)) -> new_ltEs11(xuu621, xuu631, fha) new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_compare15(Left(xuu50000), Right(xuu4000), bf, bg) -> LT new_compare114(xuu188, xuu189, xuu190, xuu191, True, ehb, ehc) -> LT new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare8(xuu37, xuu38) new_esEs8(xuu50000, xuu4000, app(ty_Maybe, fdc)) -> new_esEs24(xuu50000, xuu4000, fdc) new_esEs29(xuu102, xuu105, app(ty_Maybe, fg)) -> new_esEs24(xuu102, xuu105, fg) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs6(xuu103, xuu106, app(ty_Maybe, gh)) -> new_ltEs15(xuu103, xuu106, gh) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, fec), fed), fee), edc) -> new_esEs13(xuu500000, xuu40000, fec, fed, fee) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_Either, bgc), bgd)) -> new_ltEs14(xuu620, xuu630, bgc, bgd) new_esEs38(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_ltEs21(xuu76, xuu77, app(app(ty_Either, cbh), cca)) -> new_ltEs14(xuu76, xuu77, cbh, cca) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Ratio, fbb)) -> new_ltEs11(xuu620, xuu630, fbb) new_esEs33(xuu500001, xuu40001, app(app(ty_Either, ebc), ebd)) -> new_esEs28(xuu500001, xuu40001, ebc, ebd) new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu621, xuu631, ty_Ordering) -> new_ltEs18(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), ty_Double, bdd) -> new_ltEs12(xuu620, xuu630) new_compare0(xuu5000, xuu400, app(ty_Ratio, dcd)) -> new_compare12(xuu5000, xuu400, dcd) new_esEs6(xuu50000, xuu4000, app(ty_Maybe, ech)) -> new_esEs24(xuu50000, xuu4000, ech) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs18(xuu62, xuu63) new_esEs31(xuu621, xuu631, ty_Double) -> new_esEs23(xuu621, xuu631) new_esEs31(xuu621, xuu631, ty_Bool) -> new_esEs22(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_Bool) -> new_ltEs4(xuu115, xuu117) new_lt5(xuu101, xuu104, ty_Bool) -> new_lt13(xuu101, xuu104) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs13(xuu62, xuu63) new_lt4(xuu101, xuu104) -> new_esEs12(new_compare6(xuu101, xuu104), LT) new_compare0(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Char) -> new_ltEs13(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs14(xuu620, xuu630, bfb, bfc) new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_lt6(xuu102, xuu105, app(app(app(ty_@3, fa), fb), fc)) -> new_lt10(xuu102, xuu105, fa, fb, fc) new_esEs21(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eaa, eab) -> new_asAs(new_esEs34(xuu500000, xuu40000, eaa), new_esEs33(xuu500001, xuu40001, eab)) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs16(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(ty_@2, cga), cgb)) -> new_ltEs17(xuu69, xuu70, cga, cgb) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Ordering, edc) -> new_esEs12(xuu500000, xuu40000) new_ltEs18(EQ, LT) -> False new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dfb)) -> new_esEs17(xuu50000, xuu4000, dfb) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero new_compare0(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_ltEs20(xuu622, xuu632, ty_Double) -> new_ltEs12(xuu622, xuu632) new_esEs34(xuu500000, xuu40000, app(ty_Ratio, ebe)) -> new_esEs17(xuu500000, xuu40000, ebe) new_esEs15(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs16(xuu500000, xuu40000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs13(xuu500000, xuu40000, dbc, dbd, dbe) new_lt20(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_compare26(xuu76, xuu77, True, ehf) -> EQ new_lt23(xuu114, xuu116, ty_Float) -> new_lt11(xuu114, xuu116) new_ltEs6(xuu103, xuu106, app(ty_Ratio, dea)) -> new_ltEs11(xuu103, xuu106, dea) new_ltEs15(Just(xuu620), Just(xuu630), ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_compare15(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare25(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_esEs39(xuu114, xuu116, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs13(xuu114, xuu116, ccg, cch, cda) new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_ltEs17(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, bha) -> new_pePe(new_lt22(xuu620, xuu630, cab), new_asAs(new_esEs38(xuu620, xuu630, cab), new_ltEs23(xuu621, xuu631, bha))) new_esEs38(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs38(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs6(xuu103, xuu106, ty_Ordering) -> new_ltEs18(xuu103, xuu106) new_lt12(xuu101, xuu104, ddg) -> new_esEs12(new_compare12(xuu101, xuu104, ddg), LT) new_esEs31(xuu621, xuu631, app(ty_Maybe, bbg)) -> new_esEs24(xuu621, xuu631, bbg) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_Maybe, bfd)) -> new_ltEs15(xuu620, xuu630, bfd) new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs16(xuu62, xuu63) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Char, edc) -> new_esEs27(xuu500000, xuu40000) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, def)) -> new_compare12(xuu37, xuu38, def) new_esEs7(xuu50000, xuu4000, app(app(ty_@2, dda), ddb)) -> new_esEs21(xuu50000, xuu4000, dda, ddb) new_ltEs19(xuu62, xuu63, app(app(ty_Either, bee), bdd)) -> new_ltEs14(xuu62, xuu63, bee, bdd) new_esEs14(xuu500002, xuu40002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs13(xuu500002, xuu40002, cgg, cgh, cha) new_esEs6(xuu50000, xuu4000, app(ty_[], eda)) -> new_esEs25(xuu50000, xuu4000, eda) new_primPlusNat1(Succ(xuu21200), Zero) -> Succ(xuu21200) new_primPlusNat1(Zero, Succ(xuu21100)) -> Succ(xuu21100) new_compare19(EQ, GT) -> LT new_compare0(xuu5000, xuu400, app(ty_[], ba)) -> new_compare7(xuu5000, xuu400, ba) new_compare116(xuu147, xuu148, False, fhb, fhc) -> GT new_esEs39(xuu114, xuu116, ty_Bool) -> new_esEs22(xuu114, xuu116) new_lt22(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs29(xuu102, xuu105, ty_Bool) -> new_esEs22(xuu102, xuu105) new_ltEs24(xuu115, xuu117, app(app(ty_@2, ceg), ceh)) -> new_ltEs17(xuu115, xuu117, ceg, ceh) new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bc, bd, be) -> new_compare24(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_ltEs14(Left(xuu620), Left(xuu630), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs10(xuu620, xuu630, bde, bdf, bdg) new_esEs32(xuu620, xuu630, app(ty_Maybe, bae)) -> new_esEs24(xuu620, xuu630, bae) new_ltEs20(xuu622, xuu632, ty_Float) -> new_ltEs5(xuu622, xuu632) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(ty_Either, fgd), fge)) -> new_esEs28(xuu500000, xuu40000, fgd, fge) new_ltEs21(xuu76, xuu77, app(ty_Ratio, ehg)) -> new_ltEs11(xuu76, xuu77, ehg) new_compare7(:(xuu50000, xuu50001), [], ba) -> GT new_fsEs(xuu210) -> new_not(new_esEs12(xuu210, GT)) new_ltEs11(xuu62, xuu63, dec) -> new_fsEs(new_compare12(xuu62, xuu63, dec)) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dhf, dhg, dhh) -> LT new_compare0(xuu5000, xuu400, app(app(ty_Either, bf), bg)) -> new_compare15(xuu5000, xuu400, bf, bg) new_esEs8(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt23(xuu114, xuu116, ty_Char) -> new_lt14(xuu114, xuu116) new_esEs16(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Integer, bdd) -> new_ltEs16(xuu620, xuu630) new_esEs4(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_Float) -> new_esEs26(xuu500002, xuu40002) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs18(xuu76, xuu77) new_compare19(LT, GT) -> LT new_ltEs14(Left(xuu620), Right(xuu630), bee, bdd) -> True new_esEs32(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_lt21(xuu621, xuu631, ty_@0) -> new_lt8(xuu621, xuu631) new_compare19(LT, EQ) -> LT new_esEs29(xuu102, xuu105, ty_Ordering) -> new_esEs12(xuu102, xuu105) new_esEs7(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Double) -> new_ltEs12(xuu103, xuu106) new_lt17(xuu101, xuu104) -> new_esEs12(new_compare17(xuu101, xuu104), LT) new_esEs33(xuu500001, xuu40001, app(ty_Ratio, eac)) -> new_esEs17(xuu500001, xuu40001, eac) new_compare113(xuu188, xuu189, xuu190, xuu191, True, xuu193, ehb, ehc) -> new_compare114(xuu188, xuu189, xuu190, xuu191, True, ehb, ehc) new_lt20(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_@0) -> new_ltEs8(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(xuu500001, xuu40001, ead, eae, eaf) new_lt21(xuu621, xuu631, app(app(ty_Either, bbe), bbf)) -> new_lt15(xuu621, xuu631, bbe, bbf) new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_lt6(xuu102, xuu105, ty_Ordering) -> new_lt19(xuu102, xuu105) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, dc), dd)) -> new_compare18(xuu37, xuu38, dc, dd) new_compare0(xuu5000, xuu400, app(app(ty_@2, ca), cb)) -> new_compare18(xuu5000, xuu400, ca, cb) new_lt6(xuu102, xuu105, ty_Char) -> new_lt14(xuu102, xuu105) new_esEs12(GT, GT) -> True new_esEs39(xuu114, xuu116, app(app(ty_Either, cdb), cdc)) -> new_esEs28(xuu114, xuu116, cdb, cdc) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare17(xuu37, xuu38) new_ltEs15(Just(xuu620), Just(xuu630), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs10(xuu620, xuu630, bfh, bga, bgb) new_esEs29(xuu102, xuu105, app(ty_[], eh)) -> new_esEs25(xuu102, xuu105, eh) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_Either, eed), eee)) -> new_esEs28(xuu500000, xuu40000, eed, eee) new_esEs16(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs16(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_@2, bgf), bgg)) -> new_ltEs17(xuu620, xuu630, bgf, bgg) new_compare13(True, False) -> GT new_esEs7(xuu50000, xuu4000, app(app(ty_Either, dde), ddf)) -> new_esEs28(xuu50000, xuu4000, dde, ddf) new_esEs15(xuu500001, xuu40001, app(ty_Maybe, daf)) -> new_esEs24(xuu500001, xuu40001, daf) new_ltEs6(xuu103, xuu106, app(ty_[], gb)) -> new_ltEs7(xuu103, xuu106, gb) new_compare13(False, True) -> LT new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs37(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) new_esEs30(xuu101, xuu104, app(ty_[], h)) -> new_esEs25(xuu101, xuu104, h) new_compare15(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare27(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_esEs12(EQ, EQ) -> True new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cg), da)) -> new_compare15(xuu37, xuu38, cg, da) new_esEs16(xuu500000, xuu40000, app(ty_Maybe, dbh)) -> new_esEs24(xuu500000, xuu40000, dbh) new_lt21(xuu621, xuu631, app(ty_Maybe, bbg)) -> new_lt16(xuu621, xuu631, bbg) new_esEs14(xuu500002, xuu40002, app(app(ty_Either, chf), chg)) -> new_esEs28(xuu500002, xuu40002, chf, chg) new_esEs9(xuu50000, xuu4000, app(app(ty_@2, egd), ege)) -> new_esEs21(xuu50000, xuu4000, egd, ege) new_esEs37(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(ty_Maybe, dhb)) -> new_esEs24(xuu50002, xuu4002, dhb) new_compare0(xuu5000, xuu400, ty_Int) -> new_compare9(xuu5000, xuu400) new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare11(xuu37, xuu38) new_ltEs24(xuu115, xuu117, app(ty_[], cdh)) -> new_ltEs7(xuu115, xuu117, cdh) new_esEs36(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_compare14(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_lt21(xuu621, xuu631, ty_Int) -> new_lt9(xuu621, xuu631) new_esEs30(xuu101, xuu104, ty_Double) -> new_esEs23(xuu101, xuu104) new_esEs39(xuu114, xuu116, ty_Float) -> new_esEs26(xuu114, xuu116) new_compare19(GT, LT) -> GT new_esEs5(xuu50001, xuu4001, app(ty_Maybe, efd)) -> new_esEs24(xuu50001, xuu4001, efd) new_esEs25(:(xuu500000, xuu500001), [], eda) -> False new_esEs25([], :(xuu40000, xuu40001), eda) -> False new_lt23(xuu114, xuu116, ty_Ordering) -> new_lt19(xuu114, xuu116) new_lt22(xuu620, xuu630, app(app(ty_Either, bhe), bhf)) -> new_lt15(xuu620, xuu630, bhe, bhf) new_esEs29(xuu102, xuu105, ty_Double) -> new_esEs23(xuu102, xuu105) new_ltEs16(xuu62, xuu63) -> new_fsEs(new_compare17(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_compare0(xuu5000, xuu400, ty_Bool) -> new_compare13(xuu5000, xuu400) new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_lt5(xuu101, xuu104, ty_Char) -> new_lt14(xuu101, xuu104) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs26(xuu500000, xuu40000) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, eg, de, df) -> EQ new_ltEs4(True, False) -> False new_esEs22(True, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, db)) -> new_compare16(xuu37, xuu38, db) new_esEs5(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_esEs32(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_esEs38(xuu620, xuu630, app(app(ty_Either, bhe), bhf)) -> new_esEs28(xuu620, xuu630, bhe, bhf) new_esEs31(xuu621, xuu631, ty_Integer) -> new_esEs20(xuu621, xuu631) new_lt22(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_ltEs24(xuu115, xuu117, app(ty_Ratio, fhe)) -> new_ltEs11(xuu115, xuu117, fhe) new_esEs36(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt22(xuu620, xuu630, app(ty_Maybe, bhg)) -> new_lt16(xuu620, xuu630, bhg) new_esEs11(xuu50000, xuu4000, app(ty_Maybe, dfh)) -> new_esEs24(xuu50000, xuu4000, dfh) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare10(xuu37, xuu38, cd, ce, cf) new_esEs8(xuu50000, xuu4000, app(app(ty_Either, fde), fdf)) -> new_esEs28(xuu50000, xuu4000, fde, fdf) new_ltEs4(False, False) -> True new_lt21(xuu621, xuu631, ty_Float) -> new_lt11(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Ratio, fgf), bdd) -> new_ltEs11(xuu620, xuu630, fgf) new_esEs14(xuu500002, xuu40002, ty_Char) -> new_esEs27(xuu500002, xuu40002) new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs13(xuu500000, xuu40000, ebf, ebg, ebh) new_esEs35(xuu500000, xuu40000, app(ty_Maybe, faf)) -> new_esEs24(xuu500000, xuu40000, faf) new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Integer) -> new_ltEs16(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Char, bdd) -> new_ltEs13(xuu620, xuu630) new_compare19(LT, LT) -> EQ new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs13(xuu50000, xuu4000, dfc, dfd, dfe) new_esEs25([], [], eda) -> True new_lt22(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_compare114(xuu188, xuu189, xuu190, xuu191, False, ehb, ehc) -> GT new_ltEs19(xuu62, xuu63, app(ty_[], hc)) -> new_ltEs7(xuu62, xuu63, hc) new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs8(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt15(xuu101, xuu104, eb, ec) -> new_esEs12(new_compare15(xuu101, xuu104, eb, ec), LT) new_lt20(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs15(Nothing, Just(xuu630), ded) -> True new_esEs31(xuu621, xuu631, ty_Int) -> new_esEs19(xuu621, xuu631) new_esEs32(xuu620, xuu630, app(ty_Ratio, deg)) -> new_esEs17(xuu620, xuu630, deg) new_ltEs12(xuu62, xuu63) -> new_fsEs(new_compare6(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(ty_Either, edb), edc)) -> new_esEs28(xuu50000, xuu4000, edb, edc) new_lt5(xuu101, xuu104, app(app(ty_Either, eb), ec)) -> new_lt15(xuu101, xuu104, eb, ec) new_ltEs20(xuu622, xuu632, app(ty_[], bcb)) -> new_ltEs7(xuu622, xuu632, bcb) new_compare27(xuu69, xuu70, True, cfa, fdh) -> EQ new_ltEs14(Left(xuu620), Left(xuu630), ty_Bool, bdd) -> new_ltEs4(xuu620, xuu630) new_lt20(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_primPlusNat0(Succ(xuu2220), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2220, xuu5000100))) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_[], bef)) -> new_ltEs7(xuu620, xuu630, bef) new_lt11(xuu101, xuu104) -> new_esEs12(new_compare11(xuu101, xuu104), LT) new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Float) -> new_ltEs5(xuu620, xuu630) new_lt5(xuu101, xuu104, ty_Int) -> new_lt9(xuu101, xuu104) new_esEs5(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_lt22(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_ltEs13(xuu62, xuu63) -> new_fsEs(new_compare14(xuu62, xuu63)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt18(xuu101, xuu104, ee, ef) -> new_esEs12(new_compare18(xuu101, xuu104, ee, ef), LT) new_lt20(xuu620, xuu630, app(app(ty_Either, bac), bad)) -> new_lt15(xuu620, xuu630, bac, bad) new_ltEs23(xuu621, xuu631, app(ty_[], cac)) -> new_ltEs7(xuu621, xuu631, cac) new_esEs4(xuu50002, xuu4002, app(app(ty_Either, dhd), dhe)) -> new_esEs28(xuu50002, xuu4002, dhd, dhe) new_ltEs18(GT, LT) -> False new_esEs4(xuu50002, xuu4002, ty_@0) -> new_esEs18(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_@0) -> new_esEs18(xuu500002, xuu40002) new_lt5(xuu101, xuu104, ty_Integer) -> new_lt17(xuu101, xuu104) new_esEs38(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare13(xuu37, xuu38) new_lt5(xuu101, xuu104, app(ty_Maybe, ed)) -> new_lt16(xuu101, xuu104, ed) new_ltEs22(xuu69, xuu70, app(ty_[], cfb)) -> new_ltEs7(xuu69, xuu70, cfb) new_ltEs4(True, True) -> True new_lt6(xuu102, xuu105, ty_Integer) -> new_lt17(xuu102, xuu105) new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Double) -> new_ltEs12(xuu621, xuu631) new_ltEs15(Just(xuu620), Just(xuu630), ty_Int) -> new_ltEs9(xuu620, xuu630) new_lt14(xuu101, xuu104) -> new_esEs12(new_compare14(xuu101, xuu104), LT) new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_compare19(EQ, LT) -> GT new_esEs31(xuu621, xuu631, ty_Ordering) -> new_esEs12(xuu621, xuu631) new_ltEs21(xuu76, xuu77, app(ty_[], cbd)) -> new_ltEs7(xuu76, xuu77, cbd) new_lt20(xuu620, xuu630, app(ty_Maybe, bae)) -> new_lt16(xuu620, xuu630, bae) new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_lt21(xuu621, xuu631, ty_Integer) -> new_lt17(xuu621, xuu631) new_esEs14(xuu500002, xuu40002, app(ty_Maybe, chd)) -> new_esEs24(xuu500002, xuu40002, chd) new_esEs4(xuu50002, xuu4002, ty_Char) -> new_esEs27(xuu50002, xuu4002) new_esEs32(xuu620, xuu630, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs13(xuu620, xuu630, hh, baa, bab) new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_compare0(xuu5000, xuu400, app(app(app(ty_@3, bc), bd), be)) -> new_compare10(xuu5000, xuu400, bc, bd, be) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, df) -> new_compare110(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt5(xuu101, xuu104, eg), new_asAs(new_esEs30(xuu101, xuu104, eg), new_pePe(new_lt6(xuu102, xuu105, de), new_asAs(new_esEs29(xuu102, xuu105, de), new_ltEs6(xuu103, xuu106, df)))), eg, de, df) new_esEs30(xuu101, xuu104, ty_Ordering) -> new_esEs12(xuu101, xuu104) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare9(xuu37, xuu38) new_esEs29(xuu102, xuu105, app(ty_Ratio, ddh)) -> new_esEs17(xuu102, xuu105, ddh) new_lt20(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Ordering) -> new_lt19(xuu101, xuu104) new_esEs30(xuu101, xuu104, app(ty_Ratio, ddg)) -> new_esEs17(xuu101, xuu104, ddg) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs39(xuu114, xuu116, ty_Char) -> new_esEs27(xuu114, xuu116) new_compare7([], [], ba) -> EQ new_compare15(Right(xuu50000), Left(xuu4000), bf, bg) -> GT new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_esEs16(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt13(xuu101, xuu104) -> new_esEs12(new_compare13(xuu101, xuu104), LT) new_esEs15(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_ltEs15(Just(xuu620), Just(xuu630), ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Double) -> new_ltEs12(xuu115, xuu117) new_ltEs6(xuu103, xuu106, app(app(ty_@2, ha), hb)) -> new_ltEs17(xuu103, xuu106, ha, hb) new_esEs10(xuu50001, xuu4001, app(ty_Ratio, fbc)) -> new_esEs17(xuu50001, xuu4001, fbc) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT new_esEs7(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) new_lt21(xuu621, xuu631, ty_Ordering) -> new_lt19(xuu621, xuu631) new_compare26(xuu76, xuu77, False, ehf) -> new_compare115(xuu76, xuu77, new_ltEs21(xuu76, xuu77, ehf), ehf) new_esEs32(xuu620, xuu630, app(app(ty_Either, bac), bad)) -> new_esEs28(xuu620, xuu630, bac, bad) new_lt22(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_@2, bec), bed), bdd) -> new_ltEs17(xuu620, xuu630, bec, bed) new_ltEs14(Right(xuu620), Left(xuu630), bee, bdd) -> False new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs13(xuu500000, xuu40000, ffe, fff, ffg) new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT new_esEs32(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Int, bdd) -> new_ltEs9(xuu620, xuu630) new_esEs16(xuu500000, xuu40000, app(ty_[], dca)) -> new_esEs25(xuu500000, xuu40000, dca) new_ltEs22(xuu69, xuu70, app(ty_Ratio, fea)) -> new_ltEs11(xuu69, xuu70, fea) new_esEs18(@0, @0) -> True new_compare19(EQ, EQ) -> EQ new_ltEs6(xuu103, xuu106, ty_Integer) -> new_ltEs16(xuu103, xuu106) new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Bool) -> new_ltEs4(xuu621, xuu631) new_ltEs6(xuu103, xuu106, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs10(xuu103, xuu106, gc, gd, ge) new_lt5(xuu101, xuu104, app(app(app(ty_@3, dg), dh), ea)) -> new_lt10(xuu101, xuu104, dg, dh, ea) new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs13(xuu50001, xuu4001, fbd, fbe, fbf) new_ltEs4(False, True) -> True new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(ty_[], efe)) -> new_esEs25(xuu50001, xuu4001, efe) new_lt23(xuu114, xuu116, ty_@0) -> new_lt8(xuu114, xuu116) new_ltEs8(xuu62, xuu63) -> new_fsEs(new_compare8(xuu62, xuu63)) new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(app(ty_@2, fh), ga)) -> new_lt18(xuu102, xuu105, fh, ga) new_compare28(xuu114, xuu115, xuu116, xuu117, True, cdg, ccf) -> EQ new_ltEs20(xuu622, xuu632, app(app(ty_Either, bcf), bcg)) -> new_ltEs14(xuu622, xuu632, bcf, bcg) new_ltEs15(Just(xuu620), Just(xuu630), ty_Double) -> new_ltEs12(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs18(xuu69, xuu70) new_esEs4(xuu50002, xuu4002, app(ty_Ratio, dgd)) -> new_esEs17(xuu50002, xuu4002, dgd) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False new_esEs30(xuu101, xuu104, ty_Bool) -> new_esEs22(xuu101, xuu104) new_esEs7(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) new_esEs29(xuu102, xuu105, app(app(ty_@2, fh), ga)) -> new_esEs21(xuu102, xuu105, fh, ga) new_compare19(GT, GT) -> EQ new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs13(xuu50002, xuu4002, dge, dgf, dgg) new_esEs39(xuu114, xuu116, ty_@0) -> new_esEs18(xuu114, xuu116) new_esEs38(xuu620, xuu630, app(ty_Maybe, bhg)) -> new_esEs24(xuu620, xuu630, bhg) new_esEs23(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_lt22(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Maybe, eeb)) -> new_esEs24(xuu500000, xuu40000, eeb) new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, app(ty_Ratio, chh)) -> new_esEs17(xuu500001, xuu40001, chh) new_lt9(xuu101, xuu104) -> new_esEs12(new_compare9(xuu101, xuu104), LT) new_ltEs23(xuu621, xuu631, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs10(xuu621, xuu631, cad, cae, caf) new_lt6(xuu102, xuu105, ty_Int) -> new_lt9(xuu102, xuu105) new_esEs30(xuu101, xuu104, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(xuu101, xuu104, dg, dh, ea) new_esEs32(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_esEs38(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs9(xuu69, xuu70) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, ede), edf), edg)) -> new_esEs13(xuu500000, xuu40000, ede, edf, edg) new_esEs14(xuu500002, xuu40002, ty_Integer) -> new_esEs20(xuu500002, xuu40002) new_lt21(xuu621, xuu631, ty_Char) -> new_lt14(xuu621, xuu631) new_esEs34(xuu500000, xuu40000, app(app(ty_@2, eca), ecb)) -> new_esEs21(xuu500000, xuu40000, eca, ecb) new_lt23(xuu114, xuu116, app(ty_[], cce)) -> new_lt7(xuu114, xuu116, cce) new_esEs12(LT, LT) -> True new_esEs33(xuu500001, xuu40001, app(ty_[], ebb)) -> new_esEs25(xuu500001, xuu40001, ebb) new_esEs9(xuu50000, xuu4000, app(app(ty_Either, egh), eha)) -> new_esEs28(xuu50000, xuu4000, egh, eha) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_[], bfg)) -> new_ltEs7(xuu620, xuu630, bfg) new_ltEs18(EQ, GT) -> True new_lt23(xuu114, xuu116, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt10(xuu114, xuu116, ccg, cch, cda) new_esEs26(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_ltEs23(xuu621, xuu631, ty_Integer) -> new_ltEs16(xuu621, xuu631) new_esEs4(xuu50002, xuu4002, ty_Float) -> new_esEs26(xuu50002, xuu4002) new_lt10(xuu101, xuu104, dg, dh, ea) -> new_esEs12(new_compare10(xuu101, xuu104, dg, dh, ea), LT) new_lt6(xuu102, xuu105, ty_Float) -> new_lt11(xuu102, xuu105) new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs12(xuu76, xuu77) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Maybe, feh), edc) -> new_esEs24(xuu500000, xuu40000, feh) new_lt6(xuu102, xuu105, app(app(ty_Either, fd), ff)) -> new_lt15(xuu102, xuu105, fd, ff) new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs19(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) new_esEs39(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_esEs21(xuu114, xuu116, cde, cdf) new_esEs15(xuu500001, xuu40001, app(app(ty_Either, dah), dba)) -> new_esEs28(xuu500001, xuu40001, dah, dba) new_esEs29(xuu102, xuu105, ty_@0) -> new_esEs18(xuu102, xuu105) new_esEs11(xuu50000, xuu4000, app(ty_[], dga)) -> new_esEs25(xuu50000, xuu4000, dga) new_compare7([], :(xuu4000, xuu4001), ba) -> LT new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs13(xuu500000, xuu40000, faa, fab, fac) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(xuu500000), Zero) -> GT new_esEs13(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), cgc, cgd, cge) -> new_asAs(new_esEs16(xuu500000, xuu40000, cgc), new_asAs(new_esEs15(xuu500001, xuu40001, cgd), new_esEs14(xuu500002, xuu40002, cge))) new_compare16(Just(xuu50000), Nothing, bh) -> GT new_pePe(False, xuu209) -> xuu209 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_Either, ffb), ffc), edc) -> new_esEs28(xuu500000, xuu40000, ffb, ffc) new_compare25(xuu62, xuu63, True, deb, hd) -> EQ new_lt20(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu622, xuu632, ty_Char) -> new_ltEs13(xuu622, xuu632) new_ltEs18(LT, GT) -> True new_esEs15(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_@0) -> new_lt8(xuu101, xuu104) new_compare16(Nothing, Nothing, bh) -> EQ new_esEs10(xuu50001, xuu4001, app(app(ty_Either, fcc), fcd)) -> new_esEs28(xuu50001, xuu4001, fcc, fcd) new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False new_ltEs20(xuu622, xuu632, ty_Integer) -> new_ltEs16(xuu622, xuu632) new_ltEs6(xuu103, xuu106, ty_@0) -> new_ltEs8(xuu103, xuu106) new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_lt16(xuu101, xuu104, ed) -> new_esEs12(new_compare16(xuu101, xuu104, ed), LT) new_esEs4(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) new_esEs15(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs9(xuu50000, xuu4000, app(ty_Ratio, efh)) -> new_esEs17(xuu50000, xuu4000, efh) new_ltEs15(Nothing, Nothing, ded) -> True new_ltEs15(Just(xuu620), Nothing, ded) -> False new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Float, bdd) -> new_ltEs5(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(ty_Maybe, eba)) -> new_esEs24(xuu500001, xuu40001, eba) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs12(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_Ratio, fgg)) -> new_ltEs11(xuu620, xuu630, fgg) new_ltEs21(xuu76, xuu77, app(ty_Maybe, ccb)) -> new_ltEs15(xuu76, xuu77, ccb) new_esEs10(xuu50001, xuu4001, app(ty_Maybe, fca)) -> new_esEs24(xuu50001, xuu4001, fca) new_lt23(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_lt16(xuu114, xuu116, cdd) new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs8(xuu76, xuu77) new_esEs8(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_lt21(xuu621, xuu631, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt10(xuu621, xuu631, bbb, bbc, bbd) new_esEs31(xuu621, xuu631, ty_@0) -> new_esEs18(xuu621, xuu631) new_esEs30(xuu101, xuu104, app(ty_Maybe, ed)) -> new_esEs24(xuu101, xuu104, ed) new_esEs8(xuu50000, xuu4000, app(app(ty_@2, fda), fdb)) -> new_esEs21(xuu50000, xuu4000, fda, fdb) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_[], bdc), bdd) -> new_ltEs7(xuu620, xuu630, bdc) new_esEs20(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) new_esEs22(False, True) -> False new_esEs22(True, False) -> False new_esEs29(xuu102, xuu105, ty_Integer) -> new_esEs20(xuu102, xuu105) new_ltEs18(LT, LT) -> True new_ltEs23(xuu621, xuu631, app(app(ty_@2, cbb), cbc)) -> new_ltEs17(xuu621, xuu631, cbb, cbc) new_ltEs20(xuu622, xuu632, ty_Ordering) -> new_ltEs18(xuu622, xuu632) new_esEs8(xuu50000, xuu4000, app(ty_[], fdd)) -> new_esEs25(xuu50000, xuu4000, fdd) new_esEs38(xuu620, xuu630, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs13(xuu620, xuu630, bhb, bhc, bhd) new_esEs15(xuu500001, xuu40001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs13(xuu500001, xuu40001, daa, dab, dac) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs14(xuu620, xuu630, bdh, bea) new_ltEs14(Left(xuu620), Left(xuu630), ty_Ordering, bdd) -> new_ltEs18(xuu620, xuu630) new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs15(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_ltEs6(xuu103, xuu106, app(app(ty_Either, gf), gg)) -> new_ltEs14(xuu103, xuu106, gf, gg) new_ltEs9(xuu62, xuu63) -> new_fsEs(new_compare9(xuu62, xuu63)) new_ltEs18(EQ, EQ) -> True new_esEs6(xuu50000, xuu4000, app(app(ty_@2, eaa), eab)) -> new_esEs21(xuu50000, xuu4000, eaa, eab) new_esEs4(xuu50002, xuu4002, ty_Bool) -> new_esEs22(xuu50002, xuu4002) new_lt22(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_esEs22(False, False) -> True new_esEs38(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) new_esEs25(:(xuu500000, xuu500001), :(xuu40000, xuu40001), eda) -> new_asAs(new_esEs35(xuu500000, xuu40000, eda), new_esEs25(xuu500001, xuu40001, eda)) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs31(xuu621, xuu631, app(ty_[], bba)) -> new_esEs25(xuu621, xuu631, bba) new_esEs35(xuu500000, xuu40000, app(ty_Ratio, ehh)) -> new_esEs17(xuu500000, xuu40000, ehh) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_lt21(xuu621, xuu631, ty_Bool) -> new_lt13(xuu621, xuu631) new_esEs5(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_esEs39(xuu114, xuu116, ty_Integer) -> new_esEs20(xuu114, xuu116) new_esEs32(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare0(xuu5000, xuu400, ty_Float) -> new_compare11(xuu5000, xuu400) new_compare0(xuu5000, xuu400, app(ty_Maybe, bh)) -> new_compare16(xuu5000, xuu400, bh) new_ltEs18(LT, EQ) -> True new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs8(xuu62, xuu63) new_ltEs19(xuu62, xuu63, app(ty_Maybe, ded)) -> new_ltEs15(xuu62, xuu63, ded) new_compare115(xuu156, xuu157, True, fdg) -> LT new_lt6(xuu102, xuu105, ty_Bool) -> new_lt13(xuu102, xuu105) new_esEs8(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, app(app(ty_Either, fah), fba)) -> new_esEs28(xuu500000, xuu40000, fah, fba) new_esEs7(xuu50000, xuu4000, app(ty_[], ddd)) -> new_esEs25(xuu50000, xuu4000, ddd) new_ltEs15(Just(xuu620), Just(xuu630), ty_@0) -> new_ltEs8(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Maybe, bge)) -> new_ltEs15(xuu620, xuu630, bge) new_ltEs15(Just(xuu620), Just(xuu630), ty_Float) -> new_ltEs5(xuu620, xuu630) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs5(xuu62, xuu63) new_esEs7(xuu50000, xuu4000, app(ty_Maybe, ddc)) -> new_esEs24(xuu50000, xuu4000, ddc) new_esEs31(xuu621, xuu631, app(app(ty_@2, bbh), bca)) -> new_esEs21(xuu621, xuu631, bbh, bca) new_ltEs6(xuu103, xuu106, ty_Char) -> new_ltEs13(xuu103, xuu106) new_esEs16(xuu500000, xuu40000, app(app(ty_@2, dbf), dbg)) -> new_esEs21(xuu500000, xuu40000, dbf, dbg) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(ty_@2, ffh), fga)) -> new_esEs21(xuu500000, xuu40000, ffh, fga) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Bool, edc) -> new_esEs22(xuu500000, xuu40000) new_lt20(xuu620, xuu630, app(app(app(ty_@3, hh), baa), bab)) -> new_lt10(xuu620, xuu630, hh, baa, bab) new_esEs28(Left(xuu500000), Left(xuu40000), ty_@0, edc) -> new_esEs18(xuu500000, xuu40000) new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_esEs5(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_ltEs20(xuu622, xuu632, ty_@0) -> new_ltEs8(xuu622, xuu632) new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs16(xuu76, xuu77) new_compare19(GT, EQ) -> GT new_esEs16(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs39(xuu114, xuu116, app(ty_[], cce)) -> new_esEs25(xuu114, xuu116, cce) new_esEs6(xuu50000, xuu4000, app(ty_Ratio, ecg)) -> new_esEs17(xuu50000, xuu4000, ecg) new_ltEs24(xuu115, xuu117, ty_Ordering) -> new_ltEs18(xuu115, xuu117) new_esEs14(xuu500002, xuu40002, ty_Ordering) -> new_esEs12(xuu500002, xuu40002) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs9(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs13(xuu50000, xuu4000, cgc, cgd, cge) new_esEs7(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(ty_Maybe, egf)) -> new_esEs24(xuu50000, xuu4000, egf) new_esEs8(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt20(xuu620, xuu630, app(ty_[], he)) -> new_lt7(xuu620, xuu630, he) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Integer, edc) -> new_esEs20(xuu500000, xuu40000) new_asAs(True, xuu135) -> xuu135 new_esEs24(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, app(app(ty_@2, baf), bag)) -> new_esEs21(xuu620, xuu630, baf, bag) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Int, edc) -> new_esEs19(xuu500000, xuu40000) new_esEs34(xuu500000, xuu40000, app(app(ty_Either, ece), ecf)) -> new_esEs28(xuu500000, xuu40000, ece, ecf) new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_@2, efb), efc)) -> new_esEs21(xuu50001, xuu4001, efb, efc) new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs27(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs5(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Int) -> new_ltEs9(xuu620, xuu630) new_esEs39(xuu114, xuu116, ty_Double) -> new_esEs23(xuu114, xuu116) new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) new_compare111(xuu140, xuu141, False, ehd, ehe) -> GT new_ltEs20(xuu622, xuu632, app(ty_Ratio, dfa)) -> new_ltEs11(xuu622, xuu632, dfa) new_ltEs15(Just(xuu620), Just(xuu630), ty_Integer) -> new_ltEs16(xuu620, xuu630) new_esEs30(xuu101, xuu104, ty_Float) -> new_esEs26(xuu101, xuu104) new_compare0(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs4(xuu76, xuu77) new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) new_esEs38(xuu620, xuu630, app(ty_Ratio, fgh)) -> new_esEs17(xuu620, xuu630, fgh) new_primMulNat0(Zero, Zero) -> Zero new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dff), dfg)) -> new_esEs21(xuu50000, xuu4000, dff, dfg) new_ltEs5(xuu62, xuu63) -> new_fsEs(new_compare11(xuu62, xuu63)) new_lt20(xuu620, xuu630, app(app(ty_@2, baf), bag)) -> new_lt18(xuu620, xuu630, baf, bag) new_esEs10(xuu50001, xuu4001, app(ty_[], fcb)) -> new_esEs25(xuu50001, xuu4001, fcb) new_esEs35(xuu500000, xuu40000, app(ty_[], fag)) -> new_esEs25(xuu500000, xuu40000, fag) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs5(xuu69, xuu70) new_lt23(xuu114, xuu116, ty_Double) -> new_lt4(xuu114, xuu116) new_esEs4(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_lt23(xuu114, xuu116, app(ty_Ratio, fhd)) -> new_lt12(xuu114, xuu116, fhd) new_esEs16(xuu500000, xuu40000, app(ty_Ratio, dbb)) -> new_esEs17(xuu500000, xuu40000, dbb) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs19(xuu62, xuu63, app(ty_Ratio, dec)) -> new_ltEs11(xuu62, xuu63, dec) new_lt21(xuu621, xuu631, app(app(ty_@2, bbh), bca)) -> new_lt18(xuu621, xuu631, bbh, bca) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs10(xuu620, xuu630, beg, beh, bfa) new_ltEs23(xuu621, xuu631, app(ty_Maybe, cba)) -> new_ltEs15(xuu621, xuu631, cba) new_compare16(Just(xuu50000), Just(xuu4000), bh) -> new_compare26(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_esEs33(xuu500001, xuu40001, app(app(ty_@2, eag), eah)) -> new_esEs21(xuu500001, xuu40001, eag, eah) new_esEs39(xuu114, xuu116, ty_Ordering) -> new_esEs12(xuu114, xuu116) new_ltEs22(xuu69, xuu70, app(ty_Maybe, cfh)) -> new_ltEs15(xuu69, xuu70, cfh) new_ltEs21(xuu76, xuu77, app(app(ty_@2, ccc), ccd)) -> new_ltEs17(xuu76, xuu77, ccc, ccd) new_esEs5(xuu50001, xuu4001, app(app(app(ty_@3, eeg), eeh), efa)) -> new_esEs13(xuu50001, xuu4001, eeg, eeh, efa) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_[], ffa), edc) -> new_esEs25(xuu500000, xuu40000, ffa) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_lt8(xuu101, xuu104) -> new_esEs12(new_compare8(xuu101, xuu104), LT) new_lt7(xuu101, xuu104, h) -> new_esEs12(new_compare7(xuu101, xuu104, h), LT) new_esEs4(xuu50002, xuu4002, app(ty_[], dhc)) -> new_esEs25(xuu50002, xuu4002, dhc) new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False new_ltEs22(xuu69, xuu70, app(app(ty_Either, cff), cfg)) -> new_ltEs14(xuu69, xuu70, cff, cfg) new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) new_esEs28(Left(xuu500000), Right(xuu40000), edb, edc) -> False new_esEs28(Right(xuu500000), Left(xuu40000), edb, edc) -> False new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Double) -> new_ltEs12(xuu620, xuu630) new_esEs31(xuu621, xuu631, ty_Char) -> new_esEs27(xuu621, xuu631) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_[], fgc)) -> new_esEs25(xuu500000, xuu40000, fgc) new_esEs34(xuu500000, xuu40000, app(ty_[], ecd)) -> new_esEs25(xuu500000, xuu40000, ecd) new_compare0(xuu5000, xuu400, ty_@0) -> new_compare8(xuu5000, xuu400) new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_[], eec)) -> new_esEs25(xuu500000, xuu40000, eec) new_esEs17(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), ecg) -> new_asAs(new_esEs37(xuu500000, xuu40000, ecg), new_esEs36(xuu500001, xuu40001, ecg)) new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_lt20(xuu620, xuu630, app(ty_Ratio, deg)) -> new_lt12(xuu620, xuu630, deg) new_primCompAux00(xuu37, xuu38, LT, dee) -> LT new_esEs15(xuu500001, xuu40001, app(ty_[], dag)) -> new_esEs25(xuu500001, xuu40001, dag) new_ltEs23(xuu621, xuu631, app(app(ty_Either, cag), cah)) -> new_ltEs14(xuu621, xuu631, cag, cah) new_esEs7(xuu50000, xuu4000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(xuu50000, xuu4000, dcf, dcg, dch) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs4(xuu69, xuu70) new_not(False) -> True new_ltEs20(xuu622, xuu632, ty_Bool) -> new_ltEs4(xuu622, xuu632) new_compare113(xuu188, xuu189, xuu190, xuu191, False, xuu193, ehb, ehc) -> new_compare114(xuu188, xuu189, xuu190, xuu191, xuu193, ehb, ehc) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_@2, fef), feg), edc) -> new_esEs21(xuu500000, xuu40000, fef, feg) new_ltEs20(xuu622, xuu632, app(app(ty_@2, bda), bdb)) -> new_ltEs17(xuu622, xuu632, bda, bdb) new_esEs5(xuu50001, xuu4001, app(ty_Ratio, eef)) -> new_esEs17(xuu50001, xuu4001, eef) new_ltEs20(xuu622, xuu632, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs10(xuu622, xuu632, bcc, bcd, bce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs8(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs4(xuu50002, xuu4002, ty_Double) -> new_esEs23(xuu50002, xuu4002) new_ltEs23(xuu621, xuu631, ty_@0) -> new_ltEs8(xuu621, xuu631) new_esEs29(xuu102, xuu105, ty_Float) -> new_esEs26(xuu102, xuu105) new_ltEs19(xuu62, xuu63, app(app(ty_@2, cab), bha)) -> new_ltEs17(xuu62, xuu63, cab, bha) new_ltEs7(xuu62, xuu63, hc) -> new_fsEs(new_compare7(xuu62, xuu63, hc)) new_lt22(xuu620, xuu630, app(ty_Ratio, fgh)) -> new_lt12(xuu620, xuu630, fgh) new_lt5(xuu101, xuu104, app(ty_Ratio, ddg)) -> new_lt12(xuu101, xuu104, ddg) new_lt22(xuu620, xuu630, app(app(ty_@2, bhh), caa)) -> new_lt18(xuu620, xuu630, bhh, caa) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, bah), hf), hg)) -> new_ltEs10(xuu62, xuu63, bah, hf, hg) new_esEs7(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs13(xuu50000, xuu4000, ega, egb, egc) new_esEs8(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs38(xuu620, xuu630, app(app(ty_@2, bhh), caa)) -> new_esEs21(xuu620, xuu630, bhh, caa) new_compare27(xuu69, xuu70, False, cfa, fdh) -> new_compare116(xuu69, xuu70, new_ltEs22(xuu69, xuu70, fdh), cfa, fdh) new_esEs30(xuu101, xuu104, ty_Char) -> new_esEs27(xuu101, xuu104) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs13(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs10(xuu69, xuu70, cfc, cfd, cfe) new_esEs31(xuu621, xuu631, app(app(ty_Either, bbe), bbf)) -> new_esEs28(xuu621, xuu631, bbe, bbf) new_compare13(False, False) -> EQ new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare13(True, True) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(xuu500001, xuu40001, app(app(ty_@2, dad), dae)) -> new_esEs21(xuu500001, xuu40001, dad, dae) new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_esEs29(xuu102, xuu105, ty_Char) -> new_esEs27(xuu102, xuu105) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Ratio, edd)) -> new_esEs17(xuu500000, xuu40000, edd) new_esEs7(xuu50000, xuu4000, app(ty_Ratio, dce)) -> new_esEs17(xuu50000, xuu4000, dce) new_esEs38(xuu620, xuu630, app(ty_[], bgh)) -> new_esEs25(xuu620, xuu630, bgh) new_lt6(xuu102, xuu105, app(ty_[], eh)) -> new_lt7(xuu102, xuu105, eh) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs4(xuu62, xuu63) new_esEs5(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, dhf, dhg, dhh) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, dhf, dhg, dhh) new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) new_ltEs24(xuu115, xuu117, app(ty_Maybe, cef)) -> new_ltEs15(xuu115, xuu117, cef) new_ltEs24(xuu115, xuu117, ty_Char) -> new_ltEs13(xuu115, xuu117) new_esEs15(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_Double) -> new_lt4(xuu101, xuu104) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Ratio, feb), edc) -> new_esEs17(xuu500000, xuu40000, feb) new_lt5(xuu101, xuu104, app(ty_[], h)) -> new_lt7(xuu101, xuu104, h) new_lt21(xuu621, xuu631, ty_Double) -> new_lt4(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_@0) -> new_ltEs8(xuu115, xuu117) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Maybe, beb), bdd) -> new_ltEs15(xuu620, xuu630, beb) new_ltEs18(GT, EQ) -> False new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_compare18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ca, cb) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_esEs24(Nothing, Nothing, ech) -> True new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) new_ltEs10(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, hg) -> new_pePe(new_lt20(xuu620, xuu630, bah), new_asAs(new_esEs32(xuu620, xuu630, bah), new_pePe(new_lt21(xuu621, xuu631, hf), new_asAs(new_esEs31(xuu621, xuu631, hf), new_ltEs20(xuu622, xuu632, hg))))) new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare17(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) new_esEs14(xuu500002, xuu40002, ty_Double) -> new_esEs23(xuu500002, xuu40002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt6(xuu102, xuu105, ty_Double) -> new_lt4(xuu102, xuu105) new_lt20(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_esEs8(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs10(xuu76, xuu77, cbe, cbf, cbg) new_compare25(xuu62, xuu63, False, deb, hd) -> new_compare111(xuu62, xuu63, new_ltEs19(xuu62, xuu63, deb), deb, hd) new_primEqNat0(Zero, Zero) -> True new_esEs14(xuu500002, xuu40002, app(app(ty_@2, chb), chc)) -> new_esEs21(xuu500002, xuu40002, chb, chc) new_ltEs6(xuu103, xuu106, ty_Bool) -> new_ltEs4(xuu103, xuu106) new_ltEs20(xuu622, xuu632, ty_Int) -> new_ltEs9(xuu622, xuu632) new_esEs31(xuu621, xuu631, ty_Float) -> new_esEs26(xuu621, xuu631) new_lt23(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_lt18(xuu114, xuu116, cde, cdf) new_compare16(Nothing, Just(xuu4000), bh) -> LT new_esEs24(Nothing, Just(xuu40000), ech) -> False new_esEs24(Just(xuu500000), Nothing, ech) -> False new_lt21(xuu621, xuu631, app(ty_[], bba)) -> new_lt7(xuu621, xuu631, bba) new_ltEs18(GT, GT) -> True new_asAs(False, xuu135) -> False new_esEs30(xuu101, xuu104, app(app(ty_Either, eb), ec)) -> new_esEs28(xuu101, xuu104, eb, ec) new_lt21(xuu621, xuu631, app(ty_Ratio, deh)) -> new_lt12(xuu621, xuu631, deh) new_esEs14(xuu500002, xuu40002, app(ty_[], che)) -> new_esEs25(xuu500002, xuu40002, che) new_ltEs6(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(ty_Ratio, ddh)) -> new_lt12(xuu102, xuu105, ddh) new_esEs8(xuu50000, xuu4000, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs13(xuu50000, xuu4000, fcf, fcg, fch) new_ltEs23(xuu621, xuu631, ty_Char) -> new_ltEs13(xuu621, xuu631) new_esEs29(xuu102, xuu105, app(app(ty_Either, fd), ff)) -> new_esEs28(xuu102, xuu105, fd, ff) The set Q consists of the following terms: new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs8(x0, x1, ty_Int) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs35(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Char) new_ltEs15(Just(x0), Nothing, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_pePe(False, x0) new_primPlusNat1(Zero, Zero) new_lt5(x0, x1, ty_Float) new_lt10(x0, x1, x2, x3, x4) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_lt15(x0, x1, x2, x3) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare15(Left(x0), Right(x1), x2, x3) new_compare15(Right(x0), Left(x1), x2, x3) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, GT, x2) new_esEs36(x0, x1, ty_Int) new_compare15(Right(x0), Right(x1), x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_compare13(False, False) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs28(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Nothing, Nothing, x0) new_ltEs6(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Double) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_lt23(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(True, True) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_compare7([], [], x0) new_esEs16(x0, x1, app(ty_[], x2)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs8(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs12(GT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Ordering) new_esEs16(x0, x1, ty_Double) new_ltEs18(GT, GT) new_ltEs21(x0, x1, ty_Ordering) new_compare0(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare7(:(x0, x1), [], x2) new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare13(True, True) new_esEs19(x0, x1) new_lt21(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_esEs25([], [], x0) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs33(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_ltEs11(x0, x1, x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Left(x0), Left(x1), ty_Float, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare7(:(x0, x1), :(x2, x3), x4) new_ltEs22(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_compare114(x0, x1, x2, x3, True, x4, x5) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(Left(x0), Right(x1), x2, x3) new_esEs28(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_compare0(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_lt6(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Just(x0), x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare116(x0, x1, False, x2, x3) new_compare19(LT, LT) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare27(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs28(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare27(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Char) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, ty_Double) new_esEs31(x0, x1, ty_Int) new_lt7(x0, x1, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_compare16(Just(x0), Just(x1), x2) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs4(True, False) new_ltEs4(False, True) new_ltEs19(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs18(EQ, EQ) new_lt5(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Ordering) new_esEs24(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, ty_@0) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_esEs15(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs14(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_esEs25([], :(x0, x1), x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Char) new_lt16(x0, x1, x2) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_ltEs21(x0, x1, ty_Float) new_ltEs4(False, False) new_sr0(Integer(x0), Integer(x1)) new_esEs10(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_esEs38(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Integer) new_esEs18(@0, @0) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_esEs32(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Double) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_primEqNat0(Succ(x0), Zero) new_not(False) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_lt6(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare26(x0, x1, True, x2) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare19(EQ, EQ) new_compare116(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Float) new_ltEs15(Nothing, Nothing, x0) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs12(EQ, EQ) new_primCmpNat0(Zero, Succ(x0)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_compare14(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Integer) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs23(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_asAs(True, x0) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_ltEs15(Nothing, Just(x0), x1) new_esEs30(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(:(x0, x1), :(x2, x3), x4) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs6(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Double) new_compare0(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs8(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare8(@0, @0) new_esEs4(x0, x1, ty_Integer) new_esEs28(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_lt22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(False, True) new_esEs22(True, False) new_compare16(Just(x0), Nothing, x1) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare7([], :(x0, x1), x2) new_esEs28(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_sr(x0, x1) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt14(x0, x1) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare0(x0, x1, ty_Ordering) new_ltEs7(x0, x1, x2) new_ltEs6(x0, x1, ty_Float) new_esEs15(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs11(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Integer) new_ltEs18(LT, LT) new_esEs15(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs10(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_compare26(x0, x1, False, x2) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Float) new_esEs16(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_lt6(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs9(x0, x1, ty_Int) new_ltEs6(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs27(Char(x0), Char(x1)) new_esEs10(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt5(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare17(Integer(x0), Integer(x1)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs24(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs10(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Double) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs15(x0, x1, ty_Double) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Int) new_esEs28(Right(x0), Right(x1), x2, ty_Int) new_compare115(x0, x1, False, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_compare114(x0, x1, x2, x3, False, x4, x5) new_compare9(x0, x1) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs24(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, x0) new_compare0(x0, x1, ty_Char) new_asAs(False, x0) new_lt22(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Ordering) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt11(x0, x1) new_compare111(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare25(x0, x1, True, x2, x3) new_esEs16(x0, x1, ty_Int) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs35(x0, x1, app(ty_[], x2)) new_compare15(Left(x0), Left(x1), x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Left(x0), Left(x1), ty_Integer, x2) new_esEs16(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs25(:(x0, x1), [], x2) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_@0) new_esEs28(Right(x0), Right(x1), x2, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs28(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(False, False) new_compare0(x0, x1, ty_Float) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(Right(x0), Right(x1), x2, ty_Bool) new_lt9(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt23(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(GT, LT) new_ltEs18(LT, GT) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare13(True, False) new_compare13(False, True) new_lt22(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs8(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1) new_compare19(GT, GT) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs28(Right(x0), Right(x1), x2, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_esEs28(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Float) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt4(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Nothing, x0) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 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(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu621, xuu631, cag, cah) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_[], bef)) -> new_ltEs(xuu620, xuu630, bef) new_ltEs(xuu62, xuu63, hc) -> new_compare(xuu62, xuu63, hc) new_compare(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ba) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_compare21(xuu69, xuu70, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu69, xuu70, cga, cgb) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu621, xuu631, cbb, cbc) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu620, xuu630, bhh, caa) new_lt3(xuu101, xuu104, ee, ef) -> new_compare5(xuu101, xuu104, ee, ef) new_compare5(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ca, cb) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccf) -> new_lt2(xuu114, xuu116, cdd) new_lt2(xuu101, xuu104, ed) -> new_compare4(xuu101, xuu104, ed) new_compare4(Just(xuu50000), Just(xuu4000), bh) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu621, xuu631, cba) new_ltEs2(Just(xuu620), Just(xuu630), app(ty_[], bfg)) -> new_ltEs(xuu620, xuu630, bfg) new_ltEs2(Just(xuu620), Just(xuu630), app(ty_Maybe, bge)) -> new_ltEs2(xuu620, xuu630, bge) new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu620, xuu630, bgf, bgg) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_[], bgh), bha) -> new_lt(xuu620, xuu630, bgh) new_lt(xuu101, xuu104, h) -> new_compare(xuu101, xuu104, h) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu620, xuu630, hh, baa, bab) new_lt0(xuu101, xuu104, dg, dh, ea) -> new_compare1(xuu101, xuu104, dg, dh, ea) new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bc, bd, be) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu101, xuu104, ed) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu102, xuu105, fa, fb, fc) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu103, xuu106, ha, hb) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_[], cac)) -> new_ltEs(xuu621, xuu631, cac) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_Maybe, bhg), bha) -> new_lt2(xuu620, xuu630, bhg) new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu620, xuu630, bhe, bhf) new_lt1(xuu101, xuu104, eb, ec) -> new_compare3(xuu101, xuu104, eb, ec) new_compare3(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_compare21(xuu69, xuu70, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu69, xuu70, cfb) new_compare21(xuu69, xuu70, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu69, xuu70, cfh) new_ltEs2(Just(xuu620), Just(xuu630), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu620, xuu630, bae) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_[], he), hf, hg) -> new_lt(xuu620, xuu630, he) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_[], bba), hg) -> new_lt(xuu621, xuu631, bba) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu622, xuu632, bcf, bcg) new_ltEs1(Left(xuu620), Left(xuu630), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu620, xuu630, beb) new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu620, xuu630, bgc, bgd) new_ltEs1(Left(xuu620), Left(xuu630), app(ty_[], bdc), bdd) -> new_ltEs(xuu620, xuu630, bdc) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu620, xuu630, bfb, bfc) new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu620, xuu630, bec, bed) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu620, xuu630, bfd) new_ltEs1(Left(xuu620), Left(xuu630), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu620, xuu630, baf, bag) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu622, xuu632, bcb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu621, xuu631, bbh, bca) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu621, xuu631, bbe, bbf) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu622, xuu632, bda, bdb) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu620, xuu630, bac, bad) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu622, xuu632, bch) new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu621, xuu631, bbg) new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu620, xuu630, bdh, bea) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu620, xuu630, bfe, bff) new_compare21(xuu69, xuu70, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu69, xuu70, cfc, cfd, cfe) new_compare21(xuu69, xuu70, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu69, xuu70, cff, cfg) new_compare3(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu620, xuu630, bec, bed) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu620, xuu630, bge) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu621, xuu631, cbb, cbc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu621, xuu631, bba) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu620, xuu630, bdc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu620, xuu630, bgc, bgd) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu620, xuu630, bgh) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu621, xuu631, bbh, bca) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu620, xuu630, baf, bag) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu622, xuu632, bch) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu620, xuu630, hh, baa, bab) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu620, xuu630, bhg) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu620, xuu630, bef) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu620, xuu630, bfe, bff) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu620, xuu630, bhh, caa) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu621, xuu631, bbg) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu620, xuu630, bae) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu620, xuu630, bfg) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu620, xuu630, beb) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu620, xuu630, bhe, bhf) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu621, xuu631, cba) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu622, xuu632, bda, bdb) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu622, xuu632, bcf, bcg) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu621, xuu631, cac) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu620, xuu630, bac, bad) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu620, xuu630, he) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu620, xuu630, bdh, bea) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu620, xuu630, bfb, bfc) new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu620, xuu630, bgf, bgg) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu621, xuu631, bbe, bbf) new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu620, xuu630, bfd) new_compare20(xuu62, xuu63, False, app(ty_[], hc), hd) -> new_compare(xuu62, xuu63, hc) new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu622, xuu632, bcb) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu621, xuu631, cag, cah) new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu102, xuu105, fh, ga) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu101, xuu104, eb, ec) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu102, xuu105, fd, ff) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu103, xuu106, gc, gd, ge) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu102, xuu105, fg) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu103, xuu106, gb) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu101, xuu104, ee, ef) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu103, xuu106, gh) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu101, xuu104, dg, dh, ea) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], h), de, df) -> new_compare(xuu101, xuu104, h) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_[], eh), df) -> new_lt(xuu102, xuu105, eh) new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu103, xuu106, gf, gg) new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu76, xuu77, cbh, cca) new_compare22(xuu76, xuu77, False, app(ty_[], cbd)) -> new_ltEs(xuu76, xuu77, cbd) new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu76, xuu77, cbe, cbf, cbg) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cce), ccf) -> new_lt(xuu114, xuu116, cce) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(xuu115, xuu117, cea, ceb, cec) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(xuu114, xuu116, ccg, cch, cda) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccf) -> new_lt3(xuu114, xuu116, cde, cdf) new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cdb), cdc), ccf) -> new_lt1(xuu114, xuu116, cdb, cdc) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, ced), cee)) -> new_ltEs1(xuu115, xuu117, ced, cee) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cdh)) -> new_ltEs(xuu115, xuu117, cdh) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, ca), cb)) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, bh)) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux0(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cc)) -> new_compare(xuu37, xuu38, cc) new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ba)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) The TRS R consists of the following rules: new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_@2, edh), eea)) -> new_esEs21(xuu500000, xuu40000, edh, eea) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs28(Left(xuu500000), Left(xuu40000), ty_Float, edc) -> new_esEs26(xuu500000, xuu40000) new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Double, edc) -> new_esEs23(xuu500000, xuu40000) new_pePe(True, xuu209) -> True new_ltEs20(xuu622, xuu632, app(ty_Maybe, bch)) -> new_ltEs15(xuu622, xuu632, bch) new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs38(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_esEs7(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_Either, eff), efg)) -> new_esEs28(xuu50001, xuu4001, eff, efg) new_esEs30(xuu101, xuu104, app(app(ty_@2, ee), ef)) -> new_esEs21(xuu101, xuu104, ee, ef) new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs24(xuu115, xuu117, app(app(ty_Either, ced), cee)) -> new_ltEs14(xuu115, xuu117, ced, cee) new_esEs39(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare14(xuu37, xuu38) new_esEs5(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_compare111(xuu140, xuu141, True, ehd, ehe) -> LT new_esEs14(xuu500002, xuu40002, ty_Int) -> new_esEs19(xuu500002, xuu40002) new_esEs11(xuu50000, xuu4000, app(app(ty_Either, dgb), dgc)) -> new_esEs28(xuu50000, xuu4000, dgb, dgc) new_esEs32(xuu620, xuu630, app(ty_[], he)) -> new_esEs25(xuu620, xuu630, he) new_compare7(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ba) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, ba) new_compare0(xuu5000, xuu400, ty_Char) -> new_compare14(xuu5000, xuu400) new_esEs16(xuu500000, xuu40000, app(app(ty_Either, dcb), dcc)) -> new_esEs28(xuu500000, xuu40000, dcb, dcc) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs24(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs30(xuu101, xuu104, ty_Integer) -> new_esEs20(xuu101, xuu104) new_ltEs15(Just(xuu620), Just(xuu630), ty_Char) -> new_ltEs13(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, dhf, dhg, dhh) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dhf, dhg, dhh) new_esEs31(xuu621, xuu631, app(ty_Ratio, deh)) -> new_esEs17(xuu621, xuu631, deh) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare19(xuu37, xuu38) new_lt23(xuu114, xuu116, ty_Bool) -> new_lt13(xuu114, xuu116) new_ltEs14(Left(xuu620), Left(xuu630), ty_@0, bdd) -> new_ltEs8(xuu620, xuu630) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, dhf, dhg, dhh) -> GT new_esEs31(xuu621, xuu631, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs13(xuu621, xuu631, bbb, bbc, bbd) new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) new_esEs14(xuu500002, xuu40002, app(ty_Ratio, cgf)) -> new_esEs17(xuu500002, xuu40002, cgf) new_lt23(xuu114, xuu116, app(app(ty_Either, cdb), cdc)) -> new_lt15(xuu114, xuu116, cdb, cdc) new_esEs16(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Float) -> new_lt11(xuu101, xuu104) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_Ratio, ffd)) -> new_esEs17(xuu500000, xuu40000, ffd) new_not(True) -> False new_lt22(xuu620, xuu630, app(ty_[], bgh)) -> new_lt7(xuu620, xuu630, bgh) new_lt22(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_lt23(xuu114, xuu116, ty_Int) -> new_lt9(xuu114, xuu116) new_esEs35(xuu500000, xuu40000, app(app(ty_@2, fad), fae)) -> new_esEs21(xuu500000, xuu40000, fad, fae) new_esEs14(xuu500002, xuu40002, ty_Bool) -> new_esEs22(xuu500002, xuu40002) new_esEs7(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_ltEs24(xuu115, xuu117, ty_Integer) -> new_ltEs16(xuu115, xuu117) new_primEqNat0(Succ(xuu5000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu400000)) -> False new_lt6(xuu102, xuu105, app(ty_Maybe, fg)) -> new_lt16(xuu102, xuu105, fg) new_ltEs24(xuu115, xuu117, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs10(xuu115, xuu117, cea, ceb, cec) new_esEs39(xuu114, xuu116, app(ty_Ratio, fhd)) -> new_esEs17(xuu114, xuu116, fhd) new_esEs39(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_esEs24(xuu114, xuu116, cdd) new_esEs10(xuu50001, xuu4001, app(app(ty_@2, fbg), fbh)) -> new_esEs21(xuu50001, xuu4001, fbg, fbh) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], cc)) -> new_compare7(xuu37, xuu38, cc) new_compare115(xuu156, xuu157, False, fdg) -> GT new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare9(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) new_esEs9(xuu50000, xuu4000, app(ty_[], egg)) -> new_esEs25(xuu50000, xuu4000, egg) new_esEs29(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) new_esEs16(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_lt19(xuu101, xuu104) -> new_esEs12(new_compare19(xuu101, xuu104), LT) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu621, xuu631, ty_Float) -> new_ltEs5(xuu621, xuu631) new_compare17(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs13(xuu76, xuu77) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs17(xuu620, xuu630, bfe, bff) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_lt6(xuu102, xuu105, ty_@0) -> new_lt8(xuu102, xuu105) new_compare28(xuu114, xuu115, xuu116, xuu117, False, cdg, ccf) -> new_compare113(xuu114, xuu115, xuu116, xuu117, new_lt23(xuu114, xuu116, cdg), new_asAs(new_esEs39(xuu114, xuu116, cdg), new_ltEs24(xuu115, xuu117, ccf)), cdg, ccf) new_compare116(xuu147, xuu148, True, fhb, fhc) -> LT new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT new_lt22(xuu620, xuu630, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt10(xuu620, xuu630, bhb, bhc, bhd) new_compare9(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs8(xuu69, xuu70) new_esEs30(xuu101, xuu104, ty_@0) -> new_esEs18(xuu101, xuu104) new_esEs16(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs8(xuu50000, xuu4000, app(ty_Ratio, fce)) -> new_esEs17(xuu50000, xuu4000, fce) new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ecc)) -> new_esEs24(xuu500000, xuu40000, ecc) new_lt23(xuu114, xuu116, ty_Integer) -> new_lt17(xuu114, xuu116) new_primPlusNat1(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat1(xuu21200, xuu21100))) new_lt5(xuu101, xuu104, app(app(ty_@2, ee), ef)) -> new_lt18(xuu101, xuu104, ee, ef) new_primCompAux00(xuu37, xuu38, GT, dee) -> GT new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs7(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primCmpNat0(Zero, Succ(xuu40000)) -> LT new_esEs4(xuu50002, xuu4002, app(app(ty_@2, dgh), dha)) -> new_esEs21(xuu50002, xuu4002, dgh, dha) new_esEs29(xuu102, xuu105, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs13(xuu102, xuu105, fa, fb, fc) new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_Maybe, fgb)) -> new_esEs24(xuu500000, xuu40000, fgb) new_ltEs23(xuu621, xuu631, ty_Int) -> new_ltEs9(xuu621, xuu631) new_lt20(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_ltEs23(xuu621, xuu631, app(ty_Ratio, fha)) -> new_ltEs11(xuu621, xuu631, fha) new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_compare15(Left(xuu50000), Right(xuu4000), bf, bg) -> LT new_compare114(xuu188, xuu189, xuu190, xuu191, True, ehb, ehc) -> LT new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare8(xuu37, xuu38) new_esEs8(xuu50000, xuu4000, app(ty_Maybe, fdc)) -> new_esEs24(xuu50000, xuu4000, fdc) new_esEs29(xuu102, xuu105, app(ty_Maybe, fg)) -> new_esEs24(xuu102, xuu105, fg) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs6(xuu103, xuu106, app(ty_Maybe, gh)) -> new_ltEs15(xuu103, xuu106, gh) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, fec), fed), fee), edc) -> new_esEs13(xuu500000, xuu40000, fec, fed, fee) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_Either, bgc), bgd)) -> new_ltEs14(xuu620, xuu630, bgc, bgd) new_esEs38(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_ltEs21(xuu76, xuu77, app(app(ty_Either, cbh), cca)) -> new_ltEs14(xuu76, xuu77, cbh, cca) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Ratio, fbb)) -> new_ltEs11(xuu620, xuu630, fbb) new_esEs33(xuu500001, xuu40001, app(app(ty_Either, ebc), ebd)) -> new_esEs28(xuu500001, xuu40001, ebc, ebd) new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu621, xuu631, ty_Ordering) -> new_ltEs18(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), ty_Double, bdd) -> new_ltEs12(xuu620, xuu630) new_compare0(xuu5000, xuu400, app(ty_Ratio, dcd)) -> new_compare12(xuu5000, xuu400, dcd) new_esEs6(xuu50000, xuu4000, app(ty_Maybe, ech)) -> new_esEs24(xuu50000, xuu4000, ech) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs18(xuu62, xuu63) new_esEs31(xuu621, xuu631, ty_Double) -> new_esEs23(xuu621, xuu631) new_esEs31(xuu621, xuu631, ty_Bool) -> new_esEs22(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_Bool) -> new_ltEs4(xuu115, xuu117) new_lt5(xuu101, xuu104, ty_Bool) -> new_lt13(xuu101, xuu104) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs13(xuu62, xuu63) new_lt4(xuu101, xuu104) -> new_esEs12(new_compare6(xuu101, xuu104), LT) new_compare0(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Char) -> new_ltEs13(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs14(xuu620, xuu630, bfb, bfc) new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_lt6(xuu102, xuu105, app(app(app(ty_@3, fa), fb), fc)) -> new_lt10(xuu102, xuu105, fa, fb, fc) new_esEs21(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eaa, eab) -> new_asAs(new_esEs34(xuu500000, xuu40000, eaa), new_esEs33(xuu500001, xuu40001, eab)) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs16(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(ty_@2, cga), cgb)) -> new_ltEs17(xuu69, xuu70, cga, cgb) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Ordering, edc) -> new_esEs12(xuu500000, xuu40000) new_ltEs18(EQ, LT) -> False new_esEs11(xuu50000, xuu4000, app(ty_Ratio, dfb)) -> new_esEs17(xuu50000, xuu4000, dfb) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero new_compare0(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_ltEs20(xuu622, xuu632, ty_Double) -> new_ltEs12(xuu622, xuu632) new_esEs34(xuu500000, xuu40000, app(ty_Ratio, ebe)) -> new_esEs17(xuu500000, xuu40000, ebe) new_esEs15(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs16(xuu500000, xuu40000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs13(xuu500000, xuu40000, dbc, dbd, dbe) new_lt20(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_compare26(xuu76, xuu77, True, ehf) -> EQ new_lt23(xuu114, xuu116, ty_Float) -> new_lt11(xuu114, xuu116) new_ltEs6(xuu103, xuu106, app(ty_Ratio, dea)) -> new_ltEs11(xuu103, xuu106, dea) new_ltEs15(Just(xuu620), Just(xuu630), ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_compare15(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare25(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) new_esEs39(xuu114, xuu116, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs13(xuu114, xuu116, ccg, cch, cda) new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_ltEs17(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, bha) -> new_pePe(new_lt22(xuu620, xuu630, cab), new_asAs(new_esEs38(xuu620, xuu630, cab), new_ltEs23(xuu621, xuu631, bha))) new_esEs38(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs38(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs6(xuu103, xuu106, ty_Ordering) -> new_ltEs18(xuu103, xuu106) new_lt12(xuu101, xuu104, ddg) -> new_esEs12(new_compare12(xuu101, xuu104, ddg), LT) new_esEs31(xuu621, xuu631, app(ty_Maybe, bbg)) -> new_esEs24(xuu621, xuu631, bbg) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_Maybe, bfd)) -> new_ltEs15(xuu620, xuu630, bfd) new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs16(xuu62, xuu63) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Char, edc) -> new_esEs27(xuu500000, xuu40000) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, def)) -> new_compare12(xuu37, xuu38, def) new_esEs7(xuu50000, xuu4000, app(app(ty_@2, dda), ddb)) -> new_esEs21(xuu50000, xuu4000, dda, ddb) new_ltEs19(xuu62, xuu63, app(app(ty_Either, bee), bdd)) -> new_ltEs14(xuu62, xuu63, bee, bdd) new_esEs14(xuu500002, xuu40002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs13(xuu500002, xuu40002, cgg, cgh, cha) new_esEs6(xuu50000, xuu4000, app(ty_[], eda)) -> new_esEs25(xuu50000, xuu4000, eda) new_primPlusNat1(Succ(xuu21200), Zero) -> Succ(xuu21200) new_primPlusNat1(Zero, Succ(xuu21100)) -> Succ(xuu21100) new_compare19(EQ, GT) -> LT new_compare0(xuu5000, xuu400, app(ty_[], ba)) -> new_compare7(xuu5000, xuu400, ba) new_compare116(xuu147, xuu148, False, fhb, fhc) -> GT new_esEs39(xuu114, xuu116, ty_Bool) -> new_esEs22(xuu114, xuu116) new_lt22(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs29(xuu102, xuu105, ty_Bool) -> new_esEs22(xuu102, xuu105) new_ltEs24(xuu115, xuu117, app(app(ty_@2, ceg), ceh)) -> new_ltEs17(xuu115, xuu117, ceg, ceh) new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bc, bd, be) -> new_compare24(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) new_ltEs14(Left(xuu620), Left(xuu630), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs10(xuu620, xuu630, bde, bdf, bdg) new_esEs32(xuu620, xuu630, app(ty_Maybe, bae)) -> new_esEs24(xuu620, xuu630, bae) new_ltEs20(xuu622, xuu632, ty_Float) -> new_ltEs5(xuu622, xuu632) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(ty_Either, fgd), fge)) -> new_esEs28(xuu500000, xuu40000, fgd, fge) new_ltEs21(xuu76, xuu77, app(ty_Ratio, ehg)) -> new_ltEs11(xuu76, xuu77, ehg) new_compare7(:(xuu50000, xuu50001), [], ba) -> GT new_fsEs(xuu210) -> new_not(new_esEs12(xuu210, GT)) new_ltEs11(xuu62, xuu63, dec) -> new_fsEs(new_compare12(xuu62, xuu63, dec)) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, dhf, dhg, dhh) -> LT new_compare0(xuu5000, xuu400, app(app(ty_Either, bf), bg)) -> new_compare15(xuu5000, xuu400, bf, bg) new_esEs8(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt23(xuu114, xuu116, ty_Char) -> new_lt14(xuu114, xuu116) new_esEs16(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Integer, bdd) -> new_ltEs16(xuu620, xuu630) new_esEs4(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_Float) -> new_esEs26(xuu500002, xuu40002) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs18(xuu76, xuu77) new_compare19(LT, GT) -> LT new_ltEs14(Left(xuu620), Right(xuu630), bee, bdd) -> True new_esEs32(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_lt21(xuu621, xuu631, ty_@0) -> new_lt8(xuu621, xuu631) new_compare19(LT, EQ) -> LT new_esEs29(xuu102, xuu105, ty_Ordering) -> new_esEs12(xuu102, xuu105) new_esEs7(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Double) -> new_ltEs12(xuu103, xuu106) new_lt17(xuu101, xuu104) -> new_esEs12(new_compare17(xuu101, xuu104), LT) new_esEs33(xuu500001, xuu40001, app(ty_Ratio, eac)) -> new_esEs17(xuu500001, xuu40001, eac) new_compare113(xuu188, xuu189, xuu190, xuu191, True, xuu193, ehb, ehc) -> new_compare114(xuu188, xuu189, xuu190, xuu191, True, ehb, ehc) new_lt20(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_@0) -> new_ltEs8(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(xuu500001, xuu40001, ead, eae, eaf) new_lt21(xuu621, xuu631, app(app(ty_Either, bbe), bbf)) -> new_lt15(xuu621, xuu631, bbe, bbf) new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_lt6(xuu102, xuu105, ty_Ordering) -> new_lt19(xuu102, xuu105) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, dc), dd)) -> new_compare18(xuu37, xuu38, dc, dd) new_compare0(xuu5000, xuu400, app(app(ty_@2, ca), cb)) -> new_compare18(xuu5000, xuu400, ca, cb) new_lt6(xuu102, xuu105, ty_Char) -> new_lt14(xuu102, xuu105) new_esEs12(GT, GT) -> True new_esEs39(xuu114, xuu116, app(app(ty_Either, cdb), cdc)) -> new_esEs28(xuu114, xuu116, cdb, cdc) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare17(xuu37, xuu38) new_ltEs15(Just(xuu620), Just(xuu630), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs10(xuu620, xuu630, bfh, bga, bgb) new_esEs29(xuu102, xuu105, app(ty_[], eh)) -> new_esEs25(xuu102, xuu105, eh) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_Either, eed), eee)) -> new_esEs28(xuu500000, xuu40000, eed, eee) new_esEs16(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs16(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_@2, bgf), bgg)) -> new_ltEs17(xuu620, xuu630, bgf, bgg) new_compare13(True, False) -> GT new_esEs7(xuu50000, xuu4000, app(app(ty_Either, dde), ddf)) -> new_esEs28(xuu50000, xuu4000, dde, ddf) new_esEs15(xuu500001, xuu40001, app(ty_Maybe, daf)) -> new_esEs24(xuu500001, xuu40001, daf) new_ltEs6(xuu103, xuu106, app(ty_[], gb)) -> new_ltEs7(xuu103, xuu106, gb) new_compare13(False, True) -> LT new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs37(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) new_esEs30(xuu101, xuu104, app(ty_[], h)) -> new_esEs25(xuu101, xuu104, h) new_compare15(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare27(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) new_esEs12(EQ, EQ) -> True new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, cg), da)) -> new_compare15(xuu37, xuu38, cg, da) new_esEs16(xuu500000, xuu40000, app(ty_Maybe, dbh)) -> new_esEs24(xuu500000, xuu40000, dbh) new_lt21(xuu621, xuu631, app(ty_Maybe, bbg)) -> new_lt16(xuu621, xuu631, bbg) new_esEs14(xuu500002, xuu40002, app(app(ty_Either, chf), chg)) -> new_esEs28(xuu500002, xuu40002, chf, chg) new_esEs9(xuu50000, xuu4000, app(app(ty_@2, egd), ege)) -> new_esEs21(xuu50000, xuu4000, egd, ege) new_esEs37(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(ty_Maybe, dhb)) -> new_esEs24(xuu50002, xuu4002, dhb) new_compare0(xuu5000, xuu400, ty_Int) -> new_compare9(xuu5000, xuu400) new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare11(xuu37, xuu38) new_ltEs24(xuu115, xuu117, app(ty_[], cdh)) -> new_ltEs7(xuu115, xuu117, cdh) new_esEs36(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_compare14(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_lt21(xuu621, xuu631, ty_Int) -> new_lt9(xuu621, xuu631) new_esEs30(xuu101, xuu104, ty_Double) -> new_esEs23(xuu101, xuu104) new_esEs39(xuu114, xuu116, ty_Float) -> new_esEs26(xuu114, xuu116) new_compare19(GT, LT) -> GT new_esEs5(xuu50001, xuu4001, app(ty_Maybe, efd)) -> new_esEs24(xuu50001, xuu4001, efd) new_esEs25(:(xuu500000, xuu500001), [], eda) -> False new_esEs25([], :(xuu40000, xuu40001), eda) -> False new_lt23(xuu114, xuu116, ty_Ordering) -> new_lt19(xuu114, xuu116) new_lt22(xuu620, xuu630, app(app(ty_Either, bhe), bhf)) -> new_lt15(xuu620, xuu630, bhe, bhf) new_esEs29(xuu102, xuu105, ty_Double) -> new_esEs23(xuu102, xuu105) new_ltEs16(xuu62, xuu63) -> new_fsEs(new_compare17(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_compare0(xuu5000, xuu400, ty_Bool) -> new_compare13(xuu5000, xuu400) new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_lt5(xuu101, xuu104, ty_Char) -> new_lt14(xuu101, xuu104) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs26(xuu500000, xuu40000) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, eg, de, df) -> EQ new_ltEs4(True, False) -> False new_esEs22(True, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, db)) -> new_compare16(xuu37, xuu38, db) new_esEs5(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_esEs32(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_esEs38(xuu620, xuu630, app(app(ty_Either, bhe), bhf)) -> new_esEs28(xuu620, xuu630, bhe, bhf) new_esEs31(xuu621, xuu631, ty_Integer) -> new_esEs20(xuu621, xuu631) new_lt22(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_ltEs24(xuu115, xuu117, app(ty_Ratio, fhe)) -> new_ltEs11(xuu115, xuu117, fhe) new_esEs36(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt22(xuu620, xuu630, app(ty_Maybe, bhg)) -> new_lt16(xuu620, xuu630, bhg) new_esEs11(xuu50000, xuu4000, app(ty_Maybe, dfh)) -> new_esEs24(xuu50000, xuu4000, dfh) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare10(xuu37, xuu38, cd, ce, cf) new_esEs8(xuu50000, xuu4000, app(app(ty_Either, fde), fdf)) -> new_esEs28(xuu50000, xuu4000, fde, fdf) new_ltEs4(False, False) -> True new_lt21(xuu621, xuu631, ty_Float) -> new_lt11(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Ratio, fgf), bdd) -> new_ltEs11(xuu620, xuu630, fgf) new_esEs14(xuu500002, xuu40002, ty_Char) -> new_esEs27(xuu500002, xuu40002) new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs13(xuu500000, xuu40000, ebf, ebg, ebh) new_esEs35(xuu500000, xuu40000, app(ty_Maybe, faf)) -> new_esEs24(xuu500000, xuu40000, faf) new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Integer) -> new_ltEs16(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Char, bdd) -> new_ltEs13(xuu620, xuu630) new_compare19(LT, LT) -> EQ new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs13(xuu50000, xuu4000, dfc, dfd, dfe) new_esEs25([], [], eda) -> True new_lt22(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_compare114(xuu188, xuu189, xuu190, xuu191, False, ehb, ehc) -> GT new_ltEs19(xuu62, xuu63, app(ty_[], hc)) -> new_ltEs7(xuu62, xuu63, hc) new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs8(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt15(xuu101, xuu104, eb, ec) -> new_esEs12(new_compare15(xuu101, xuu104, eb, ec), LT) new_lt20(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs15(Nothing, Just(xuu630), ded) -> True new_esEs31(xuu621, xuu631, ty_Int) -> new_esEs19(xuu621, xuu631) new_esEs32(xuu620, xuu630, app(ty_Ratio, deg)) -> new_esEs17(xuu620, xuu630, deg) new_ltEs12(xuu62, xuu63) -> new_fsEs(new_compare6(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(ty_Either, edb), edc)) -> new_esEs28(xuu50000, xuu4000, edb, edc) new_lt5(xuu101, xuu104, app(app(ty_Either, eb), ec)) -> new_lt15(xuu101, xuu104, eb, ec) new_ltEs20(xuu622, xuu632, app(ty_[], bcb)) -> new_ltEs7(xuu622, xuu632, bcb) new_compare27(xuu69, xuu70, True, cfa, fdh) -> EQ new_ltEs14(Left(xuu620), Left(xuu630), ty_Bool, bdd) -> new_ltEs4(xuu620, xuu630) new_lt20(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_primPlusNat0(Succ(xuu2220), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2220, xuu5000100))) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_[], bef)) -> new_ltEs7(xuu620, xuu630, bef) new_lt11(xuu101, xuu104) -> new_esEs12(new_compare11(xuu101, xuu104), LT) new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Float) -> new_ltEs5(xuu620, xuu630) new_lt5(xuu101, xuu104, ty_Int) -> new_lt9(xuu101, xuu104) new_esEs5(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_lt22(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_ltEs13(xuu62, xuu63) -> new_fsEs(new_compare14(xuu62, xuu63)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt18(xuu101, xuu104, ee, ef) -> new_esEs12(new_compare18(xuu101, xuu104, ee, ef), LT) new_lt20(xuu620, xuu630, app(app(ty_Either, bac), bad)) -> new_lt15(xuu620, xuu630, bac, bad) new_ltEs23(xuu621, xuu631, app(ty_[], cac)) -> new_ltEs7(xuu621, xuu631, cac) new_esEs4(xuu50002, xuu4002, app(app(ty_Either, dhd), dhe)) -> new_esEs28(xuu50002, xuu4002, dhd, dhe) new_ltEs18(GT, LT) -> False new_esEs4(xuu50002, xuu4002, ty_@0) -> new_esEs18(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_@0) -> new_esEs18(xuu500002, xuu40002) new_lt5(xuu101, xuu104, ty_Integer) -> new_lt17(xuu101, xuu104) new_esEs38(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare13(xuu37, xuu38) new_lt5(xuu101, xuu104, app(ty_Maybe, ed)) -> new_lt16(xuu101, xuu104, ed) new_ltEs22(xuu69, xuu70, app(ty_[], cfb)) -> new_ltEs7(xuu69, xuu70, cfb) new_ltEs4(True, True) -> True new_lt6(xuu102, xuu105, ty_Integer) -> new_lt17(xuu102, xuu105) new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Double) -> new_ltEs12(xuu621, xuu631) new_ltEs15(Just(xuu620), Just(xuu630), ty_Int) -> new_ltEs9(xuu620, xuu630) new_lt14(xuu101, xuu104) -> new_esEs12(new_compare14(xuu101, xuu104), LT) new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_compare19(EQ, LT) -> GT new_esEs31(xuu621, xuu631, ty_Ordering) -> new_esEs12(xuu621, xuu631) new_ltEs21(xuu76, xuu77, app(ty_[], cbd)) -> new_ltEs7(xuu76, xuu77, cbd) new_lt20(xuu620, xuu630, app(ty_Maybe, bae)) -> new_lt16(xuu620, xuu630, bae) new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_lt21(xuu621, xuu631, ty_Integer) -> new_lt17(xuu621, xuu631) new_esEs14(xuu500002, xuu40002, app(ty_Maybe, chd)) -> new_esEs24(xuu500002, xuu40002, chd) new_esEs4(xuu50002, xuu4002, ty_Char) -> new_esEs27(xuu50002, xuu4002) new_esEs32(xuu620, xuu630, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs13(xuu620, xuu630, hh, baa, bab) new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_compare0(xuu5000, xuu400, app(app(app(ty_@3, bc), bd), be)) -> new_compare10(xuu5000, xuu400, bc, bd, be) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, df) -> new_compare110(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt5(xuu101, xuu104, eg), new_asAs(new_esEs30(xuu101, xuu104, eg), new_pePe(new_lt6(xuu102, xuu105, de), new_asAs(new_esEs29(xuu102, xuu105, de), new_ltEs6(xuu103, xuu106, df)))), eg, de, df) new_esEs30(xuu101, xuu104, ty_Ordering) -> new_esEs12(xuu101, xuu104) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare9(xuu37, xuu38) new_esEs29(xuu102, xuu105, app(ty_Ratio, ddh)) -> new_esEs17(xuu102, xuu105, ddh) new_lt20(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Ordering) -> new_lt19(xuu101, xuu104) new_esEs30(xuu101, xuu104, app(ty_Ratio, ddg)) -> new_esEs17(xuu101, xuu104, ddg) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs39(xuu114, xuu116, ty_Char) -> new_esEs27(xuu114, xuu116) new_compare7([], [], ba) -> EQ new_compare15(Right(xuu50000), Left(xuu4000), bf, bg) -> GT new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_esEs16(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt13(xuu101, xuu104) -> new_esEs12(new_compare13(xuu101, xuu104), LT) new_esEs15(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_ltEs15(Just(xuu620), Just(xuu630), ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Double) -> new_ltEs12(xuu115, xuu117) new_ltEs6(xuu103, xuu106, app(app(ty_@2, ha), hb)) -> new_ltEs17(xuu103, xuu106, ha, hb) new_esEs10(xuu50001, xuu4001, app(ty_Ratio, fbc)) -> new_esEs17(xuu50001, xuu4001, fbc) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT new_esEs7(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) new_lt21(xuu621, xuu631, ty_Ordering) -> new_lt19(xuu621, xuu631) new_compare26(xuu76, xuu77, False, ehf) -> new_compare115(xuu76, xuu77, new_ltEs21(xuu76, xuu77, ehf), ehf) new_esEs32(xuu620, xuu630, app(app(ty_Either, bac), bad)) -> new_esEs28(xuu620, xuu630, bac, bad) new_lt22(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_@2, bec), bed), bdd) -> new_ltEs17(xuu620, xuu630, bec, bed) new_ltEs14(Right(xuu620), Left(xuu630), bee, bdd) -> False new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs13(xuu500000, xuu40000, ffe, fff, ffg) new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT new_esEs32(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Int, bdd) -> new_ltEs9(xuu620, xuu630) new_esEs16(xuu500000, xuu40000, app(ty_[], dca)) -> new_esEs25(xuu500000, xuu40000, dca) new_ltEs22(xuu69, xuu70, app(ty_Ratio, fea)) -> new_ltEs11(xuu69, xuu70, fea) new_esEs18(@0, @0) -> True new_compare19(EQ, EQ) -> EQ new_ltEs6(xuu103, xuu106, ty_Integer) -> new_ltEs16(xuu103, xuu106) new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Bool) -> new_ltEs4(xuu621, xuu631) new_ltEs6(xuu103, xuu106, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs10(xuu103, xuu106, gc, gd, ge) new_lt5(xuu101, xuu104, app(app(app(ty_@3, dg), dh), ea)) -> new_lt10(xuu101, xuu104, dg, dh, ea) new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs13(xuu50001, xuu4001, fbd, fbe, fbf) new_ltEs4(False, True) -> True new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(ty_[], efe)) -> new_esEs25(xuu50001, xuu4001, efe) new_lt23(xuu114, xuu116, ty_@0) -> new_lt8(xuu114, xuu116) new_ltEs8(xuu62, xuu63) -> new_fsEs(new_compare8(xuu62, xuu63)) new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(app(ty_@2, fh), ga)) -> new_lt18(xuu102, xuu105, fh, ga) new_compare28(xuu114, xuu115, xuu116, xuu117, True, cdg, ccf) -> EQ new_ltEs20(xuu622, xuu632, app(app(ty_Either, bcf), bcg)) -> new_ltEs14(xuu622, xuu632, bcf, bcg) new_ltEs15(Just(xuu620), Just(xuu630), ty_Double) -> new_ltEs12(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs18(xuu69, xuu70) new_esEs4(xuu50002, xuu4002, app(ty_Ratio, dgd)) -> new_esEs17(xuu50002, xuu4002, dgd) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False new_esEs30(xuu101, xuu104, ty_Bool) -> new_esEs22(xuu101, xuu104) new_esEs7(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) new_esEs29(xuu102, xuu105, app(app(ty_@2, fh), ga)) -> new_esEs21(xuu102, xuu105, fh, ga) new_compare19(GT, GT) -> EQ new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs13(xuu50002, xuu4002, dge, dgf, dgg) new_esEs39(xuu114, xuu116, ty_@0) -> new_esEs18(xuu114, xuu116) new_esEs38(xuu620, xuu630, app(ty_Maybe, bhg)) -> new_esEs24(xuu620, xuu630, bhg) new_esEs23(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_lt22(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Maybe, eeb)) -> new_esEs24(xuu500000, xuu40000, eeb) new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, app(ty_Ratio, chh)) -> new_esEs17(xuu500001, xuu40001, chh) new_lt9(xuu101, xuu104) -> new_esEs12(new_compare9(xuu101, xuu104), LT) new_ltEs23(xuu621, xuu631, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs10(xuu621, xuu631, cad, cae, caf) new_lt6(xuu102, xuu105, ty_Int) -> new_lt9(xuu102, xuu105) new_esEs30(xuu101, xuu104, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs13(xuu101, xuu104, dg, dh, ea) new_esEs32(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_esEs38(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs9(xuu69, xuu70) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, ede), edf), edg)) -> new_esEs13(xuu500000, xuu40000, ede, edf, edg) new_esEs14(xuu500002, xuu40002, ty_Integer) -> new_esEs20(xuu500002, xuu40002) new_lt21(xuu621, xuu631, ty_Char) -> new_lt14(xuu621, xuu631) new_esEs34(xuu500000, xuu40000, app(app(ty_@2, eca), ecb)) -> new_esEs21(xuu500000, xuu40000, eca, ecb) new_lt23(xuu114, xuu116, app(ty_[], cce)) -> new_lt7(xuu114, xuu116, cce) new_esEs12(LT, LT) -> True new_esEs33(xuu500001, xuu40001, app(ty_[], ebb)) -> new_esEs25(xuu500001, xuu40001, ebb) new_esEs9(xuu50000, xuu4000, app(app(ty_Either, egh), eha)) -> new_esEs28(xuu50000, xuu4000, egh, eha) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_[], bfg)) -> new_ltEs7(xuu620, xuu630, bfg) new_ltEs18(EQ, GT) -> True new_lt23(xuu114, xuu116, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt10(xuu114, xuu116, ccg, cch, cda) new_esEs26(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_ltEs23(xuu621, xuu631, ty_Integer) -> new_ltEs16(xuu621, xuu631) new_esEs4(xuu50002, xuu4002, ty_Float) -> new_esEs26(xuu50002, xuu4002) new_lt10(xuu101, xuu104, dg, dh, ea) -> new_esEs12(new_compare10(xuu101, xuu104, dg, dh, ea), LT) new_lt6(xuu102, xuu105, ty_Float) -> new_lt11(xuu102, xuu105) new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs12(xuu76, xuu77) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Maybe, feh), edc) -> new_esEs24(xuu500000, xuu40000, feh) new_lt6(xuu102, xuu105, app(app(ty_Either, fd), ff)) -> new_lt15(xuu102, xuu105, fd, ff) new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs19(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) new_esEs39(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_esEs21(xuu114, xuu116, cde, cdf) new_esEs15(xuu500001, xuu40001, app(app(ty_Either, dah), dba)) -> new_esEs28(xuu500001, xuu40001, dah, dba) new_esEs29(xuu102, xuu105, ty_@0) -> new_esEs18(xuu102, xuu105) new_esEs11(xuu50000, xuu4000, app(ty_[], dga)) -> new_esEs25(xuu50000, xuu4000, dga) new_compare7([], :(xuu4000, xuu4001), ba) -> LT new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs13(xuu500000, xuu40000, faa, fab, fac) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(xuu500000), Zero) -> GT new_esEs13(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), cgc, cgd, cge) -> new_asAs(new_esEs16(xuu500000, xuu40000, cgc), new_asAs(new_esEs15(xuu500001, xuu40001, cgd), new_esEs14(xuu500002, xuu40002, cge))) new_compare16(Just(xuu50000), Nothing, bh) -> GT new_pePe(False, xuu209) -> xuu209 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_Either, ffb), ffc), edc) -> new_esEs28(xuu500000, xuu40000, ffb, ffc) new_compare25(xuu62, xuu63, True, deb, hd) -> EQ new_lt20(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu622, xuu632, ty_Char) -> new_ltEs13(xuu622, xuu632) new_ltEs18(LT, GT) -> True new_esEs15(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_@0) -> new_lt8(xuu101, xuu104) new_compare16(Nothing, Nothing, bh) -> EQ new_esEs10(xuu50001, xuu4001, app(app(ty_Either, fcc), fcd)) -> new_esEs28(xuu50001, xuu4001, fcc, fcd) new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False new_ltEs20(xuu622, xuu632, ty_Integer) -> new_ltEs16(xuu622, xuu632) new_ltEs6(xuu103, xuu106, ty_@0) -> new_ltEs8(xuu103, xuu106) new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_lt16(xuu101, xuu104, ed) -> new_esEs12(new_compare16(xuu101, xuu104, ed), LT) new_esEs4(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) new_esEs15(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs9(xuu50000, xuu4000, app(ty_Ratio, efh)) -> new_esEs17(xuu50000, xuu4000, efh) new_ltEs15(Nothing, Nothing, ded) -> True new_ltEs15(Just(xuu620), Nothing, ded) -> False new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Float, bdd) -> new_ltEs5(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(ty_Maybe, eba)) -> new_esEs24(xuu500001, xuu40001, eba) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs12(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(ty_Ratio, fgg)) -> new_ltEs11(xuu620, xuu630, fgg) new_ltEs21(xuu76, xuu77, app(ty_Maybe, ccb)) -> new_ltEs15(xuu76, xuu77, ccb) new_esEs10(xuu50001, xuu4001, app(ty_Maybe, fca)) -> new_esEs24(xuu50001, xuu4001, fca) new_lt23(xuu114, xuu116, app(ty_Maybe, cdd)) -> new_lt16(xuu114, xuu116, cdd) new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs8(xuu76, xuu77) new_esEs8(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_lt21(xuu621, xuu631, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt10(xuu621, xuu631, bbb, bbc, bbd) new_esEs31(xuu621, xuu631, ty_@0) -> new_esEs18(xuu621, xuu631) new_esEs30(xuu101, xuu104, app(ty_Maybe, ed)) -> new_esEs24(xuu101, xuu104, ed) new_esEs8(xuu50000, xuu4000, app(app(ty_@2, fda), fdb)) -> new_esEs21(xuu50000, xuu4000, fda, fdb) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_[], bdc), bdd) -> new_ltEs7(xuu620, xuu630, bdc) new_esEs20(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) new_esEs22(False, True) -> False new_esEs22(True, False) -> False new_esEs29(xuu102, xuu105, ty_Integer) -> new_esEs20(xuu102, xuu105) new_ltEs18(LT, LT) -> True new_ltEs23(xuu621, xuu631, app(app(ty_@2, cbb), cbc)) -> new_ltEs17(xuu621, xuu631, cbb, cbc) new_ltEs20(xuu622, xuu632, ty_Ordering) -> new_ltEs18(xuu622, xuu632) new_esEs8(xuu50000, xuu4000, app(ty_[], fdd)) -> new_esEs25(xuu50000, xuu4000, fdd) new_esEs38(xuu620, xuu630, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs13(xuu620, xuu630, bhb, bhc, bhd) new_esEs15(xuu500001, xuu40001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs13(xuu500001, xuu40001, daa, dab, dac) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs14(xuu620, xuu630, bdh, bea) new_ltEs14(Left(xuu620), Left(xuu630), ty_Ordering, bdd) -> new_ltEs18(xuu620, xuu630) new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs15(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_ltEs6(xuu103, xuu106, app(app(ty_Either, gf), gg)) -> new_ltEs14(xuu103, xuu106, gf, gg) new_ltEs9(xuu62, xuu63) -> new_fsEs(new_compare9(xuu62, xuu63)) new_ltEs18(EQ, EQ) -> True new_esEs6(xuu50000, xuu4000, app(app(ty_@2, eaa), eab)) -> new_esEs21(xuu50000, xuu4000, eaa, eab) new_esEs4(xuu50002, xuu4002, ty_Bool) -> new_esEs22(xuu50002, xuu4002) new_lt22(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_esEs22(False, False) -> True new_esEs38(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) new_esEs25(:(xuu500000, xuu500001), :(xuu40000, xuu40001), eda) -> new_asAs(new_esEs35(xuu500000, xuu40000, eda), new_esEs25(xuu500001, xuu40001, eda)) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs31(xuu621, xuu631, app(ty_[], bba)) -> new_esEs25(xuu621, xuu631, bba) new_esEs35(xuu500000, xuu40000, app(ty_Ratio, ehh)) -> new_esEs17(xuu500000, xuu40000, ehh) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_lt21(xuu621, xuu631, ty_Bool) -> new_lt13(xuu621, xuu631) new_esEs5(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_esEs39(xuu114, xuu116, ty_Integer) -> new_esEs20(xuu114, xuu116) new_esEs32(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare0(xuu5000, xuu400, ty_Float) -> new_compare11(xuu5000, xuu400) new_compare0(xuu5000, xuu400, app(ty_Maybe, bh)) -> new_compare16(xuu5000, xuu400, bh) new_ltEs18(LT, EQ) -> True new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs8(xuu62, xuu63) new_ltEs19(xuu62, xuu63, app(ty_Maybe, ded)) -> new_ltEs15(xuu62, xuu63, ded) new_compare115(xuu156, xuu157, True, fdg) -> LT new_lt6(xuu102, xuu105, ty_Bool) -> new_lt13(xuu102, xuu105) new_esEs8(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, app(app(ty_Either, fah), fba)) -> new_esEs28(xuu500000, xuu40000, fah, fba) new_esEs7(xuu50000, xuu4000, app(ty_[], ddd)) -> new_esEs25(xuu50000, xuu4000, ddd) new_ltEs15(Just(xuu620), Just(xuu630), ty_@0) -> new_ltEs8(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Maybe, bge)) -> new_ltEs15(xuu620, xuu630, bge) new_ltEs15(Just(xuu620), Just(xuu630), ty_Float) -> new_ltEs5(xuu620, xuu630) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs5(xuu62, xuu63) new_esEs7(xuu50000, xuu4000, app(ty_Maybe, ddc)) -> new_esEs24(xuu50000, xuu4000, ddc) new_esEs31(xuu621, xuu631, app(app(ty_@2, bbh), bca)) -> new_esEs21(xuu621, xuu631, bbh, bca) new_ltEs6(xuu103, xuu106, ty_Char) -> new_ltEs13(xuu103, xuu106) new_esEs16(xuu500000, xuu40000, app(app(ty_@2, dbf), dbg)) -> new_esEs21(xuu500000, xuu40000, dbf, dbg) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(app(ty_@2, ffh), fga)) -> new_esEs21(xuu500000, xuu40000, ffh, fga) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Bool, edc) -> new_esEs22(xuu500000, xuu40000) new_lt20(xuu620, xuu630, app(app(app(ty_@3, hh), baa), bab)) -> new_lt10(xuu620, xuu630, hh, baa, bab) new_esEs28(Left(xuu500000), Left(xuu40000), ty_@0, edc) -> new_esEs18(xuu500000, xuu40000) new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_esEs5(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_ltEs20(xuu622, xuu632, ty_@0) -> new_ltEs8(xuu622, xuu632) new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs16(xuu76, xuu77) new_compare19(GT, EQ) -> GT new_esEs16(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs39(xuu114, xuu116, app(ty_[], cce)) -> new_esEs25(xuu114, xuu116, cce) new_esEs6(xuu50000, xuu4000, app(ty_Ratio, ecg)) -> new_esEs17(xuu50000, xuu4000, ecg) new_ltEs24(xuu115, xuu117, ty_Ordering) -> new_ltEs18(xuu115, xuu117) new_esEs14(xuu500002, xuu40002, ty_Ordering) -> new_esEs12(xuu500002, xuu40002) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs9(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs13(xuu50000, xuu4000, cgc, cgd, cge) new_esEs7(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(ty_Maybe, egf)) -> new_esEs24(xuu50000, xuu4000, egf) new_esEs8(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt20(xuu620, xuu630, app(ty_[], he)) -> new_lt7(xuu620, xuu630, he) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Integer, edc) -> new_esEs20(xuu500000, xuu40000) new_asAs(True, xuu135) -> xuu135 new_esEs24(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, app(app(ty_@2, baf), bag)) -> new_esEs21(xuu620, xuu630, baf, bag) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Int, edc) -> new_esEs19(xuu500000, xuu40000) new_esEs34(xuu500000, xuu40000, app(app(ty_Either, ece), ecf)) -> new_esEs28(xuu500000, xuu40000, ece, ecf) new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_@2, efb), efc)) -> new_esEs21(xuu50001, xuu4001, efb, efc) new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs28(Right(xuu500000), Right(xuu40000), edb, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs27(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs5(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Int) -> new_ltEs9(xuu620, xuu630) new_esEs39(xuu114, xuu116, ty_Double) -> new_esEs23(xuu114, xuu116) new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) new_compare111(xuu140, xuu141, False, ehd, ehe) -> GT new_ltEs20(xuu622, xuu632, app(ty_Ratio, dfa)) -> new_ltEs11(xuu622, xuu632, dfa) new_ltEs15(Just(xuu620), Just(xuu630), ty_Integer) -> new_ltEs16(xuu620, xuu630) new_esEs30(xuu101, xuu104, ty_Float) -> new_esEs26(xuu101, xuu104) new_compare0(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs4(xuu76, xuu77) new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) new_esEs38(xuu620, xuu630, app(ty_Ratio, fgh)) -> new_esEs17(xuu620, xuu630, fgh) new_primMulNat0(Zero, Zero) -> Zero new_esEs11(xuu50000, xuu4000, app(app(ty_@2, dff), dfg)) -> new_esEs21(xuu50000, xuu4000, dff, dfg) new_ltEs5(xuu62, xuu63) -> new_fsEs(new_compare11(xuu62, xuu63)) new_lt20(xuu620, xuu630, app(app(ty_@2, baf), bag)) -> new_lt18(xuu620, xuu630, baf, bag) new_esEs10(xuu50001, xuu4001, app(ty_[], fcb)) -> new_esEs25(xuu50001, xuu4001, fcb) new_esEs35(xuu500000, xuu40000, app(ty_[], fag)) -> new_esEs25(xuu500000, xuu40000, fag) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs5(xuu69, xuu70) new_lt23(xuu114, xuu116, ty_Double) -> new_lt4(xuu114, xuu116) new_esEs4(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_lt23(xuu114, xuu116, app(ty_Ratio, fhd)) -> new_lt12(xuu114, xuu116, fhd) new_esEs16(xuu500000, xuu40000, app(ty_Ratio, dbb)) -> new_esEs17(xuu500000, xuu40000, dbb) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs19(xuu62, xuu63, app(ty_Ratio, dec)) -> new_ltEs11(xuu62, xuu63, dec) new_lt21(xuu621, xuu631, app(app(ty_@2, bbh), bca)) -> new_lt18(xuu621, xuu631, bbh, bca) new_ltEs14(Right(xuu620), Right(xuu630), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs10(xuu620, xuu630, beg, beh, bfa) new_ltEs23(xuu621, xuu631, app(ty_Maybe, cba)) -> new_ltEs15(xuu621, xuu631, cba) new_compare16(Just(xuu50000), Just(xuu4000), bh) -> new_compare26(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) new_esEs33(xuu500001, xuu40001, app(app(ty_@2, eag), eah)) -> new_esEs21(xuu500001, xuu40001, eag, eah) new_esEs39(xuu114, xuu116, ty_Ordering) -> new_esEs12(xuu114, xuu116) new_ltEs22(xuu69, xuu70, app(ty_Maybe, cfh)) -> new_ltEs15(xuu69, xuu70, cfh) new_ltEs21(xuu76, xuu77, app(app(ty_@2, ccc), ccd)) -> new_ltEs17(xuu76, xuu77, ccc, ccd) new_esEs5(xuu50001, xuu4001, app(app(app(ty_@3, eeg), eeh), efa)) -> new_esEs13(xuu50001, xuu4001, eeg, eeh, efa) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_[], ffa), edc) -> new_esEs25(xuu500000, xuu40000, ffa) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_lt8(xuu101, xuu104) -> new_esEs12(new_compare8(xuu101, xuu104), LT) new_lt7(xuu101, xuu104, h) -> new_esEs12(new_compare7(xuu101, xuu104, h), LT) new_esEs4(xuu50002, xuu4002, app(ty_[], dhc)) -> new_esEs25(xuu50002, xuu4002, dhc) new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False new_ltEs22(xuu69, xuu70, app(app(ty_Either, cff), cfg)) -> new_ltEs14(xuu69, xuu70, cff, cfg) new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) new_esEs28(Left(xuu500000), Right(xuu40000), edb, edc) -> False new_esEs28(Right(xuu500000), Left(xuu40000), edb, edc) -> False new_ltEs14(Right(xuu620), Right(xuu630), bee, ty_Double) -> new_ltEs12(xuu620, xuu630) new_esEs31(xuu621, xuu631, ty_Char) -> new_esEs27(xuu621, xuu631) new_esEs28(Right(xuu500000), Right(xuu40000), edb, app(ty_[], fgc)) -> new_esEs25(xuu500000, xuu40000, fgc) new_esEs34(xuu500000, xuu40000, app(ty_[], ecd)) -> new_esEs25(xuu500000, xuu40000, ecd) new_compare0(xuu5000, xuu400, ty_@0) -> new_compare8(xuu5000, xuu400) new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_[], eec)) -> new_esEs25(xuu500000, xuu40000, eec) new_esEs17(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), ecg) -> new_asAs(new_esEs37(xuu500000, xuu40000, ecg), new_esEs36(xuu500001, xuu40001, ecg)) new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_lt20(xuu620, xuu630, app(ty_Ratio, deg)) -> new_lt12(xuu620, xuu630, deg) new_primCompAux00(xuu37, xuu38, LT, dee) -> LT new_esEs15(xuu500001, xuu40001, app(ty_[], dag)) -> new_esEs25(xuu500001, xuu40001, dag) new_ltEs23(xuu621, xuu631, app(app(ty_Either, cag), cah)) -> new_ltEs14(xuu621, xuu631, cag, cah) new_esEs7(xuu50000, xuu4000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs13(xuu50000, xuu4000, dcf, dcg, dch) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs4(xuu69, xuu70) new_not(False) -> True new_ltEs20(xuu622, xuu632, ty_Bool) -> new_ltEs4(xuu622, xuu632) new_compare113(xuu188, xuu189, xuu190, xuu191, False, xuu193, ehb, ehc) -> new_compare114(xuu188, xuu189, xuu190, xuu191, xuu193, ehb, ehc) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_@2, fef), feg), edc) -> new_esEs21(xuu500000, xuu40000, fef, feg) new_ltEs20(xuu622, xuu632, app(app(ty_@2, bda), bdb)) -> new_ltEs17(xuu622, xuu632, bda, bdb) new_esEs5(xuu50001, xuu4001, app(ty_Ratio, eef)) -> new_esEs17(xuu50001, xuu4001, eef) new_ltEs20(xuu622, xuu632, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs10(xuu622, xuu632, bcc, bcd, bce) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs8(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs4(xuu50002, xuu4002, ty_Double) -> new_esEs23(xuu50002, xuu4002) new_ltEs23(xuu621, xuu631, ty_@0) -> new_ltEs8(xuu621, xuu631) new_esEs29(xuu102, xuu105, ty_Float) -> new_esEs26(xuu102, xuu105) new_ltEs19(xuu62, xuu63, app(app(ty_@2, cab), bha)) -> new_ltEs17(xuu62, xuu63, cab, bha) new_ltEs7(xuu62, xuu63, hc) -> new_fsEs(new_compare7(xuu62, xuu63, hc)) new_lt22(xuu620, xuu630, app(ty_Ratio, fgh)) -> new_lt12(xuu620, xuu630, fgh) new_lt5(xuu101, xuu104, app(ty_Ratio, ddg)) -> new_lt12(xuu101, xuu104, ddg) new_lt22(xuu620, xuu630, app(app(ty_@2, bhh), caa)) -> new_lt18(xuu620, xuu630, bhh, caa) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, bah), hf), hg)) -> new_ltEs10(xuu62, xuu63, bah, hf, hg) new_esEs7(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs13(xuu50000, xuu4000, ega, egb, egc) new_esEs8(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs38(xuu620, xuu630, app(app(ty_@2, bhh), caa)) -> new_esEs21(xuu620, xuu630, bhh, caa) new_compare27(xuu69, xuu70, False, cfa, fdh) -> new_compare116(xuu69, xuu70, new_ltEs22(xuu69, xuu70, fdh), cfa, fdh) new_esEs30(xuu101, xuu104, ty_Char) -> new_esEs27(xuu101, xuu104) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs13(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs10(xuu69, xuu70, cfc, cfd, cfe) new_esEs31(xuu621, xuu631, app(app(ty_Either, bbe), bbf)) -> new_esEs28(xuu621, xuu631, bbe, bbf) new_compare13(False, False) -> EQ new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare13(True, True) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(xuu500001, xuu40001, app(app(ty_@2, dad), dae)) -> new_esEs21(xuu500001, xuu40001, dad, dae) new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_esEs29(xuu102, xuu105, ty_Char) -> new_esEs27(xuu102, xuu105) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Ratio, edd)) -> new_esEs17(xuu500000, xuu40000, edd) new_esEs7(xuu50000, xuu4000, app(ty_Ratio, dce)) -> new_esEs17(xuu50000, xuu4000, dce) new_esEs38(xuu620, xuu630, app(ty_[], bgh)) -> new_esEs25(xuu620, xuu630, bgh) new_lt6(xuu102, xuu105, app(ty_[], eh)) -> new_lt7(xuu102, xuu105, eh) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs4(xuu62, xuu63) new_esEs5(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, dhf, dhg, dhh) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, dhf, dhg, dhh) new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) new_ltEs24(xuu115, xuu117, app(ty_Maybe, cef)) -> new_ltEs15(xuu115, xuu117, cef) new_ltEs24(xuu115, xuu117, ty_Char) -> new_ltEs13(xuu115, xuu117) new_esEs15(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_Double) -> new_lt4(xuu101, xuu104) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Ratio, feb), edc) -> new_esEs17(xuu500000, xuu40000, feb) new_lt5(xuu101, xuu104, app(ty_[], h)) -> new_lt7(xuu101, xuu104, h) new_lt21(xuu621, xuu631, ty_Double) -> new_lt4(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_@0) -> new_ltEs8(xuu115, xuu117) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Maybe, beb), bdd) -> new_ltEs15(xuu620, xuu630, beb) new_ltEs18(GT, EQ) -> False new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_compare18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ca, cb) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) new_esEs24(Nothing, Nothing, ech) -> True new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) new_ltEs10(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, hg) -> new_pePe(new_lt20(xuu620, xuu630, bah), new_asAs(new_esEs32(xuu620, xuu630, bah), new_pePe(new_lt21(xuu621, xuu631, hf), new_asAs(new_esEs31(xuu621, xuu631, hf), new_ltEs20(xuu622, xuu632, hg))))) new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare17(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) new_esEs14(xuu500002, xuu40002, ty_Double) -> new_esEs23(xuu500002, xuu40002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt6(xuu102, xuu105, ty_Double) -> new_lt4(xuu102, xuu105) new_lt20(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_esEs8(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs10(xuu76, xuu77, cbe, cbf, cbg) new_compare25(xuu62, xuu63, False, deb, hd) -> new_compare111(xuu62, xuu63, new_ltEs19(xuu62, xuu63, deb), deb, hd) new_primEqNat0(Zero, Zero) -> True new_esEs14(xuu500002, xuu40002, app(app(ty_@2, chb), chc)) -> new_esEs21(xuu500002, xuu40002, chb, chc) new_ltEs6(xuu103, xuu106, ty_Bool) -> new_ltEs4(xuu103, xuu106) new_ltEs20(xuu622, xuu632, ty_Int) -> new_ltEs9(xuu622, xuu632) new_esEs31(xuu621, xuu631, ty_Float) -> new_esEs26(xuu621, xuu631) new_lt23(xuu114, xuu116, app(app(ty_@2, cde), cdf)) -> new_lt18(xuu114, xuu116, cde, cdf) new_compare16(Nothing, Just(xuu4000), bh) -> LT new_esEs24(Nothing, Just(xuu40000), ech) -> False new_esEs24(Just(xuu500000), Nothing, ech) -> False new_lt21(xuu621, xuu631, app(ty_[], bba)) -> new_lt7(xuu621, xuu631, bba) new_ltEs18(GT, GT) -> True new_asAs(False, xuu135) -> False new_esEs30(xuu101, xuu104, app(app(ty_Either, eb), ec)) -> new_esEs28(xuu101, xuu104, eb, ec) new_lt21(xuu621, xuu631, app(ty_Ratio, deh)) -> new_lt12(xuu621, xuu631, deh) new_esEs14(xuu500002, xuu40002, app(ty_[], che)) -> new_esEs25(xuu500002, xuu40002, che) new_ltEs6(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(ty_Ratio, ddh)) -> new_lt12(xuu102, xuu105, ddh) new_esEs8(xuu50000, xuu4000, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs13(xuu50000, xuu4000, fcf, fcg, fch) new_ltEs23(xuu621, xuu631, ty_Char) -> new_ltEs13(xuu621, xuu631) new_esEs29(xuu102, xuu105, app(app(ty_Either, fd), ff)) -> new_esEs28(xuu102, xuu105, fd, ff) The set Q consists of the following terms: new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Int, x2) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs8(x0, x1, ty_Int) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs35(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Char) new_ltEs15(Just(x0), Nothing, x1) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_pePe(False, x0) new_primPlusNat1(Zero, Zero) new_lt5(x0, x1, ty_Float) new_lt10(x0, x1, x2, x3, x4) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_lt15(x0, x1, x2, x3) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare15(Left(x0), Right(x1), x2, x3) new_compare15(Right(x0), Left(x1), x2, x3) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, GT, x2) new_esEs36(x0, x1, ty_Int) new_compare15(Right(x0), Right(x1), x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_compare13(False, False) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs28(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_esEs24(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Nothing, Nothing, x0) new_ltEs6(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Double) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_lt23(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt8(x0, x1) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(True, True) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_compare7([], [], x0) new_esEs16(x0, x1, app(ty_[], x2)) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs8(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs12(GT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Ordering) new_esEs16(x0, x1, ty_Double) new_ltEs18(GT, GT) new_ltEs21(x0, x1, ty_Ordering) new_compare0(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare7(:(x0, x1), [], x2) new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare13(True, True) new_esEs19(x0, x1) new_lt21(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_esEs25([], [], x0) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs33(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_ltEs11(x0, x1, x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Left(x0), Left(x1), ty_Float, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare7(:(x0, x1), :(x2, x3), x4) new_ltEs22(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_compare114(x0, x1, x2, x3, True, x4, x5) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs24(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_primCompAux00(x0, x1, EQ, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(Left(x0), Right(x1), x2, x3) new_esEs28(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_compare0(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_lt6(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Just(x0), x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_compare116(x0, x1, False, x2, x3) new_compare19(LT, LT) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare27(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs28(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_compare27(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Char) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, ty_Double) new_esEs31(x0, x1, ty_Int) new_lt7(x0, x1, x2) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_compare16(Just(x0), Just(x1), x2) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs4(True, False) new_ltEs4(False, True) new_ltEs19(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs18(EQ, EQ) new_lt5(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Ordering) new_esEs24(Nothing, Just(x0), x1) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, ty_@0) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Char) new_esEs15(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs14(x0, x1, ty_Int) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_esEs25([], :(x0, x1), x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Char) new_lt16(x0, x1, x2) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1) new_ltEs21(x0, x1, ty_Float) new_ltEs4(False, False) new_sr0(Integer(x0), Integer(x1)) new_esEs10(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_esEs38(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Integer) new_esEs18(@0, @0) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_primEqNat0(Zero, Zero) new_esEs32(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Double) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_primEqNat0(Succ(x0), Zero) new_not(False) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_lt6(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare26(x0, x1, True, x2) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare19(EQ, EQ) new_compare116(x0, x1, True, x2, x3) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Float) new_ltEs15(Nothing, Nothing, x0) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs12(EQ, EQ) new_primCmpNat0(Zero, Succ(x0)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_compare14(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Integer) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs23(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(Left(x0), Left(x1), ty_Ordering, x2) new_esEs28(Left(x0), Left(x1), ty_Char, x2) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_asAs(True, x0) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_ltEs15(Nothing, Just(x0), x1) new_esEs30(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(:(x0, x1), :(x2, x3), x4) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs6(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Double) new_compare0(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs8(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare8(@0, @0) new_esEs4(x0, x1, ty_Integer) new_esEs28(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_lt22(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(False, True) new_esEs22(True, False) new_compare16(Just(x0), Nothing, x1) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare7([], :(x0, x1), x2) new_esEs28(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_Int) new_sr(x0, x1) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt14(x0, x1) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare0(x0, x1, ty_Ordering) new_ltEs7(x0, x1, x2) new_ltEs6(x0, x1, ty_Float) new_esEs15(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_lt20(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs11(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Integer) new_ltEs18(LT, LT) new_esEs15(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs10(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_lt12(x0, x1, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_compare26(x0, x1, False, x2) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Float) new_esEs16(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Char) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_@0) new_lt6(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs9(x0, x1, ty_Int) new_ltEs6(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs27(Char(x0), Char(x1)) new_esEs10(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt5(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, ty_Double) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare17(Integer(x0), Integer(x1)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs24(Just(x0), Just(x1), ty_Float) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs10(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Double) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs15(x0, x1, ty_Double) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(x0, x1, ty_Int) new_esEs28(Right(x0), Right(x1), x2, ty_Int) new_compare115(x0, x1, False, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_compare114(x0, x1, x2, x3, False, x4, x5) new_compare9(x0, x1) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3, x4) new_ltEs15(Just(x0), Just(x1), ty_@0) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs24(Just(x0), Nothing, x1) new_ltEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare0(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, x0) new_compare0(x0, x1, ty_Char) new_asAs(False, x0) new_lt22(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Ordering) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt11(x0, x1) new_compare111(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare25(x0, x1, True, x2, x3) new_esEs16(x0, x1, ty_Int) new_lt20(x0, x1, ty_Char) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs35(x0, x1, app(ty_[], x2)) new_compare15(Left(x0), Left(x1), x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(Left(x0), Left(x1), ty_Integer, x2) new_esEs16(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs25(:(x0, x1), [], x2) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), ty_@0) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_@0) new_esEs28(Right(x0), Right(x1), x2, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs28(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(False, False) new_compare0(x0, x1, ty_Float) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(Right(x0), Right(x1), x2, ty_Bool) new_lt9(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt23(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(GT, LT) new_ltEs18(LT, GT) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_compare13(True, False) new_compare13(False, True) new_lt22(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs8(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1) new_compare19(GT, GT) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs28(Right(x0), Right(x1), x2, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_esEs28(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Float) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt4(x0, x1) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Nothing, x0) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 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_ltEs(xuu62, xuu63, hc) -> new_compare(xuu62, xuu63, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare(:(xuu50000, xuu50001), :(xuu4000, xuu4001), ba) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 *new_compare21(xuu69, xuu70, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu69, xuu70, cga, cgb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare21(xuu69, xuu70, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu69, xuu70, cff, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare21(xuu69, xuu70, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu69, xuu70, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_primCompAux(:(xuu50000, xuu50001), :(xuu4000, xuu4001), xuu5001, xuu401, app(ty_[], ba)) -> new_primCompAux(xuu50000, xuu4000, xuu50001, xuu4001, ba) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu621, xuu631, cbb, cbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu621, xuu631, cag, cah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_[], cac)) -> new_ltEs(xuu621, xuu631, cac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(Right(xuu50000), Right(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_compare3(Right(xuu50000), Right(xuu4000), bf, bg) -> new_compare21(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, bg), bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt3(xuu101, xuu104, ee, ef) -> new_compare5(xuu101, xuu104, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu620, xuu630, bhh, caa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare5(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), ca, cb) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_@2, ceg), ceh)) -> new_ltEs3(xuu115, xuu117, ceg, ceh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(ty_Either, ced), cee)) -> new_ltEs1(xuu115, xuu117, ced, cee) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_[], cdh)) -> new_ltEs(xuu115, xuu117, cdh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_@2, cde), cdf), ccf) -> new_lt3(xuu114, xuu116, cde, cdf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu101, xuu104, ee, ef) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_primCompAux(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), xuu5001, xuu401, app(app(ty_@2, ca), cb)) -> new_compare23(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, ca), new_esEs10(xuu50001, xuu4001, cb)), ca, cb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 *new_lt2(xuu101, xuu104, ed) -> new_compare4(xuu101, xuu104, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_Maybe, bhg), bha) -> new_lt2(xuu620, xuu630, bhg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_Maybe, cdd), ccf) -> new_lt2(xuu114, xuu116, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare4(Just(xuu50000), Just(xuu4000), bh) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(xuu76, xuu77, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu76, xuu77, ccc, ccd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(xuu76, xuu77, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu76, xuu77, cbh, cca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(xuu76, xuu77, False, app(ty_[], cbd)) -> new_ltEs(xuu76, xuu77, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu101, xuu104, ed) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_primCompAux(Just(xuu50000), Just(xuu4000), xuu5001, xuu401, app(ty_Maybe, bh)) -> new_compare22(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, bh), bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 *new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu620, xuu630, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(xuu620), Just(xuu630), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu620, xuu630, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(xuu620), Just(xuu630), app(ty_[], bfg)) -> new_ltEs(xuu620, xuu630, bfg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(xuu69, xuu70, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu69, xuu70, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare21(xuu69, xuu70, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu69, xuu70, cfc, cfd, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu621, xuu631, cba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(ty_Maybe, cef)) -> new_ltEs2(xuu115, xuu117, cef) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(xuu76, xuu77, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu76, xuu77, ccb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(xuu76, xuu77, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu76, xuu77, cbe, cbf, cbg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Just(xuu620), Just(xuu630), app(ty_Maybe, bge)) -> new_ltEs2(xuu620, xuu630, bge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(xuu620), Just(xuu630), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt(xuu101, xuu104, h) -> new_compare(xuu101, xuu104, h) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(ty_[], bgh), bha) -> new_lt(xuu620, xuu630, bgh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(ty_[], cce), ccf) -> new_lt(xuu114, xuu116, cce) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu622, xuu632, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu622, xuu632, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu622, xuu632, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu622, xuu632, bch) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, cdg, app(app(app(ty_@3, cea), ceb), cec)) -> new_ltEs0(xuu115, xuu117, cea, ceb, cec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(xuu101, xuu104, dg, dh, ea) -> new_compare1(xuu101, xuu104, dg, dh, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@2(xuu620, xuu621), @2(xuu630, xuu631), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu620, xuu630, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_lt0(xuu114, xuu116, ccg, cch, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare23(xuu114, xuu115, xuu116, xuu117, False, app(app(ty_Either, cdb), cdc), ccf) -> new_lt1(xuu114, xuu116, cdb, cdc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare1(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), bc, bd, be) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu103, xuu106, ha, hb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu103, xuu106, gf, gg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu103, xuu106, gb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(ty_[], h), de, df) -> new_compare(xuu101, xuu104, h) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu102, xuu105, fh, ga) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu102, xuu105, fg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu103, xuu106, gh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(ty_[], eh), df) -> new_lt(xuu102, xuu105, eh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu103, xuu106, gc, gd, ge) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu102, xuu105, fa, fb, fc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu101, xuu104, dg, dh, ea) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_primCompAux(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), xuu5001, xuu401, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, bc), new_asAs(new_esEs5(xuu50001, xuu4001, bd), new_esEs4(xuu50002, xuu4002, be))), bc, bd, be) 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_lt1(xuu101, xuu104, eb, ec) -> new_compare3(xuu101, xuu104, eb, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu102, xuu105, fd, ff) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare2(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu101, xuu104, eb, ec) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare3(Left(xuu50000), Left(xuu4000), bf, bg) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare20(xuu62, xuu63, False, app(ty_[], hc), hd) -> new_compare(xuu62, xuu63, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux0(xuu37, xuu38, EQ, app(ty_[], cc)) -> new_compare(xuu37, xuu38, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(Left(xuu50000), Left(xuu4000), xuu5001, xuu401, app(app(ty_Either, bf), bg)) -> new_compare20(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, bf), bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_primCompAux(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux0(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) The graph contains the following edges 3 >= 1, 4 >= 2 *new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu620, xuu630, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu620, xuu630, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu620, xuu630, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(xuu620), Left(xuu630), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu620, xuu630, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_[], bef)) -> new_ltEs(xuu620, xuu630, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu620), Left(xuu630), app(ty_[], bdc), bdd) -> new_ltEs(xuu620, xuu630, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Left(xuu620), Left(xuu630), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu620, xuu630, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(xuu620), Right(xuu630), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu620, xuu630, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(xuu620), Left(xuu630), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(xuu620), Right(xuu630), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu620, xuu630, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu621, xuu631, cbb, cbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu620, xuu630, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu622, xuu632, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu620, xuu630, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu620, xuu630, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu622, xuu632, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu620, xuu630, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu620, xuu630, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu621, xuu631, cag, cah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu620, xuu630, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu620, xuu630, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu620, xuu630, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu621, xuu631, cac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu622, xuu632, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu620, xuu630, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu621, xuu631, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu621, xuu631, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu620, xuu630, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu620, xuu630, bhh, caa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu620, xuu630, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu621, xuu631, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu620, xuu630, bhg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu621, xuu631, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu620, xuu630, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu620, xuu630, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu622, xuu632, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu620, xuu630, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu621, xuu631, cba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu620, xuu630, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(ty_[], he), hf, hg) -> new_lt(xuu620, xuu630, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(ty_[], bba), hg) -> new_lt(xuu621, xuu631, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu621, xuu631, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu620, xuu630, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu620, xuu630, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu620, xuu630, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu621, xuu631, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu620, xuu630, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu622, xuu632, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu621, xuu631, cad, cae, caf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xuu620), Just(xuu630), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu620, xuu630, bfh, bga, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xuu620), Right(xuu630), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu620, xuu630, beg, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(xuu620), Left(xuu630), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu620, xuu630, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu620, xuu630, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu621, xuu631, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu620, xuu630, bhb, bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu620, xuu621), @2(xuu630, xuu631), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu620, xuu630, bhe, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu620, xuu630, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu621, xuu631, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (24) YES ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(Left(xuu500000), Left(xuu40000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu500000, xuu40000, bcg, bch) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_Maybe, gh), ge) -> new_esEs1(xuu500000, xuu40000, gh) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), bae) -> new_esEs2(xuu500001, xuu40001, bae) new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(ty_[], bdh)) -> new_esEs2(xuu500000, xuu40000, bdh) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(xuu500002, xuu40002, bb, bc, bd) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(ty_Maybe, ff)) -> new_esEs1(xuu500001, xuu40001, ff) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu500000, xuu40000, bba, bbb) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(ty_@2, cg), da), cf) -> new_esEs0(xuu500001, xuu40001, cg, da) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(xuu500000, xuu40000, gb, gc, gd) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(xuu500000, xuu40000, baf, bag, bah) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(ty_@2, fc), fd)) -> new_esEs0(xuu500001, xuu40001, fc, fd) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(xuu500000, xuu40000, hb, hc) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_Maybe, ec), ba, cf) -> new_esEs1(xuu500000, xuu40000, ec) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_Either, ee), ef), ba, cf) -> new_esEs3(xuu500000, xuu40000, ee, ef) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_[], ed), ba, cf) -> new_esEs2(xuu500000, xuu40000, ed) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(ty_Maybe, db), cf) -> new_esEs1(xuu500001, xuu40001, db) new_esEs3(Left(xuu500000), Left(xuu40000), app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu500000, xuu40000, bcc, bcd) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(ty_[], dc), cf) -> new_esEs2(xuu500001, xuu40001, dc) new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu500000, xuu40000, bea, beb) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(xuu500001, xuu40001, cc, cd, ce) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(ty_Either, fh), ga)) -> new_esEs3(xuu500001, xuu40001, fh, ga) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(ty_[], bh)) -> new_esEs2(xuu500002, xuu40002, bh) new_esEs3(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu500000, xuu40000, bbg, bbh, bca) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(ty_Either, dd), de), cf) -> new_esEs3(xuu500001, xuu40001, dd, de) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(ty_@2, be), bf)) -> new_esEs0(xuu500002, xuu40002, be, bf) new_esEs1(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xuu500000, xuu40000, hd, he, hf) new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(ty_@2, bde), bdf)) -> new_esEs0(xuu500000, xuu40000, bde, bdf) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(ty_Either, ca), cb)) -> new_esEs3(xuu500002, xuu40002, ca, cb) new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu500000, xuu40000, bdb, bdc, bdd) new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(ty_Maybe, bdg)) -> new_esEs1(xuu500000, xuu40000, bdg) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(ty_Maybe, bg)) -> new_esEs1(xuu500002, xuu40002, bg) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_[], ha), ge) -> new_esEs2(xuu500000, xuu40000, ha) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(xuu500000, xuu40000, df, dg, dh) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(ty_[], fg)) -> new_esEs2(xuu500001, xuu40001, fg) new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_[], bab)) -> new_esEs2(xuu500000, xuu40000, bab) new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_@2, hg), hh)) -> new_esEs0(xuu500000, xuu40000, hg, hh) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_[], bbd)) -> new_esEs2(xuu500000, xuu40000, bbd) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu500000, xuu40000, bbe, bbf) new_esEs3(Left(xuu500000), Left(xuu40000), app(ty_Maybe, bce), bcb) -> new_esEs1(xuu500000, xuu40000, bce) new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_Maybe, baa)) -> new_esEs1(xuu500000, xuu40000, baa) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_@2, gf), gg), ge) -> new_esEs0(xuu500000, xuu40000, gf, gg) new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_@2, ea), eb), ba, cf) -> new_esEs0(xuu500000, xuu40000, ea, eb) new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs(xuu500001, xuu40001, eh, fa, fb) new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_Either, bac), bad)) -> new_esEs3(xuu500000, xuu40000, bac, bad) new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_Maybe, bbc)) -> new_esEs1(xuu500000, xuu40000, bbc) new_esEs3(Left(xuu500000), Left(xuu40000), app(ty_[], bcf), bcb) -> new_esEs2(xuu500000, xuu40000, bcf) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) 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(xuu500000), Just(xuu40000), app(app(ty_Either, bac), bad)) -> new_esEs3(xuu500000, xuu40000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu500000), Just(xuu40000), app(app(ty_@2, hg), hh)) -> new_esEs0(xuu500000, xuu40000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(xuu500000, xuu40000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_[], bab)) -> new_esEs2(xuu500000, xuu40000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(ty_@2, bba), bbb)) -> new_esEs0(xuu500000, xuu40000, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, hd), he), hf)) -> new_esEs(xuu500000, xuu40000, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(xuu500000), Just(xuu40000), app(ty_Maybe, baa)) -> new_esEs1(xuu500000, xuu40000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(xuu500000, xuu40000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_Maybe, bbc)) -> new_esEs1(xuu500000, xuu40000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(xuu500000), Left(xuu40000), app(app(ty_Either, bcg), bch), bcb) -> new_esEs3(xuu500000, xuu40000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(xuu500000, xuu40000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(xuu500000), Left(xuu40000), app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(xuu500000, xuu40000, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(ty_@2, bde), bdf)) -> new_esEs0(xuu500000, xuu40000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(ty_[], bdh)) -> new_esEs2(xuu500000, xuu40000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu500000), Left(xuu40000), app(ty_[], bcf), bcb) -> new_esEs2(xuu500000, xuu40000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(xuu500000, xuu40000, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(xuu500000, xuu40000, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(xuu500000), Right(xuu40000), bda, app(ty_Maybe, bdg)) -> new_esEs1(xuu500000, xuu40000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(xuu500000), Left(xuu40000), app(ty_Maybe, bce), bcb) -> new_esEs1(xuu500000, xuu40000, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_Either, ee), ef), ba, cf) -> new_esEs3(xuu500000, xuu40000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(ty_Either, dd), de), cf) -> new_esEs3(xuu500001, xuu40001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(ty_Either, ca), cb)) -> new_esEs3(xuu500002, xuu40002, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_Either, hb), hc), ge) -> new_esEs3(xuu500000, xuu40000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(ty_Either, fh), ga)) -> new_esEs3(xuu500001, xuu40001, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(ty_@2, cg), da), cf) -> new_esEs0(xuu500001, xuu40001, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(ty_@2, be), bf)) -> new_esEs0(xuu500002, xuu40002, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(ty_@2, ea), eb), ba, cf) -> new_esEs0(xuu500000, xuu40000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(ty_@2, fc), fd)) -> new_esEs0(xuu500001, xuu40001, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(ty_@2, gf), gg), ge) -> new_esEs0(xuu500000, xuu40000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), bae) -> new_esEs2(xuu500001, xuu40001, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(xuu500000, xuu500001), :(xuu40000, xuu40001), app(ty_[], bbd)) -> new_esEs2(xuu500000, xuu40000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_[], ed), ba, cf) -> new_esEs2(xuu500000, xuu40000, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(ty_[], dc), cf) -> new_esEs2(xuu500001, xuu40001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(ty_[], bh)) -> new_esEs2(xuu500002, xuu40002, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_[], ha), ge) -> new_esEs2(xuu500000, xuu40000, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(ty_[], fg)) -> new_esEs2(xuu500001, xuu40001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(app(app(ty_@3, bb), bc), bd)) -> new_esEs(xuu500002, xuu40002, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(app(app(ty_@3, cc), cd), ce), cf) -> new_esEs(xuu500001, xuu40001, cc, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(app(app(ty_@3, df), dg), dh), ba, cf) -> new_esEs(xuu500000, xuu40000, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), app(ty_Maybe, ec), ba, cf) -> new_esEs1(xuu500000, xuu40000, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, app(ty_Maybe, db), cf) -> new_esEs1(xuu500001, xuu40001, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), h, ba, app(ty_Maybe, bg)) -> new_esEs1(xuu500002, xuu40002, bg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(xuu500000, xuu40000, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs(xuu500001, xuu40001, eh, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), app(ty_Maybe, gh), ge) -> new_esEs1(xuu500000, xuu40000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), eg, app(ty_Maybe, ff)) -> new_esEs1(xuu500001, xuu40001, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu400000), Succ(xuu5000100)) -> new_primMulNat(xuu400000, Succ(xuu5000100)) R is empty. Q is empty. 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_primMulNat(Succ(xuu400000), Succ(xuu5000100)) -> new_primMulNat(xuu400000, Succ(xuu5000100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (30) YES ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, EQ, bb, bc) new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C11(xuu3, xuu41, xuu42, xuu43, xuu44, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, [], xuu501, bb, bc) new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) The TRS R consists of the following rules: new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_@2, cfe), cff)) -> new_esEs21(xuu500000, xuu40000, cfe, cff) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs28(Left(xuu500000), Left(xuu40000), ty_Float, dgg) -> new_esEs26(xuu500000, xuu40000) new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Double, dgg) -> new_esEs23(xuu500000, xuu40000) new_pePe(True, xuu209) -> True new_ltEs20(xuu622, xuu632, app(ty_Maybe, cab)) -> new_ltEs15(xuu622, xuu632, cab) new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs38(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, app(app(ty_Either, dgc), dgd)) -> new_esEs28(xuu50001, xuu4001, dgc, dgd) new_esEs7(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_esEs21(xuu101, xuu104, hb, hc) new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs24(xuu115, xuu117, app(app(ty_Either, fhd), fhe)) -> new_ltEs14(xuu115, xuu117, fhd, fhe) new_esEs39(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare14(xuu37, xuu38) new_esEs5(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_compare111(xuu140, xuu141, True, cge, cgf) -> LT new_esEs14(xuu500002, xuu40002, ty_Int) -> new_esEs19(xuu500002, xuu40002) new_esEs11(xuu50000, xuu4000, app(app(ty_Either, efc), efd)) -> new_esEs28(xuu50000, xuu4000, efc, efd) new_esEs32(xuu620, xuu630, app(ty_[], beg)) -> new_esEs25(xuu620, xuu630, beg) new_compare7(:(xuu50000, xuu50001), :(xuu4000, xuu4001), cae) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, cae) new_compare0(xuu5000, xuu400, ty_Char) -> new_compare14(xuu5000, xuu400) new_esEs16(xuu500000, xuu40000, app(app(ty_Either, fd), ff)) -> new_esEs28(xuu500000, xuu40000, fd, ff) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs24(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs30(xuu101, xuu104, ty_Integer) -> new_esEs20(xuu101, xuu104) new_ltEs15(Just(xuu620), Just(xuu630), ty_Char) -> new_ltEs13(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) new_esEs31(xuu621, xuu631, app(ty_Ratio, bge)) -> new_esEs17(xuu621, xuu631, bge) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare19(xuu37, xuu38) new_lt23(xuu114, xuu116, ty_Bool) -> new_lt13(xuu114, xuu116) new_ltEs14(Left(xuu620), Left(xuu630), ty_@0, bch) -> new_ltEs8(xuu620, xuu630) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, cbg, cbh, cca) -> GT new_esEs31(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs13(xuu621, xuu631, bgb, bgc, bgd) new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) new_esEs14(xuu500002, xuu40002, app(ty_Ratio, bg)) -> new_esEs17(xuu500002, xuu40002, bg) new_lt23(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_lt15(xuu114, xuu116, fgb, fgc) new_esEs16(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Float) -> new_lt11(xuu101, xuu104) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Ratio, egg)) -> new_esEs17(xuu500000, xuu40000, egg) new_not(True) -> False new_lt22(xuu620, xuu630, app(ty_[], fce)) -> new_lt7(xuu620, xuu630, fce) new_lt22(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_lt23(xuu114, xuu116, ty_Int) -> new_lt9(xuu114, xuu116) new_esEs35(xuu500000, xuu40000, app(app(ty_@2, dag), dah)) -> new_esEs21(xuu500000, xuu40000, dag, dah) new_esEs14(xuu500002, xuu40002, ty_Bool) -> new_esEs22(xuu500002, xuu40002) new_esEs7(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_ltEs24(xuu115, xuu117, ty_Integer) -> new_ltEs16(xuu115, xuu117) new_primEqNat0(Succ(xuu5000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu400000)) -> False new_lt6(xuu102, xuu105, app(ty_Maybe, bac)) -> new_lt16(xuu102, xuu105, bac) new_ltEs24(xuu115, xuu117, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs10(xuu115, xuu117, fgh, fha, fhb) new_esEs39(xuu114, xuu116, app(ty_Ratio, fga)) -> new_esEs17(xuu114, xuu116, fga) new_esEs39(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_esEs24(xuu114, xuu116, fgd) new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ede), edf)) -> new_esEs21(xuu50001, xuu4001, ede, edf) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bde)) -> new_compare7(xuu37, xuu38, bde) new_compare115(xuu156, xuu157, False, dgh) -> GT new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare9(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) new_esEs9(xuu50000, xuu4000, app(ty_[], ddf)) -> new_esEs25(xuu50000, xuu4000, ddf) new_esEs29(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) new_esEs16(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_lt19(xuu101, xuu104) -> new_esEs12(new_compare19(xuu101, xuu104), LT) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu621, xuu631, ty_Float) -> new_ltEs5(xuu621, xuu631) new_compare17(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs13(xuu76, xuu77) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(xuu620, xuu630, fcc, fcd) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_lt6(xuu102, xuu105, ty_@0) -> new_lt8(xuu102, xuu105) new_compare28(xuu114, xuu115, xuu116, xuu117, False, ffc, ffd) -> new_compare113(xuu114, xuu115, xuu116, xuu117, new_lt23(xuu114, xuu116, ffc), new_asAs(new_esEs39(xuu114, xuu116, ffc), new_ltEs24(xuu115, xuu117, ffd)), ffc, ffd) new_compare116(xuu147, xuu148, True, ffa, ffb) -> LT new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT new_lt22(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt10(xuu620, xuu630, fcf, fcg, fch) new_compare9(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs8(xuu69, xuu70) new_esEs30(xuu101, xuu104, ty_@0) -> new_esEs18(xuu101, xuu104) new_esEs16(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs8(xuu50000, xuu4000, app(ty_Ratio, eac)) -> new_esEs17(xuu50000, xuu4000, eac) new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ced)) -> new_esEs24(xuu500000, xuu40000, ced) new_lt23(xuu114, xuu116, ty_Integer) -> new_lt17(xuu114, xuu116) new_primPlusNat1(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat1(xuu21200, xuu21100))) new_lt5(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_lt18(xuu101, xuu104, hb, hc) new_primCompAux00(xuu37, xuu38, GT, bdd) -> GT new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs7(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primCmpNat0(Zero, Succ(xuu40000)) -> LT new_esEs4(xuu50002, xuu4002, app(app(ty_@2, dee), def)) -> new_esEs21(xuu50002, xuu4002, dee, def) new_esEs29(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_esEs13(xuu102, xuu105, he, hf, hg) new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Maybe, ehe)) -> new_esEs24(xuu500000, xuu40000, ehe) new_ltEs23(xuu621, xuu631, ty_Int) -> new_ltEs9(xuu621, xuu631) new_lt20(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_ltEs23(xuu621, xuu631, app(ty_Ratio, fec)) -> new_ltEs11(xuu621, xuu631, fec) new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_compare15(Left(xuu50000), Right(xuu4000), cbb, cbc) -> LT new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) -> LT new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare8(xuu37, xuu38) new_esEs8(xuu50000, xuu4000, app(ty_Maybe, eba)) -> new_esEs24(xuu50000, xuu4000, eba) new_esEs29(xuu102, xuu105, app(ty_Maybe, bac)) -> new_esEs24(xuu102, xuu105, bac) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs6(xuu103, xuu106, app(ty_Maybe, bbe)) -> new_ltEs15(xuu103, xuu106, bbe) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, eff), efg), efh), dgg) -> new_esEs13(xuu500000, xuu40000, eff, efg, efh) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_Either, dcb), dcc)) -> new_ltEs14(xuu620, xuu630, dcb, dcc) new_esEs38(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_ltEs21(xuu76, xuu77, app(app(ty_Either, che), chf)) -> new_ltEs14(xuu76, xuu77, che, chf) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Ratio, dca)) -> new_ltEs11(xuu620, xuu630, dca) new_esEs33(xuu500001, xuu40001, app(app(ty_Either, cdd), cde)) -> new_esEs28(xuu500001, xuu40001, cdd, cde) new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu621, xuu631, ty_Ordering) -> new_ltEs18(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), ty_Double, bch) -> new_ltEs12(xuu620, xuu630) new_compare0(xuu5000, xuu400, app(ty_Ratio, cba)) -> new_compare12(xuu5000, xuu400, cba) new_esEs6(xuu50000, xuu4000, app(ty_Maybe, ceh)) -> new_esEs24(xuu50000, xuu4000, ceh) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs18(xuu62, xuu63) new_esEs31(xuu621, xuu631, ty_Double) -> new_esEs23(xuu621, xuu631) new_esEs31(xuu621, xuu631, ty_Bool) -> new_esEs22(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_Bool) -> new_ltEs4(xuu115, xuu117) new_lt5(xuu101, xuu104, ty_Bool) -> new_lt13(xuu101, xuu104) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs13(xuu62, xuu63) new_lt4(xuu101, xuu104) -> new_esEs12(new_compare6(xuu101, xuu104), LT) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_compare0(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Char) -> new_ltEs13(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_Either, fbh), fca)) -> new_ltEs14(xuu620, xuu630, fbh, fca) new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_lt6(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_lt10(xuu102, xuu105, he, hf, hg) new_esEs21(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), ccb, ccc) -> new_asAs(new_esEs34(xuu500000, xuu40000, ccb), new_esEs33(xuu500001, xuu40001, ccc)) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs16(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(ty_@2, ecg), ech)) -> new_ltEs17(xuu69, xuu70, ecg, ech) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Ordering, dgg) -> new_esEs12(xuu500000, xuu40000) new_ltEs18(EQ, LT) -> False new_esEs11(xuu50000, xuu4000, app(ty_Ratio, eec)) -> new_esEs17(xuu50000, xuu4000, eec) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero new_ltEs20(xuu622, xuu632, ty_Double) -> new_ltEs12(xuu622, xuu632) new_compare0(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_esEs34(xuu500000, xuu40000, app(ty_Ratio, cdf)) -> new_esEs17(xuu500000, xuu40000, cdf) new_esEs15(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs16(xuu500000, xuu40000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs13(xuu500000, xuu40000, ee, ef, eg) new_lt20(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_compare26(xuu76, xuu77, True, cgg) -> EQ new_lt23(xuu114, xuu116, ty_Float) -> new_lt11(xuu114, xuu116) new_ltEs6(xuu103, xuu106, app(ty_Ratio, bbb)) -> new_ltEs11(xuu103, xuu106, bbb) new_ltEs15(Just(xuu620), Just(xuu630), ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_compare15(Left(xuu50000), Left(xuu4000), cbb, cbc) -> new_compare25(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, cbb), cbb, cbc) new_esEs39(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs13(xuu114, xuu116, fff, ffg, ffh) new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_ltEs17(@2(xuu620, xuu621), @2(xuu630, xuu631), bdb, bdc) -> new_pePe(new_lt22(xuu620, xuu630, bdb), new_asAs(new_esEs38(xuu620, xuu630, bdb), new_ltEs23(xuu621, xuu631, bdc))) new_esEs38(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs38(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs6(xuu103, xuu106, ty_Ordering) -> new_ltEs18(xuu103, xuu106) new_lt12(xuu101, xuu104, gf) -> new_esEs12(new_compare12(xuu101, xuu104, gf), LT) new_esEs31(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_esEs24(xuu621, xuu631, bgh) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Maybe, fcb)) -> new_ltEs15(xuu620, xuu630, fcb) new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs16(xuu62, xuu63) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Char, dgg) -> new_esEs27(xuu500000, xuu40000) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bea)) -> new_compare12(xuu37, xuu38, bea) new_esEs7(xuu50000, xuu4000, app(app(ty_@2, dhe), dhf)) -> new_esEs21(xuu50000, xuu4000, dhe, dhf) new_ltEs19(xuu62, xuu63, app(app(ty_Either, bcg), bch)) -> new_ltEs14(xuu62, xuu63, bcg, bch) new_esEs14(xuu500002, xuu40002, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(xuu500002, xuu40002, bh, ca, cb) new_esEs6(xuu50000, xuu4000, app(ty_[], dab)) -> new_esEs25(xuu50000, xuu4000, dab) new_primPlusNat1(Succ(xuu21200), Zero) -> Succ(xuu21200) new_primPlusNat1(Zero, Succ(xuu21100)) -> Succ(xuu21100) new_compare19(EQ, GT) -> LT new_compare0(xuu5000, xuu400, app(ty_[], cae)) -> new_compare7(xuu5000, xuu400, cae) new_compare116(xuu147, xuu148, False, ffa, ffb) -> GT new_esEs39(xuu114, xuu116, ty_Bool) -> new_esEs22(xuu114, xuu116) new_lt22(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs29(xuu102, xuu105, ty_Bool) -> new_esEs22(xuu102, xuu105) new_ltEs24(xuu115, xuu117, app(app(ty_@2, fhg), fhh)) -> new_ltEs17(xuu115, xuu117, fhg, fhh) new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), caf, cag, cah) -> new_compare24(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, caf), new_asAs(new_esEs5(xuu50001, xuu4001, cag), new_esEs4(xuu50002, xuu4002, cah))), caf, cag, cah) new_ltEs14(Left(xuu620), Left(xuu630), app(app(app(ty_@3, fab), fac), fad), bch) -> new_ltEs10(xuu620, xuu630, fab, fac, fad) new_esEs32(xuu620, xuu630, app(ty_Maybe, bff)) -> new_esEs24(xuu620, xuu630, bff) new_ltEs20(xuu622, xuu632, ty_Float) -> new_ltEs5(xuu622, xuu632) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_Either, ehg), ehh)) -> new_esEs28(xuu500000, xuu40000, ehg, ehh) new_ltEs21(xuu76, xuu77, app(ty_Ratio, chd)) -> new_ltEs11(xuu76, xuu77, chd) new_compare7(:(xuu50000, xuu50001), [], cae) -> GT new_fsEs(xuu210) -> new_not(new_esEs12(xuu210, GT)) new_ltEs11(xuu62, xuu63, bcf) -> new_fsEs(new_compare12(xuu62, xuu63, bcf)) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) -> LT new_compare0(xuu5000, xuu400, app(app(ty_Either, cbb), cbc)) -> new_compare15(xuu5000, xuu400, cbb, cbc) new_esEs8(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt23(xuu114, xuu116, ty_Char) -> new_lt14(xuu114, xuu116) new_esEs16(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Integer, bch) -> new_ltEs16(xuu620, xuu630) new_esEs4(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_Float) -> new_esEs26(xuu500002, xuu40002) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs18(xuu76, xuu77) new_compare19(LT, GT) -> LT new_ltEs14(Left(xuu620), Right(xuu630), bcg, bch) -> True new_esEs32(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_lt21(xuu621, xuu631, ty_@0) -> new_lt8(xuu621, xuu631) new_compare19(LT, EQ) -> LT new_esEs29(xuu102, xuu105, ty_Ordering) -> new_esEs12(xuu102, xuu105) new_ltEs6(xuu103, xuu106, ty_Double) -> new_ltEs12(xuu103, xuu106) new_esEs7(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt17(xuu101, xuu104) -> new_esEs12(new_compare17(xuu101, xuu104), LT) new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ccd)) -> new_esEs17(xuu500001, xuu40001, ccd) new_compare113(xuu188, xuu189, xuu190, xuu191, True, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) new_lt20(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_@0) -> new_ltEs8(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs13(xuu500001, xuu40001, cce, ccf, ccg) new_lt21(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_lt15(xuu621, xuu631, bgf, bgg) new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_lt6(xuu102, xuu105, ty_Ordering) -> new_lt19(xuu102, xuu105) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bee), bef)) -> new_compare18(xuu37, xuu38, bee, bef) new_compare0(xuu5000, xuu400, app(app(ty_@2, cbe), cbf)) -> new_compare18(xuu5000, xuu400, cbe, cbf) new_lt6(xuu102, xuu105, ty_Char) -> new_lt14(xuu102, xuu105) new_esEs12(GT, GT) -> True new_esEs39(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_esEs28(xuu114, xuu116, fgb, fgc) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare17(xuu37, xuu38) new_ltEs15(Just(xuu620), Just(xuu630), app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs10(xuu620, xuu630, dbf, dbg, dbh) new_esEs29(xuu102, xuu105, app(ty_[], hd)) -> new_esEs25(xuu102, xuu105, hd) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_Either, cga), cgb)) -> new_esEs28(xuu500000, xuu40000, cga, cgb) new_esEs16(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs16(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_@2, dce), dcf)) -> new_ltEs17(xuu620, xuu630, dce, dcf) new_compare13(True, False) -> GT new_esEs7(xuu50000, xuu4000, app(app(ty_Either, eaa), eab)) -> new_esEs28(xuu50000, xuu4000, eaa, eab) new_esEs15(xuu500001, xuu40001, app(ty_Maybe, dh)) -> new_esEs24(xuu500001, xuu40001, dh) new_ltEs6(xuu103, xuu106, app(ty_[], baf)) -> new_ltEs7(xuu103, xuu106, baf) new_compare13(False, True) -> LT new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs37(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) new_esEs30(xuu101, xuu104, app(ty_[], gb)) -> new_esEs25(xuu101, xuu104, gb) new_compare15(Right(xuu50000), Right(xuu4000), cbb, cbc) -> new_compare27(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, cbc), cbb, cbc) new_esEs12(EQ, EQ) -> True new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, beb), bec)) -> new_compare15(xuu37, xuu38, beb, bec) new_esEs16(xuu500000, xuu40000, app(ty_Maybe, fb)) -> new_esEs24(xuu500000, xuu40000, fb) new_lt21(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_lt16(xuu621, xuu631, bgh) new_esEs14(xuu500002, xuu40002, app(app(ty_Either, cg), da)) -> new_esEs28(xuu500002, xuu40002, cg, da) new_esEs9(xuu50000, xuu4000, app(app(ty_@2, ddc), ddd)) -> new_esEs21(xuu50000, xuu4000, ddc, ddd) new_esEs37(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(ty_Maybe, deg)) -> new_esEs24(xuu50002, xuu4002, deg) new_compare0(xuu5000, xuu400, ty_Int) -> new_compare9(xuu5000, xuu400) new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare11(xuu37, xuu38) new_ltEs24(xuu115, xuu117, app(ty_[], fgg)) -> new_ltEs7(xuu115, xuu117, fgg) new_esEs36(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_compare14(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_lt21(xuu621, xuu631, ty_Int) -> new_lt9(xuu621, xuu631) new_esEs30(xuu101, xuu104, ty_Double) -> new_esEs23(xuu101, xuu104) new_esEs39(xuu114, xuu116, ty_Float) -> new_esEs26(xuu114, xuu116) new_compare19(GT, LT) -> GT new_esEs5(xuu50001, xuu4001, app(ty_Maybe, dga)) -> new_esEs24(xuu50001, xuu4001, dga) new_esEs25(:(xuu500000, xuu500001), [], dab) -> False new_esEs25([], :(xuu40000, xuu40001), dab) -> False new_lt23(xuu114, xuu116, ty_Ordering) -> new_lt19(xuu114, xuu116) new_lt22(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_lt15(xuu620, xuu630, fdb, fdc) new_esEs29(xuu102, xuu105, ty_Double) -> new_esEs23(xuu102, xuu105) new_ltEs16(xuu62, xuu63) -> new_fsEs(new_compare17(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_compare0(xuu5000, xuu400, ty_Bool) -> new_compare13(xuu5000, xuu400) new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_lt5(xuu101, xuu104, ty_Char) -> new_lt14(xuu101, xuu104) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs26(xuu500000, xuu40000) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, fg, fh, ga) -> EQ new_ltEs4(True, False) -> False new_esEs22(True, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bed)) -> new_compare16(xuu37, xuu38, bed) new_esEs5(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_esEs32(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_esEs38(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_esEs28(xuu620, xuu630, fdb, fdc) new_esEs31(xuu621, xuu631, ty_Integer) -> new_esEs20(xuu621, xuu631) new_lt22(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_ltEs24(xuu115, xuu117, app(ty_Ratio, fhc)) -> new_ltEs11(xuu115, xuu117, fhc) new_esEs36(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt22(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_lt16(xuu620, xuu630, fdd) new_esEs11(xuu50000, xuu4000, app(ty_Maybe, efa)) -> new_esEs24(xuu50000, xuu4000, efa) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_compare10(xuu37, xuu38, bdf, bdg, bdh) new_esEs8(xuu50000, xuu4000, app(app(ty_Either, ebc), ebd)) -> new_esEs28(xuu50000, xuu4000, ebc, ebd) new_ltEs4(False, False) -> True new_lt21(xuu621, xuu631, ty_Float) -> new_lt11(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Ratio, fae), bch) -> new_ltEs11(xuu620, xuu630, fae) new_esEs14(xuu500002, xuu40002, ty_Char) -> new_esEs27(xuu500002, xuu40002) new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs13(xuu500000, xuu40000, cdg, cdh, cea) new_esEs35(xuu500000, xuu40000, app(ty_Maybe, dba)) -> new_esEs24(xuu500000, xuu40000, dba) new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Integer) -> new_ltEs16(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Char, bch) -> new_ltEs13(xuu620, xuu630) new_compare19(LT, LT) -> EQ new_esEs25([], [], dab) -> True new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs13(xuu50000, xuu4000, eed, eee, eef) new_lt22(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_compare114(xuu188, xuu189, xuu190, xuu191, False, cgc, cgd) -> GT new_ltEs19(xuu62, xuu63, app(ty_[], bcb)) -> new_ltEs7(xuu62, xuu63, bcb) new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs8(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt15(xuu101, xuu104, gg, gh) -> new_esEs12(new_compare15(xuu101, xuu104, gg, gh), LT) new_lt20(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs15(Nothing, Just(xuu630), bda) -> True new_esEs31(xuu621, xuu631, ty_Int) -> new_esEs19(xuu621, xuu631) new_esEs32(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_esEs17(xuu620, xuu630, bfc) new_ltEs12(xuu62, xuu63) -> new_fsEs(new_compare6(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dgf), dgg)) -> new_esEs28(xuu50000, xuu4000, dgf, dgg) new_lt5(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_lt15(xuu101, xuu104, gg, gh) new_ltEs20(xuu622, xuu632, app(ty_[], bhc)) -> new_ltEs7(xuu622, xuu632, bhc) new_compare27(xuu69, xuu70, True, ebe, ebf) -> EQ new_ltEs14(Left(xuu620), Left(xuu630), ty_Bool, bch) -> new_ltEs4(xuu620, xuu630) new_lt20(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_primPlusNat0(Succ(xuu2220), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2220, xuu5000100))) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_[], fbc)) -> new_ltEs7(xuu620, xuu630, fbc) new_lt11(xuu101, xuu104) -> new_esEs12(new_compare11(xuu101, xuu104), LT) new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Float) -> new_ltEs5(xuu620, xuu630) new_lt5(xuu101, xuu104, ty_Int) -> new_lt9(xuu101, xuu104) new_esEs5(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_lt22(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_ltEs13(xuu62, xuu63) -> new_fsEs(new_compare14(xuu62, xuu63)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt18(xuu101, xuu104, hb, hc) -> new_esEs12(new_compare18(xuu101, xuu104, hb, hc), LT) new_lt20(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_lt15(xuu620, xuu630, bfd, bfe) new_ltEs23(xuu621, xuu631, app(ty_[], fdg)) -> new_ltEs7(xuu621, xuu631, fdg) new_esEs4(xuu50002, xuu4002, app(app(ty_Either, dfa), dfb)) -> new_esEs28(xuu50002, xuu4002, dfa, dfb) new_ltEs18(GT, LT) -> False new_esEs4(xuu50002, xuu4002, ty_@0) -> new_esEs18(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_@0) -> new_esEs18(xuu500002, xuu40002) new_lt5(xuu101, xuu104, ty_Integer) -> new_lt17(xuu101, xuu104) new_esEs38(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare13(xuu37, xuu38) new_lt5(xuu101, xuu104, app(ty_Maybe, ha)) -> new_lt16(xuu101, xuu104, ha) new_ltEs22(xuu69, xuu70, app(ty_[], ebg)) -> new_ltEs7(xuu69, xuu70, ebg) new_ltEs4(True, True) -> True new_lt6(xuu102, xuu105, ty_Integer) -> new_lt17(xuu102, xuu105) new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Double) -> new_ltEs12(xuu621, xuu631) new_ltEs15(Just(xuu620), Just(xuu630), ty_Int) -> new_ltEs9(xuu620, xuu630) new_lt14(xuu101, xuu104) -> new_esEs12(new_compare14(xuu101, xuu104), LT) new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_compare19(EQ, LT) -> GT new_esEs31(xuu621, xuu631, ty_Ordering) -> new_esEs12(xuu621, xuu631) new_ltEs21(xuu76, xuu77, app(ty_[], cgh)) -> new_ltEs7(xuu76, xuu77, cgh) new_lt20(xuu620, xuu630, app(ty_Maybe, bff)) -> new_lt16(xuu620, xuu630, bff) new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_lt21(xuu621, xuu631, ty_Integer) -> new_lt17(xuu621, xuu631) new_esEs14(xuu500002, xuu40002, app(ty_Maybe, ce)) -> new_esEs24(xuu500002, xuu40002, ce) new_esEs4(xuu50002, xuu4002, ty_Char) -> new_esEs27(xuu50002, xuu4002) new_esEs32(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs13(xuu620, xuu630, beh, bfa, bfb) new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_compare0(xuu5000, xuu400, app(app(app(ty_@3, caf), cag), cah)) -> new_compare10(xuu5000, xuu400, caf, cag, cah) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, fg, fh, ga) -> new_compare110(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt5(xuu101, xuu104, fg), new_asAs(new_esEs30(xuu101, xuu104, fg), new_pePe(new_lt6(xuu102, xuu105, fh), new_asAs(new_esEs29(xuu102, xuu105, fh), new_ltEs6(xuu103, xuu106, ga)))), fg, fh, ga) new_esEs30(xuu101, xuu104, ty_Ordering) -> new_esEs12(xuu101, xuu104) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare9(xuu37, xuu38) new_esEs29(xuu102, xuu105, app(ty_Ratio, hh)) -> new_esEs17(xuu102, xuu105, hh) new_lt20(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Ordering) -> new_lt19(xuu101, xuu104) new_esEs30(xuu101, xuu104, app(ty_Ratio, gf)) -> new_esEs17(xuu101, xuu104, gf) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs39(xuu114, xuu116, ty_Char) -> new_esEs27(xuu114, xuu116) new_compare7([], [], cae) -> EQ new_compare15(Right(xuu50000), Left(xuu4000), cbb, cbc) -> GT new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_esEs16(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt13(xuu101, xuu104) -> new_esEs12(new_compare13(xuu101, xuu104), LT) new_esEs15(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs15(Just(xuu620), Just(xuu630), ty_Bool) -> new_ltEs4(xuu620, xuu630) new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Double) -> new_ltEs12(xuu115, xuu117) new_ltEs6(xuu103, xuu106, app(app(ty_@2, bbf), bbg)) -> new_ltEs17(xuu103, xuu106, bbf, bbg) new_esEs10(xuu50001, xuu4001, app(ty_Ratio, eda)) -> new_esEs17(xuu50001, xuu4001, eda) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT new_esEs7(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) new_lt21(xuu621, xuu631, ty_Ordering) -> new_lt19(xuu621, xuu631) new_compare26(xuu76, xuu77, False, cgg) -> new_compare115(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgg), cgg) new_esEs32(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_esEs28(xuu620, xuu630, bfd, bfe) new_lt22(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_@2, fba), fbb), bch) -> new_ltEs17(xuu620, xuu630, fba, fbb) new_ltEs14(Right(xuu620), Left(xuu630), bcg, bch) -> False new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs13(xuu500000, xuu40000, egh, eha, ehb) new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT new_esEs32(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Int, bch) -> new_ltEs9(xuu620, xuu630) new_esEs16(xuu500000, xuu40000, app(ty_[], fc)) -> new_esEs25(xuu500000, xuu40000, fc) new_ltEs22(xuu69, xuu70, app(ty_Ratio, ecc)) -> new_ltEs11(xuu69, xuu70, ecc) new_esEs18(@0, @0) -> True new_compare19(EQ, EQ) -> EQ new_ltEs6(xuu103, xuu106, ty_Integer) -> new_ltEs16(xuu103, xuu106) new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Bool) -> new_ltEs4(xuu621, xuu631) new_ltEs6(xuu103, xuu106, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs10(xuu103, xuu106, bag, bah, bba) new_lt5(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xuu101, xuu104, gc, gd, ge) new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs13(xuu50001, xuu4001, edb, edc, edd) new_ltEs4(False, True) -> True new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(ty_[], dgb)) -> new_esEs25(xuu50001, xuu4001, dgb) new_lt23(xuu114, xuu116, ty_@0) -> new_lt8(xuu114, xuu116) new_ltEs8(xuu62, xuu63) -> new_fsEs(new_compare8(xuu62, xuu63)) new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_lt18(xuu102, xuu105, bad, bae) new_compare28(xuu114, xuu115, xuu116, xuu117, True, ffc, ffd) -> EQ new_ltEs20(xuu622, xuu632, app(app(ty_Either, bhh), caa)) -> new_ltEs14(xuu622, xuu632, bhh, caa) new_ltEs15(Just(xuu620), Just(xuu630), ty_Double) -> new_ltEs12(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs18(xuu69, xuu70) new_esEs4(xuu50002, xuu4002, app(ty_Ratio, dea)) -> new_esEs17(xuu50002, xuu4002, dea) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False new_esEs30(xuu101, xuu104, ty_Bool) -> new_esEs22(xuu101, xuu104) new_esEs7(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) new_esEs29(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_esEs21(xuu102, xuu105, bad, bae) new_compare19(GT, GT) -> EQ new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs13(xuu50002, xuu4002, deb, dec, ded) new_esEs39(xuu114, xuu116, ty_@0) -> new_esEs18(xuu114, xuu116) new_esEs38(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_esEs24(xuu620, xuu630, fdd) new_esEs23(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_lt22(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Maybe, cfg)) -> new_esEs24(xuu500000, xuu40000, cfg) new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, app(ty_Ratio, db)) -> new_esEs17(xuu500001, xuu40001, db) new_lt9(xuu101, xuu104) -> new_esEs12(new_compare9(xuu101, xuu104), LT) new_ltEs23(xuu621, xuu631, app(app(app(ty_@3, fdh), fea), feb)) -> new_ltEs10(xuu621, xuu631, fdh, fea, feb) new_lt6(xuu102, xuu105, ty_Int) -> new_lt9(xuu102, xuu105) new_esEs30(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs13(xuu101, xuu104, gc, gd, ge) new_esEs32(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_esEs38(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs9(xuu69, xuu70) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs13(xuu500000, xuu40000, cfb, cfc, cfd) new_esEs14(xuu500002, xuu40002, ty_Integer) -> new_esEs20(xuu500002, xuu40002) new_lt21(xuu621, xuu631, ty_Char) -> new_lt14(xuu621, xuu631) new_esEs34(xuu500000, xuu40000, app(app(ty_@2, ceb), cec)) -> new_esEs21(xuu500000, xuu40000, ceb, cec) new_lt23(xuu114, xuu116, app(ty_[], ffe)) -> new_lt7(xuu114, xuu116, ffe) new_esEs12(LT, LT) -> True new_esEs33(xuu500001, xuu40001, app(ty_[], cdc)) -> new_esEs25(xuu500001, xuu40001, cdc) new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ddg), ddh)) -> new_esEs28(xuu50000, xuu4000, ddg, ddh) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_[], dbe)) -> new_ltEs7(xuu620, xuu630, dbe) new_ltEs18(EQ, GT) -> True new_lt23(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_lt10(xuu114, xuu116, fff, ffg, ffh) new_esEs26(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_ltEs23(xuu621, xuu631, ty_Integer) -> new_ltEs16(xuu621, xuu631) new_esEs4(xuu50002, xuu4002, ty_Float) -> new_esEs26(xuu50002, xuu4002) new_lt10(xuu101, xuu104, gc, gd, ge) -> new_esEs12(new_compare10(xuu101, xuu104, gc, gd, ge), LT) new_lt6(xuu102, xuu105, ty_Float) -> new_lt11(xuu102, xuu105) new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs12(xuu76, xuu77) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Maybe, egc), dgg) -> new_esEs24(xuu500000, xuu40000, egc) new_lt6(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_lt15(xuu102, xuu105, baa, bab) new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs19(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) new_esEs39(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_esEs21(xuu114, xuu116, fge, fgf) new_esEs15(xuu500001, xuu40001, app(app(ty_Either, eb), ec)) -> new_esEs28(xuu500001, xuu40001, eb, ec) new_esEs29(xuu102, xuu105, ty_@0) -> new_esEs18(xuu102, xuu105) new_esEs11(xuu50000, xuu4000, app(ty_[], efb)) -> new_esEs25(xuu50000, xuu4000, efb) new_compare7([], :(xuu4000, xuu4001), cae) -> LT new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs13(xuu500000, xuu40000, dad, dae, daf) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(xuu500000), Zero) -> GT new_esEs13(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bd, be, bf) -> new_asAs(new_esEs16(xuu500000, xuu40000, bd), new_asAs(new_esEs15(xuu500001, xuu40001, be), new_esEs14(xuu500002, xuu40002, bf))) new_compare16(Just(xuu50000), Nothing, cbd) -> GT new_pePe(False, xuu209) -> xuu209 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_Either, ege), egf), dgg) -> new_esEs28(xuu500000, xuu40000, ege, egf) new_compare25(xuu62, xuu63, True, bbh, bca) -> EQ new_lt20(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu622, xuu632, ty_Char) -> new_ltEs13(xuu622, xuu632) new_ltEs18(LT, GT) -> True new_esEs15(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_@0) -> new_lt8(xuu101, xuu104) new_compare16(Nothing, Nothing, cbd) -> EQ new_esEs10(xuu50001, xuu4001, app(app(ty_Either, eea), eeb)) -> new_esEs28(xuu50001, xuu4001, eea, eeb) new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False new_ltEs20(xuu622, xuu632, ty_Integer) -> new_ltEs16(xuu622, xuu632) new_ltEs6(xuu103, xuu106, ty_@0) -> new_ltEs8(xuu103, xuu106) new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_lt16(xuu101, xuu104, ha) -> new_esEs12(new_compare16(xuu101, xuu104, ha), LT) new_esEs4(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) new_esEs15(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs9(xuu50000, xuu4000, app(ty_Ratio, dcg)) -> new_esEs17(xuu50000, xuu4000, dcg) new_ltEs15(Nothing, Nothing, bda) -> True new_ltEs15(Just(xuu620), Nothing, bda) -> False new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Float, bch) -> new_ltEs5(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(ty_Maybe, cdb)) -> new_esEs24(xuu500001, xuu40001, cdb) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs12(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Ratio, fbg)) -> new_ltEs11(xuu620, xuu630, fbg) new_ltEs21(xuu76, xuu77, app(ty_Maybe, chg)) -> new_ltEs15(xuu76, xuu77, chg) new_esEs10(xuu50001, xuu4001, app(ty_Maybe, edg)) -> new_esEs24(xuu50001, xuu4001, edg) new_lt23(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_lt16(xuu114, xuu116, fgd) new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs8(xuu76, xuu77) new_esEs8(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_lt21(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt10(xuu621, xuu631, bgb, bgc, bgd) new_esEs31(xuu621, xuu631, ty_@0) -> new_esEs18(xuu621, xuu631) new_esEs30(xuu101, xuu104, app(ty_Maybe, ha)) -> new_esEs24(xuu101, xuu104, ha) new_esEs8(xuu50000, xuu4000, app(app(ty_@2, eag), eah)) -> new_esEs21(xuu50000, xuu4000, eag, eah) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_[], faa), bch) -> new_ltEs7(xuu620, xuu630, faa) new_esEs20(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) new_esEs22(False, True) -> False new_esEs22(True, False) -> False new_esEs29(xuu102, xuu105, ty_Integer) -> new_esEs20(xuu102, xuu105) new_ltEs18(LT, LT) -> True new_ltEs23(xuu621, xuu631, app(app(ty_@2, feg), feh)) -> new_ltEs17(xuu621, xuu631, feg, feh) new_ltEs20(xuu622, xuu632, ty_Ordering) -> new_ltEs18(xuu622, xuu632) new_esEs8(xuu50000, xuu4000, app(ty_[], ebb)) -> new_esEs25(xuu50000, xuu4000, ebb) new_esEs38(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs13(xuu620, xuu630, fcf, fcg, fch) new_esEs15(xuu500001, xuu40001, app(app(app(ty_@3, dc), dd), de)) -> new_esEs13(xuu500001, xuu40001, dc, dd, de) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_Either, faf), fag), bch) -> new_ltEs14(xuu620, xuu630, faf, fag) new_ltEs14(Left(xuu620), Left(xuu630), ty_Ordering, bch) -> new_ltEs18(xuu620, xuu630) new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs15(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_ltEs6(xuu103, xuu106, app(app(ty_Either, bbc), bbd)) -> new_ltEs14(xuu103, xuu106, bbc, bbd) new_ltEs9(xuu62, xuu63) -> new_fsEs(new_compare9(xuu62, xuu63)) new_ltEs18(EQ, EQ) -> True new_esEs6(xuu50000, xuu4000, app(app(ty_@2, ccb), ccc)) -> new_esEs21(xuu50000, xuu4000, ccb, ccc) new_esEs4(xuu50002, xuu4002, ty_Bool) -> new_esEs22(xuu50002, xuu4002) new_lt22(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_esEs22(False, False) -> True new_esEs38(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) new_esEs25(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dab) -> new_asAs(new_esEs35(xuu500000, xuu40000, dab), new_esEs25(xuu500001, xuu40001, dab)) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs31(xuu621, xuu631, app(ty_[], bga)) -> new_esEs25(xuu621, xuu631, bga) new_esEs35(xuu500000, xuu40000, app(ty_Ratio, dac)) -> new_esEs17(xuu500000, xuu40000, dac) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_lt21(xuu621, xuu631, ty_Bool) -> new_lt13(xuu621, xuu631) new_esEs5(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_esEs39(xuu114, xuu116, ty_Integer) -> new_esEs20(xuu114, xuu116) new_esEs32(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare0(xuu5000, xuu400, ty_Float) -> new_compare11(xuu5000, xuu400) new_compare0(xuu5000, xuu400, app(ty_Maybe, cbd)) -> new_compare16(xuu5000, xuu400, cbd) new_ltEs18(LT, EQ) -> True new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs8(xuu62, xuu63) new_ltEs19(xuu62, xuu63, app(ty_Maybe, bda)) -> new_ltEs15(xuu62, xuu63, bda) new_compare115(xuu156, xuu157, True, dgh) -> LT new_lt6(xuu102, xuu105, ty_Bool) -> new_lt13(xuu102, xuu105) new_esEs8(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, app(app(ty_Either, dbc), dbd)) -> new_esEs28(xuu500000, xuu40000, dbc, dbd) new_esEs7(xuu50000, xuu4000, app(ty_[], dhh)) -> new_esEs25(xuu50000, xuu4000, dhh) new_ltEs15(Just(xuu620), Just(xuu630), ty_@0) -> new_ltEs8(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Maybe, dcd)) -> new_ltEs15(xuu620, xuu630, dcd) new_ltEs15(Just(xuu620), Just(xuu630), ty_Float) -> new_ltEs5(xuu620, xuu630) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs5(xuu62, xuu63) new_esEs31(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_esEs21(xuu621, xuu631, bha, bhb) new_esEs7(xuu50000, xuu4000, app(ty_Maybe, dhg)) -> new_esEs24(xuu50000, xuu4000, dhg) new_ltEs6(xuu103, xuu106, ty_Char) -> new_ltEs13(xuu103, xuu106) new_esEs16(xuu500000, xuu40000, app(app(ty_@2, eh), fa)) -> new_esEs21(xuu500000, xuu40000, eh, fa) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_@2, ehc), ehd)) -> new_esEs21(xuu500000, xuu40000, ehc, ehd) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Bool, dgg) -> new_esEs22(xuu500000, xuu40000) new_lt20(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt10(xuu620, xuu630, beh, bfa, bfb) new_esEs28(Left(xuu500000), Left(xuu40000), ty_@0, dgg) -> new_esEs18(xuu500000, xuu40000) new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_esEs5(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_ltEs20(xuu622, xuu632, ty_@0) -> new_ltEs8(xuu622, xuu632) new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs16(xuu76, xuu77) new_compare19(GT, EQ) -> GT new_esEs16(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs39(xuu114, xuu116, app(ty_[], ffe)) -> new_esEs25(xuu114, xuu116, ffe) new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dge)) -> new_esEs17(xuu50000, xuu4000, dge) new_ltEs24(xuu115, xuu117, ty_Ordering) -> new_ltEs18(xuu115, xuu117) new_esEs14(xuu500002, xuu40002, ty_Ordering) -> new_esEs12(xuu500002, xuu40002) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs9(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, bd), be), bf)) -> new_esEs13(xuu50000, xuu4000, bd, be, bf) new_esEs7(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(ty_Maybe, dde)) -> new_esEs24(xuu50000, xuu4000, dde) new_esEs8(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt20(xuu620, xuu630, app(ty_[], beg)) -> new_lt7(xuu620, xuu630, beg) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Integer, dgg) -> new_esEs20(xuu500000, xuu40000) new_asAs(True, xuu135) -> xuu135 new_esEs24(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_esEs21(xuu620, xuu630, bfg, bfh) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Int, dgg) -> new_esEs19(xuu500000, xuu40000) new_esEs34(xuu500000, xuu40000, app(app(ty_Either, cef), ceg)) -> new_esEs28(xuu500000, xuu40000, cef, ceg) new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_@2, dfg), dfh)) -> new_esEs21(xuu50001, xuu4001, dfg, dfh) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs27(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs5(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Int) -> new_ltEs9(xuu620, xuu630) new_esEs39(xuu114, xuu116, ty_Double) -> new_esEs23(xuu114, xuu116) new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) new_compare111(xuu140, xuu141, False, cge, cgf) -> GT new_ltEs20(xuu622, xuu632, app(ty_Ratio, bhg)) -> new_ltEs11(xuu622, xuu632, bhg) new_ltEs15(Just(xuu620), Just(xuu630), ty_Integer) -> new_ltEs16(xuu620, xuu630) new_esEs30(xuu101, xuu104, ty_Float) -> new_esEs26(xuu101, xuu104) new_compare0(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs4(xuu76, xuu77) new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) new_esEs38(xuu620, xuu630, app(ty_Ratio, fda)) -> new_esEs17(xuu620, xuu630, fda) new_primMulNat0(Zero, Zero) -> Zero new_esEs11(xuu50000, xuu4000, app(app(ty_@2, eeg), eeh)) -> new_esEs21(xuu50000, xuu4000, eeg, eeh) new_ltEs5(xuu62, xuu63) -> new_fsEs(new_compare11(xuu62, xuu63)) new_lt20(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_lt18(xuu620, xuu630, bfg, bfh) new_esEs10(xuu50001, xuu4001, app(ty_[], edh)) -> new_esEs25(xuu50001, xuu4001, edh) new_esEs35(xuu500000, xuu40000, app(ty_[], dbb)) -> new_esEs25(xuu500000, xuu40000, dbb) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs5(xuu69, xuu70) new_lt23(xuu114, xuu116, ty_Double) -> new_lt4(xuu114, xuu116) new_esEs4(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_lt23(xuu114, xuu116, app(ty_Ratio, fga)) -> new_lt12(xuu114, xuu116, fga) new_esEs16(xuu500000, xuu40000, app(ty_Ratio, ed)) -> new_esEs17(xuu500000, xuu40000, ed) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bcf)) -> new_ltEs11(xuu62, xuu63, bcf) new_lt21(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_lt18(xuu621, xuu631, bha, bhb) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs10(xuu620, xuu630, fbd, fbe, fbf) new_ltEs23(xuu621, xuu631, app(ty_Maybe, fef)) -> new_ltEs15(xuu621, xuu631, fef) new_compare16(Just(xuu50000), Just(xuu4000), cbd) -> new_compare26(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, cbd), cbd) new_esEs33(xuu500001, xuu40001, app(app(ty_@2, cch), cda)) -> new_esEs21(xuu500001, xuu40001, cch, cda) new_esEs39(xuu114, xuu116, ty_Ordering) -> new_esEs12(xuu114, xuu116) new_ltEs22(xuu69, xuu70, app(ty_Maybe, ecf)) -> new_ltEs15(xuu69, xuu70, ecf) new_ltEs21(xuu76, xuu77, app(app(ty_@2, chh), daa)) -> new_ltEs17(xuu76, xuu77, chh, daa) new_esEs5(xuu50001, xuu4001, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs13(xuu50001, xuu4001, dfd, dfe, dff) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_[], egd), dgg) -> new_esEs25(xuu500000, xuu40000, egd) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_lt8(xuu101, xuu104) -> new_esEs12(new_compare8(xuu101, xuu104), LT) new_lt7(xuu101, xuu104, gb) -> new_esEs12(new_compare7(xuu101, xuu104, gb), LT) new_esEs4(xuu50002, xuu4002, app(ty_[], deh)) -> new_esEs25(xuu50002, xuu4002, deh) new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False new_ltEs22(xuu69, xuu70, app(app(ty_Either, ecd), ece)) -> new_ltEs14(xuu69, xuu70, ecd, ece) new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) new_esEs28(Left(xuu500000), Right(xuu40000), dgf, dgg) -> False new_esEs28(Right(xuu500000), Left(xuu40000), dgf, dgg) -> False new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Double) -> new_ltEs12(xuu620, xuu630) new_esEs31(xuu621, xuu631, ty_Char) -> new_esEs27(xuu621, xuu631) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_[], ehf)) -> new_esEs25(xuu500000, xuu40000, ehf) new_esEs34(xuu500000, xuu40000, app(ty_[], cee)) -> new_esEs25(xuu500000, xuu40000, cee) new_compare0(xuu5000, xuu400, ty_@0) -> new_compare8(xuu5000, xuu400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_[], cfh)) -> new_esEs25(xuu500000, xuu40000, cfh) new_esEs17(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), dge) -> new_asAs(new_esEs37(xuu500000, xuu40000, dge), new_esEs36(xuu500001, xuu40001, dge)) new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_lt20(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_lt12(xuu620, xuu630, bfc) new_primCompAux00(xuu37, xuu38, LT, bdd) -> LT new_esEs15(xuu500001, xuu40001, app(ty_[], ea)) -> new_esEs25(xuu500001, xuu40001, ea) new_ltEs23(xuu621, xuu631, app(app(ty_Either, fed), fee)) -> new_ltEs14(xuu621, xuu631, fed, fee) new_esEs7(xuu50000, xuu4000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(xuu50000, xuu4000, dhb, dhc, dhd) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs4(xuu69, xuu70) new_not(False) -> True new_ltEs20(xuu622, xuu632, ty_Bool) -> new_ltEs4(xuu622, xuu632) new_compare113(xuu188, xuu189, xuu190, xuu191, False, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, xuu193, cgc, cgd) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_@2, ega), egb), dgg) -> new_esEs21(xuu500000, xuu40000, ega, egb) new_ltEs20(xuu622, xuu632, app(app(ty_@2, cac), cad)) -> new_ltEs17(xuu622, xuu632, cac, cad) new_esEs5(xuu50001, xuu4001, app(ty_Ratio, dfc)) -> new_esEs17(xuu50001, xuu4001, dfc) new_ltEs20(xuu622, xuu632, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs10(xuu622, xuu632, bhd, bhe, bhf) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs8(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs4(xuu50002, xuu4002, ty_Double) -> new_esEs23(xuu50002, xuu4002) new_ltEs23(xuu621, xuu631, ty_@0) -> new_ltEs8(xuu621, xuu631) new_esEs29(xuu102, xuu105, ty_Float) -> new_esEs26(xuu102, xuu105) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bdb), bdc)) -> new_ltEs17(xuu62, xuu63, bdb, bdc) new_ltEs7(xuu62, xuu63, bcb) -> new_fsEs(new_compare7(xuu62, xuu63, bcb)) new_lt22(xuu620, xuu630, app(ty_Ratio, fda)) -> new_lt12(xuu620, xuu630, fda) new_lt5(xuu101, xuu104, app(ty_Ratio, gf)) -> new_lt12(xuu101, xuu104, gf) new_lt22(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_lt18(xuu620, xuu630, fde, fdf) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs10(xuu62, xuu63, bcc, bcd, bce) new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(xuu50000, xuu4000, dch, dda, ddb) new_esEs7(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs8(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs38(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_esEs21(xuu620, xuu630, fde, fdf) new_compare27(xuu69, xuu70, False, ebe, ebf) -> new_compare116(xuu69, xuu70, new_ltEs22(xuu69, xuu70, ebf), ebe, ebf) new_esEs30(xuu101, xuu104, ty_Char) -> new_esEs27(xuu101, xuu104) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs13(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, ebh), eca), ecb)) -> new_ltEs10(xuu69, xuu70, ebh, eca, ecb) new_esEs31(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_esEs28(xuu621, xuu631, bgf, bgg) new_compare13(False, False) -> EQ new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare13(True, True) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(xuu500001, xuu40001, app(app(ty_@2, df), dg)) -> new_esEs21(xuu500001, xuu40001, df, dg) new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_esEs29(xuu102, xuu105, ty_Char) -> new_esEs27(xuu102, xuu105) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Ratio, cfa)) -> new_esEs17(xuu500000, xuu40000, cfa) new_esEs7(xuu50000, xuu4000, app(ty_Ratio, dha)) -> new_esEs17(xuu50000, xuu4000, dha) new_esEs38(xuu620, xuu630, app(ty_[], fce)) -> new_esEs25(xuu620, xuu630, fce) new_lt6(xuu102, xuu105, app(ty_[], hd)) -> new_lt7(xuu102, xuu105, hd) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs4(xuu62, xuu63) new_esEs5(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, cbg, cbh, cca) new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) new_ltEs24(xuu115, xuu117, app(ty_Maybe, fhf)) -> new_ltEs15(xuu115, xuu117, fhf) new_ltEs24(xuu115, xuu117, ty_Char) -> new_ltEs13(xuu115, xuu117) new_esEs15(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_Double) -> new_lt4(xuu101, xuu104) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Ratio, efe), dgg) -> new_esEs17(xuu500000, xuu40000, efe) new_lt5(xuu101, xuu104, app(ty_[], gb)) -> new_lt7(xuu101, xuu104, gb) new_lt21(xuu621, xuu631, ty_Double) -> new_lt4(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_@0) -> new_ltEs8(xuu115, xuu117) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Maybe, fah), bch) -> new_ltEs15(xuu620, xuu630, fah) new_ltEs18(GT, EQ) -> False new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_compare18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), cbe, cbf) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, cbe), new_esEs10(xuu50001, xuu4001, cbf)), cbe, cbf) new_esEs24(Nothing, Nothing, ceh) -> True new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) new_ltEs10(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bcc, bcd, bce) -> new_pePe(new_lt20(xuu620, xuu630, bcc), new_asAs(new_esEs32(xuu620, xuu630, bcc), new_pePe(new_lt21(xuu621, xuu631, bcd), new_asAs(new_esEs31(xuu621, xuu631, bcd), new_ltEs20(xuu622, xuu632, bce))))) new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare17(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) new_esEs14(xuu500002, xuu40002, ty_Double) -> new_esEs23(xuu500002, xuu40002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt6(xuu102, xuu105, ty_Double) -> new_lt4(xuu102, xuu105) new_lt20(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_esEs8(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs10(xuu76, xuu77, cha, chb, chc) new_compare25(xuu62, xuu63, False, bbh, bca) -> new_compare111(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bbh), bbh, bca) new_primEqNat0(Zero, Zero) -> True new_esEs14(xuu500002, xuu40002, app(app(ty_@2, cc), cd)) -> new_esEs21(xuu500002, xuu40002, cc, cd) new_ltEs6(xuu103, xuu106, ty_Bool) -> new_ltEs4(xuu103, xuu106) new_ltEs20(xuu622, xuu632, ty_Int) -> new_ltEs9(xuu622, xuu632) new_esEs31(xuu621, xuu631, ty_Float) -> new_esEs26(xuu621, xuu631) new_lt23(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_lt18(xuu114, xuu116, fge, fgf) new_compare16(Nothing, Just(xuu4000), cbd) -> LT new_esEs24(Nothing, Just(xuu40000), ceh) -> False new_esEs24(Just(xuu500000), Nothing, ceh) -> False new_lt21(xuu621, xuu631, app(ty_[], bga)) -> new_lt7(xuu621, xuu631, bga) new_ltEs18(GT, GT) -> True new_asAs(False, xuu135) -> False new_esEs30(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_esEs28(xuu101, xuu104, gg, gh) new_lt21(xuu621, xuu631, app(ty_Ratio, bge)) -> new_lt12(xuu621, xuu631, bge) new_esEs14(xuu500002, xuu40002, app(ty_[], cf)) -> new_esEs25(xuu500002, xuu40002, cf) new_ltEs6(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(ty_Ratio, hh)) -> new_lt12(xuu102, xuu105, hh) new_esEs8(xuu50000, xuu4000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(xuu50000, xuu4000, ead, eae, eaf) new_ltEs23(xuu621, xuu631, ty_Char) -> new_ltEs13(xuu621, xuu631) new_esEs29(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_esEs28(xuu102, xuu105, baa, bab) The set Q consists of the following terms: new_esEs28(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, ty_Int) new_compare16(Just(x0), Just(x1), x2) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs28(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), ty_Double, x2) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs35(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Char) new_pePe(False, x0) new_primPlusNat1(Zero, Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(Right(x0), Right(x1), x2, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Nothing, Just(x0), x1) new_esEs24(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Int) new_esEs25([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs36(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare13(False, False) new_esEs28(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs11(x0, x1, x2) new_ltEs6(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_lt23(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, ty_Integer) new_esEs25(:(x0, x1), [], x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(True, True) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(GT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Ordering) new_esEs16(x0, x1, ty_Double) new_ltEs18(GT, GT) new_ltEs21(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare13(True, True) new_esEs19(x0, x1) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs30(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Char, x2) new_lt7(x0, x1, x2) new_esEs28(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs14(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_ltEs24(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_lt12(x0, x1, x2) new_ltEs23(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_ltEs24(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_compare16(Just(x0), Nothing, x1) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_compare0(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_lt6(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs31(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs25([], [], x0) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_not(True) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_lt10(x0, x1, x2, x3, x4) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(True, False) new_ltEs4(False, True) new_ltEs19(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs18(EQ, EQ) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs28(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Nothing, x0) new_esEs14(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(Left(x0), Left(x1), ty_@0, x2) new_lt5(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs25(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs21(x0, x1, ty_Float) new_ltEs4(False, False) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Bool) new_esEs28(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs38(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Integer) new_esEs18(@0, @0) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_ltEs7(x0, x1, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_Double) new_fsEs(x0) new_primEqNat0(Succ(x0), Zero) new_not(False) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_lt6(x0, x1, ty_Float) new_esEs28(Right(x0), Right(x1), x2, ty_@0) new_ltEs15(Nothing, Nothing, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_compare19(EQ, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Float) new_compare27(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare7([], :(x0, x1), x2) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare7(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, ty_@0) new_compare15(Left(x0), Left(x1), x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, EQ) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Integer) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_asAs(True, x0) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_esEs24(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_compare116(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs39(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs6(x0, x1, ty_@0) new_compare16(Nothing, Just(x0), x1) new_compare7([], [], x0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, LT, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs39(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_[], x2)) new_compare8(@0, @0) new_esEs4(x0, x1, ty_Integer) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_lt22(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs16(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(False, True) new_esEs22(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Int) new_sr(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Bool, x2) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt22(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare0(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs6(x0, x1, ty_Float) new_esEs15(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_pePe(True, x0) new_lt20(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_compare15(Left(x0), Right(x1), x2, x3) new_compare15(Right(x0), Left(x1), x2, x3) new_ltEs9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(LT, LT) new_esEs15(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt6(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1, x2) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Float) new_esEs16(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1) new_lt22(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_lt6(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs28(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs27(Char(x0), Char(x1)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare17(Integer(x0), Integer(x1)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs28(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(Just(x0), Just(x1), ty_Float) new_compare26(x0, x1, True, x2) new_compare7(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare15(Right(x0), Right(x1), x2, x3) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_compare116(x0, x1, False, x2, x3) new_esEs7(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs15(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_compare9(x0, x1) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs24(x0, x1, ty_Ordering) new_esEs28(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Bool) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs26(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, x0) new_compare0(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_lt22(x0, x1, ty_Integer) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt11(x0, x1) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_lt15(x0, x1, x2, x3) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Bool) new_esEs24(Nothing, Just(x0), x1) new_esEs39(x0, x1, ty_@0) new_esEs28(Right(x0), Right(x1), x2, ty_Double) new_esEs33(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs22(False, False) new_compare0(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Char) new_ltEs18(GT, LT) new_ltEs18(LT, GT) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs28(Left(x0), Right(x1), x2, x3) new_esEs28(Right(x0), Left(x1), x2, x3) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_compare13(True, False) new_compare13(False, True) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs24(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_ltEs22(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare114(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1) new_compare19(GT, GT) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs16(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Int) new_compare111(x0, x1, True, x2, x3) new_ltEs22(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare115(x0, x1, False, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. ---------------------------------------- (33) Complex Obligation (AND) ---------------------------------------- (34) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) The TRS R consists of the following rules: new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_@2, cfe), cff)) -> new_esEs21(xuu500000, xuu40000, cfe, cff) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs28(Left(xuu500000), Left(xuu40000), ty_Float, dgg) -> new_esEs26(xuu500000, xuu40000) new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Double, dgg) -> new_esEs23(xuu500000, xuu40000) new_pePe(True, xuu209) -> True new_ltEs20(xuu622, xuu632, app(ty_Maybe, cab)) -> new_ltEs15(xuu622, xuu632, cab) new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs38(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, app(app(ty_Either, dgc), dgd)) -> new_esEs28(xuu50001, xuu4001, dgc, dgd) new_esEs7(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_esEs21(xuu101, xuu104, hb, hc) new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs24(xuu115, xuu117, app(app(ty_Either, fhd), fhe)) -> new_ltEs14(xuu115, xuu117, fhd, fhe) new_esEs39(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare14(xuu37, xuu38) new_esEs5(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_compare111(xuu140, xuu141, True, cge, cgf) -> LT new_esEs14(xuu500002, xuu40002, ty_Int) -> new_esEs19(xuu500002, xuu40002) new_esEs11(xuu50000, xuu4000, app(app(ty_Either, efc), efd)) -> new_esEs28(xuu50000, xuu4000, efc, efd) new_esEs32(xuu620, xuu630, app(ty_[], beg)) -> new_esEs25(xuu620, xuu630, beg) new_compare7(:(xuu50000, xuu50001), :(xuu4000, xuu4001), cae) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, cae) new_compare0(xuu5000, xuu400, ty_Char) -> new_compare14(xuu5000, xuu400) new_esEs16(xuu500000, xuu40000, app(app(ty_Either, fd), ff)) -> new_esEs28(xuu500000, xuu40000, fd, ff) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs24(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs30(xuu101, xuu104, ty_Integer) -> new_esEs20(xuu101, xuu104) new_ltEs15(Just(xuu620), Just(xuu630), ty_Char) -> new_ltEs13(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) new_esEs31(xuu621, xuu631, app(ty_Ratio, bge)) -> new_esEs17(xuu621, xuu631, bge) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare19(xuu37, xuu38) new_lt23(xuu114, xuu116, ty_Bool) -> new_lt13(xuu114, xuu116) new_ltEs14(Left(xuu620), Left(xuu630), ty_@0, bch) -> new_ltEs8(xuu620, xuu630) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, cbg, cbh, cca) -> GT new_esEs31(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs13(xuu621, xuu631, bgb, bgc, bgd) new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) new_esEs14(xuu500002, xuu40002, app(ty_Ratio, bg)) -> new_esEs17(xuu500002, xuu40002, bg) new_lt23(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_lt15(xuu114, xuu116, fgb, fgc) new_esEs16(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Float) -> new_lt11(xuu101, xuu104) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Ratio, egg)) -> new_esEs17(xuu500000, xuu40000, egg) new_not(True) -> False new_lt22(xuu620, xuu630, app(ty_[], fce)) -> new_lt7(xuu620, xuu630, fce) new_lt22(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_lt23(xuu114, xuu116, ty_Int) -> new_lt9(xuu114, xuu116) new_esEs35(xuu500000, xuu40000, app(app(ty_@2, dag), dah)) -> new_esEs21(xuu500000, xuu40000, dag, dah) new_esEs14(xuu500002, xuu40002, ty_Bool) -> new_esEs22(xuu500002, xuu40002) new_esEs7(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_ltEs24(xuu115, xuu117, ty_Integer) -> new_ltEs16(xuu115, xuu117) new_primEqNat0(Succ(xuu5000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu400000)) -> False new_lt6(xuu102, xuu105, app(ty_Maybe, bac)) -> new_lt16(xuu102, xuu105, bac) new_ltEs24(xuu115, xuu117, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs10(xuu115, xuu117, fgh, fha, fhb) new_esEs39(xuu114, xuu116, app(ty_Ratio, fga)) -> new_esEs17(xuu114, xuu116, fga) new_esEs39(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_esEs24(xuu114, xuu116, fgd) new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ede), edf)) -> new_esEs21(xuu50001, xuu4001, ede, edf) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bde)) -> new_compare7(xuu37, xuu38, bde) new_compare115(xuu156, xuu157, False, dgh) -> GT new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare9(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) new_esEs9(xuu50000, xuu4000, app(ty_[], ddf)) -> new_esEs25(xuu50000, xuu4000, ddf) new_esEs29(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) new_esEs16(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_lt19(xuu101, xuu104) -> new_esEs12(new_compare19(xuu101, xuu104), LT) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu621, xuu631, ty_Float) -> new_ltEs5(xuu621, xuu631) new_compare17(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs13(xuu76, xuu77) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(xuu620, xuu630, fcc, fcd) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_lt6(xuu102, xuu105, ty_@0) -> new_lt8(xuu102, xuu105) new_compare28(xuu114, xuu115, xuu116, xuu117, False, ffc, ffd) -> new_compare113(xuu114, xuu115, xuu116, xuu117, new_lt23(xuu114, xuu116, ffc), new_asAs(new_esEs39(xuu114, xuu116, ffc), new_ltEs24(xuu115, xuu117, ffd)), ffc, ffd) new_compare116(xuu147, xuu148, True, ffa, ffb) -> LT new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT new_lt22(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt10(xuu620, xuu630, fcf, fcg, fch) new_compare9(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs8(xuu69, xuu70) new_esEs30(xuu101, xuu104, ty_@0) -> new_esEs18(xuu101, xuu104) new_esEs16(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs8(xuu50000, xuu4000, app(ty_Ratio, eac)) -> new_esEs17(xuu50000, xuu4000, eac) new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ced)) -> new_esEs24(xuu500000, xuu40000, ced) new_lt23(xuu114, xuu116, ty_Integer) -> new_lt17(xuu114, xuu116) new_primPlusNat1(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat1(xuu21200, xuu21100))) new_lt5(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_lt18(xuu101, xuu104, hb, hc) new_primCompAux00(xuu37, xuu38, GT, bdd) -> GT new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs7(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primCmpNat0(Zero, Succ(xuu40000)) -> LT new_esEs4(xuu50002, xuu4002, app(app(ty_@2, dee), def)) -> new_esEs21(xuu50002, xuu4002, dee, def) new_esEs29(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_esEs13(xuu102, xuu105, he, hf, hg) new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Maybe, ehe)) -> new_esEs24(xuu500000, xuu40000, ehe) new_ltEs23(xuu621, xuu631, ty_Int) -> new_ltEs9(xuu621, xuu631) new_lt20(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_ltEs23(xuu621, xuu631, app(ty_Ratio, fec)) -> new_ltEs11(xuu621, xuu631, fec) new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_compare15(Left(xuu50000), Right(xuu4000), cbb, cbc) -> LT new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) -> LT new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare8(xuu37, xuu38) new_esEs8(xuu50000, xuu4000, app(ty_Maybe, eba)) -> new_esEs24(xuu50000, xuu4000, eba) new_esEs29(xuu102, xuu105, app(ty_Maybe, bac)) -> new_esEs24(xuu102, xuu105, bac) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs6(xuu103, xuu106, app(ty_Maybe, bbe)) -> new_ltEs15(xuu103, xuu106, bbe) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, eff), efg), efh), dgg) -> new_esEs13(xuu500000, xuu40000, eff, efg, efh) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_Either, dcb), dcc)) -> new_ltEs14(xuu620, xuu630, dcb, dcc) new_esEs38(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_ltEs21(xuu76, xuu77, app(app(ty_Either, che), chf)) -> new_ltEs14(xuu76, xuu77, che, chf) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Ratio, dca)) -> new_ltEs11(xuu620, xuu630, dca) new_esEs33(xuu500001, xuu40001, app(app(ty_Either, cdd), cde)) -> new_esEs28(xuu500001, xuu40001, cdd, cde) new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu621, xuu631, ty_Ordering) -> new_ltEs18(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), ty_Double, bch) -> new_ltEs12(xuu620, xuu630) new_compare0(xuu5000, xuu400, app(ty_Ratio, cba)) -> new_compare12(xuu5000, xuu400, cba) new_esEs6(xuu50000, xuu4000, app(ty_Maybe, ceh)) -> new_esEs24(xuu50000, xuu4000, ceh) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs18(xuu62, xuu63) new_esEs31(xuu621, xuu631, ty_Double) -> new_esEs23(xuu621, xuu631) new_esEs31(xuu621, xuu631, ty_Bool) -> new_esEs22(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_Bool) -> new_ltEs4(xuu115, xuu117) new_lt5(xuu101, xuu104, ty_Bool) -> new_lt13(xuu101, xuu104) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs13(xuu62, xuu63) new_lt4(xuu101, xuu104) -> new_esEs12(new_compare6(xuu101, xuu104), LT) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_compare0(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Char) -> new_ltEs13(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_Either, fbh), fca)) -> new_ltEs14(xuu620, xuu630, fbh, fca) new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_lt6(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_lt10(xuu102, xuu105, he, hf, hg) new_esEs21(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), ccb, ccc) -> new_asAs(new_esEs34(xuu500000, xuu40000, ccb), new_esEs33(xuu500001, xuu40001, ccc)) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs16(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(ty_@2, ecg), ech)) -> new_ltEs17(xuu69, xuu70, ecg, ech) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Ordering, dgg) -> new_esEs12(xuu500000, xuu40000) new_ltEs18(EQ, LT) -> False new_esEs11(xuu50000, xuu4000, app(ty_Ratio, eec)) -> new_esEs17(xuu50000, xuu4000, eec) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero new_ltEs20(xuu622, xuu632, ty_Double) -> new_ltEs12(xuu622, xuu632) new_compare0(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_esEs34(xuu500000, xuu40000, app(ty_Ratio, cdf)) -> new_esEs17(xuu500000, xuu40000, cdf) new_esEs15(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs16(xuu500000, xuu40000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs13(xuu500000, xuu40000, ee, ef, eg) new_lt20(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_compare26(xuu76, xuu77, True, cgg) -> EQ new_lt23(xuu114, xuu116, ty_Float) -> new_lt11(xuu114, xuu116) new_ltEs6(xuu103, xuu106, app(ty_Ratio, bbb)) -> new_ltEs11(xuu103, xuu106, bbb) new_ltEs15(Just(xuu620), Just(xuu630), ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_compare15(Left(xuu50000), Left(xuu4000), cbb, cbc) -> new_compare25(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, cbb), cbb, cbc) new_esEs39(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs13(xuu114, xuu116, fff, ffg, ffh) new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_ltEs17(@2(xuu620, xuu621), @2(xuu630, xuu631), bdb, bdc) -> new_pePe(new_lt22(xuu620, xuu630, bdb), new_asAs(new_esEs38(xuu620, xuu630, bdb), new_ltEs23(xuu621, xuu631, bdc))) new_esEs38(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs38(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs6(xuu103, xuu106, ty_Ordering) -> new_ltEs18(xuu103, xuu106) new_lt12(xuu101, xuu104, gf) -> new_esEs12(new_compare12(xuu101, xuu104, gf), LT) new_esEs31(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_esEs24(xuu621, xuu631, bgh) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Maybe, fcb)) -> new_ltEs15(xuu620, xuu630, fcb) new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs16(xuu62, xuu63) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Char, dgg) -> new_esEs27(xuu500000, xuu40000) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bea)) -> new_compare12(xuu37, xuu38, bea) new_esEs7(xuu50000, xuu4000, app(app(ty_@2, dhe), dhf)) -> new_esEs21(xuu50000, xuu4000, dhe, dhf) new_ltEs19(xuu62, xuu63, app(app(ty_Either, bcg), bch)) -> new_ltEs14(xuu62, xuu63, bcg, bch) new_esEs14(xuu500002, xuu40002, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(xuu500002, xuu40002, bh, ca, cb) new_esEs6(xuu50000, xuu4000, app(ty_[], dab)) -> new_esEs25(xuu50000, xuu4000, dab) new_primPlusNat1(Succ(xuu21200), Zero) -> Succ(xuu21200) new_primPlusNat1(Zero, Succ(xuu21100)) -> Succ(xuu21100) new_compare19(EQ, GT) -> LT new_compare0(xuu5000, xuu400, app(ty_[], cae)) -> new_compare7(xuu5000, xuu400, cae) new_compare116(xuu147, xuu148, False, ffa, ffb) -> GT new_esEs39(xuu114, xuu116, ty_Bool) -> new_esEs22(xuu114, xuu116) new_lt22(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs29(xuu102, xuu105, ty_Bool) -> new_esEs22(xuu102, xuu105) new_ltEs24(xuu115, xuu117, app(app(ty_@2, fhg), fhh)) -> new_ltEs17(xuu115, xuu117, fhg, fhh) new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), caf, cag, cah) -> new_compare24(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, caf), new_asAs(new_esEs5(xuu50001, xuu4001, cag), new_esEs4(xuu50002, xuu4002, cah))), caf, cag, cah) new_ltEs14(Left(xuu620), Left(xuu630), app(app(app(ty_@3, fab), fac), fad), bch) -> new_ltEs10(xuu620, xuu630, fab, fac, fad) new_esEs32(xuu620, xuu630, app(ty_Maybe, bff)) -> new_esEs24(xuu620, xuu630, bff) new_ltEs20(xuu622, xuu632, ty_Float) -> new_ltEs5(xuu622, xuu632) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_Either, ehg), ehh)) -> new_esEs28(xuu500000, xuu40000, ehg, ehh) new_ltEs21(xuu76, xuu77, app(ty_Ratio, chd)) -> new_ltEs11(xuu76, xuu77, chd) new_compare7(:(xuu50000, xuu50001), [], cae) -> GT new_fsEs(xuu210) -> new_not(new_esEs12(xuu210, GT)) new_ltEs11(xuu62, xuu63, bcf) -> new_fsEs(new_compare12(xuu62, xuu63, bcf)) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) -> LT new_compare0(xuu5000, xuu400, app(app(ty_Either, cbb), cbc)) -> new_compare15(xuu5000, xuu400, cbb, cbc) new_esEs8(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt23(xuu114, xuu116, ty_Char) -> new_lt14(xuu114, xuu116) new_esEs16(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Integer, bch) -> new_ltEs16(xuu620, xuu630) new_esEs4(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_Float) -> new_esEs26(xuu500002, xuu40002) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs18(xuu76, xuu77) new_compare19(LT, GT) -> LT new_ltEs14(Left(xuu620), Right(xuu630), bcg, bch) -> True new_esEs32(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_lt21(xuu621, xuu631, ty_@0) -> new_lt8(xuu621, xuu631) new_compare19(LT, EQ) -> LT new_esEs29(xuu102, xuu105, ty_Ordering) -> new_esEs12(xuu102, xuu105) new_ltEs6(xuu103, xuu106, ty_Double) -> new_ltEs12(xuu103, xuu106) new_esEs7(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt17(xuu101, xuu104) -> new_esEs12(new_compare17(xuu101, xuu104), LT) new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ccd)) -> new_esEs17(xuu500001, xuu40001, ccd) new_compare113(xuu188, xuu189, xuu190, xuu191, True, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) new_lt20(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_@0) -> new_ltEs8(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs13(xuu500001, xuu40001, cce, ccf, ccg) new_lt21(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_lt15(xuu621, xuu631, bgf, bgg) new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_lt6(xuu102, xuu105, ty_Ordering) -> new_lt19(xuu102, xuu105) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bee), bef)) -> new_compare18(xuu37, xuu38, bee, bef) new_compare0(xuu5000, xuu400, app(app(ty_@2, cbe), cbf)) -> new_compare18(xuu5000, xuu400, cbe, cbf) new_lt6(xuu102, xuu105, ty_Char) -> new_lt14(xuu102, xuu105) new_esEs12(GT, GT) -> True new_esEs39(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_esEs28(xuu114, xuu116, fgb, fgc) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare17(xuu37, xuu38) new_ltEs15(Just(xuu620), Just(xuu630), app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs10(xuu620, xuu630, dbf, dbg, dbh) new_esEs29(xuu102, xuu105, app(ty_[], hd)) -> new_esEs25(xuu102, xuu105, hd) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_Either, cga), cgb)) -> new_esEs28(xuu500000, xuu40000, cga, cgb) new_esEs16(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs16(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_@2, dce), dcf)) -> new_ltEs17(xuu620, xuu630, dce, dcf) new_compare13(True, False) -> GT new_esEs7(xuu50000, xuu4000, app(app(ty_Either, eaa), eab)) -> new_esEs28(xuu50000, xuu4000, eaa, eab) new_esEs15(xuu500001, xuu40001, app(ty_Maybe, dh)) -> new_esEs24(xuu500001, xuu40001, dh) new_ltEs6(xuu103, xuu106, app(ty_[], baf)) -> new_ltEs7(xuu103, xuu106, baf) new_compare13(False, True) -> LT new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs37(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) new_esEs30(xuu101, xuu104, app(ty_[], gb)) -> new_esEs25(xuu101, xuu104, gb) new_compare15(Right(xuu50000), Right(xuu4000), cbb, cbc) -> new_compare27(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, cbc), cbb, cbc) new_esEs12(EQ, EQ) -> True new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, beb), bec)) -> new_compare15(xuu37, xuu38, beb, bec) new_esEs16(xuu500000, xuu40000, app(ty_Maybe, fb)) -> new_esEs24(xuu500000, xuu40000, fb) new_lt21(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_lt16(xuu621, xuu631, bgh) new_esEs14(xuu500002, xuu40002, app(app(ty_Either, cg), da)) -> new_esEs28(xuu500002, xuu40002, cg, da) new_esEs9(xuu50000, xuu4000, app(app(ty_@2, ddc), ddd)) -> new_esEs21(xuu50000, xuu4000, ddc, ddd) new_esEs37(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(ty_Maybe, deg)) -> new_esEs24(xuu50002, xuu4002, deg) new_compare0(xuu5000, xuu400, ty_Int) -> new_compare9(xuu5000, xuu400) new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare11(xuu37, xuu38) new_ltEs24(xuu115, xuu117, app(ty_[], fgg)) -> new_ltEs7(xuu115, xuu117, fgg) new_esEs36(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_compare14(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_lt21(xuu621, xuu631, ty_Int) -> new_lt9(xuu621, xuu631) new_esEs30(xuu101, xuu104, ty_Double) -> new_esEs23(xuu101, xuu104) new_esEs39(xuu114, xuu116, ty_Float) -> new_esEs26(xuu114, xuu116) new_compare19(GT, LT) -> GT new_esEs5(xuu50001, xuu4001, app(ty_Maybe, dga)) -> new_esEs24(xuu50001, xuu4001, dga) new_esEs25(:(xuu500000, xuu500001), [], dab) -> False new_esEs25([], :(xuu40000, xuu40001), dab) -> False new_lt23(xuu114, xuu116, ty_Ordering) -> new_lt19(xuu114, xuu116) new_lt22(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_lt15(xuu620, xuu630, fdb, fdc) new_esEs29(xuu102, xuu105, ty_Double) -> new_esEs23(xuu102, xuu105) new_ltEs16(xuu62, xuu63) -> new_fsEs(new_compare17(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_compare0(xuu5000, xuu400, ty_Bool) -> new_compare13(xuu5000, xuu400) new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_lt5(xuu101, xuu104, ty_Char) -> new_lt14(xuu101, xuu104) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs26(xuu500000, xuu40000) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, fg, fh, ga) -> EQ new_ltEs4(True, False) -> False new_esEs22(True, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bed)) -> new_compare16(xuu37, xuu38, bed) new_esEs5(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_esEs32(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_esEs38(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_esEs28(xuu620, xuu630, fdb, fdc) new_esEs31(xuu621, xuu631, ty_Integer) -> new_esEs20(xuu621, xuu631) new_lt22(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_ltEs24(xuu115, xuu117, app(ty_Ratio, fhc)) -> new_ltEs11(xuu115, xuu117, fhc) new_esEs36(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt22(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_lt16(xuu620, xuu630, fdd) new_esEs11(xuu50000, xuu4000, app(ty_Maybe, efa)) -> new_esEs24(xuu50000, xuu4000, efa) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_compare10(xuu37, xuu38, bdf, bdg, bdh) new_esEs8(xuu50000, xuu4000, app(app(ty_Either, ebc), ebd)) -> new_esEs28(xuu50000, xuu4000, ebc, ebd) new_ltEs4(False, False) -> True new_lt21(xuu621, xuu631, ty_Float) -> new_lt11(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Ratio, fae), bch) -> new_ltEs11(xuu620, xuu630, fae) new_esEs14(xuu500002, xuu40002, ty_Char) -> new_esEs27(xuu500002, xuu40002) new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs13(xuu500000, xuu40000, cdg, cdh, cea) new_esEs35(xuu500000, xuu40000, app(ty_Maybe, dba)) -> new_esEs24(xuu500000, xuu40000, dba) new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Integer) -> new_ltEs16(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Char, bch) -> new_ltEs13(xuu620, xuu630) new_compare19(LT, LT) -> EQ new_esEs25([], [], dab) -> True new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs13(xuu50000, xuu4000, eed, eee, eef) new_lt22(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_compare114(xuu188, xuu189, xuu190, xuu191, False, cgc, cgd) -> GT new_ltEs19(xuu62, xuu63, app(ty_[], bcb)) -> new_ltEs7(xuu62, xuu63, bcb) new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs8(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt15(xuu101, xuu104, gg, gh) -> new_esEs12(new_compare15(xuu101, xuu104, gg, gh), LT) new_lt20(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs15(Nothing, Just(xuu630), bda) -> True new_esEs31(xuu621, xuu631, ty_Int) -> new_esEs19(xuu621, xuu631) new_esEs32(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_esEs17(xuu620, xuu630, bfc) new_ltEs12(xuu62, xuu63) -> new_fsEs(new_compare6(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dgf), dgg)) -> new_esEs28(xuu50000, xuu4000, dgf, dgg) new_lt5(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_lt15(xuu101, xuu104, gg, gh) new_ltEs20(xuu622, xuu632, app(ty_[], bhc)) -> new_ltEs7(xuu622, xuu632, bhc) new_compare27(xuu69, xuu70, True, ebe, ebf) -> EQ new_ltEs14(Left(xuu620), Left(xuu630), ty_Bool, bch) -> new_ltEs4(xuu620, xuu630) new_lt20(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_primPlusNat0(Succ(xuu2220), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2220, xuu5000100))) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_[], fbc)) -> new_ltEs7(xuu620, xuu630, fbc) new_lt11(xuu101, xuu104) -> new_esEs12(new_compare11(xuu101, xuu104), LT) new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Float) -> new_ltEs5(xuu620, xuu630) new_lt5(xuu101, xuu104, ty_Int) -> new_lt9(xuu101, xuu104) new_esEs5(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_lt22(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_ltEs13(xuu62, xuu63) -> new_fsEs(new_compare14(xuu62, xuu63)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt18(xuu101, xuu104, hb, hc) -> new_esEs12(new_compare18(xuu101, xuu104, hb, hc), LT) new_lt20(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_lt15(xuu620, xuu630, bfd, bfe) new_ltEs23(xuu621, xuu631, app(ty_[], fdg)) -> new_ltEs7(xuu621, xuu631, fdg) new_esEs4(xuu50002, xuu4002, app(app(ty_Either, dfa), dfb)) -> new_esEs28(xuu50002, xuu4002, dfa, dfb) new_ltEs18(GT, LT) -> False new_esEs4(xuu50002, xuu4002, ty_@0) -> new_esEs18(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_@0) -> new_esEs18(xuu500002, xuu40002) new_lt5(xuu101, xuu104, ty_Integer) -> new_lt17(xuu101, xuu104) new_esEs38(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare13(xuu37, xuu38) new_lt5(xuu101, xuu104, app(ty_Maybe, ha)) -> new_lt16(xuu101, xuu104, ha) new_ltEs22(xuu69, xuu70, app(ty_[], ebg)) -> new_ltEs7(xuu69, xuu70, ebg) new_ltEs4(True, True) -> True new_lt6(xuu102, xuu105, ty_Integer) -> new_lt17(xuu102, xuu105) new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Double) -> new_ltEs12(xuu621, xuu631) new_ltEs15(Just(xuu620), Just(xuu630), ty_Int) -> new_ltEs9(xuu620, xuu630) new_lt14(xuu101, xuu104) -> new_esEs12(new_compare14(xuu101, xuu104), LT) new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_compare19(EQ, LT) -> GT new_esEs31(xuu621, xuu631, ty_Ordering) -> new_esEs12(xuu621, xuu631) new_ltEs21(xuu76, xuu77, app(ty_[], cgh)) -> new_ltEs7(xuu76, xuu77, cgh) new_lt20(xuu620, xuu630, app(ty_Maybe, bff)) -> new_lt16(xuu620, xuu630, bff) new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_lt21(xuu621, xuu631, ty_Integer) -> new_lt17(xuu621, xuu631) new_esEs14(xuu500002, xuu40002, app(ty_Maybe, ce)) -> new_esEs24(xuu500002, xuu40002, ce) new_esEs4(xuu50002, xuu4002, ty_Char) -> new_esEs27(xuu50002, xuu4002) new_esEs32(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs13(xuu620, xuu630, beh, bfa, bfb) new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_compare0(xuu5000, xuu400, app(app(app(ty_@3, caf), cag), cah)) -> new_compare10(xuu5000, xuu400, caf, cag, cah) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, fg, fh, ga) -> new_compare110(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt5(xuu101, xuu104, fg), new_asAs(new_esEs30(xuu101, xuu104, fg), new_pePe(new_lt6(xuu102, xuu105, fh), new_asAs(new_esEs29(xuu102, xuu105, fh), new_ltEs6(xuu103, xuu106, ga)))), fg, fh, ga) new_esEs30(xuu101, xuu104, ty_Ordering) -> new_esEs12(xuu101, xuu104) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare9(xuu37, xuu38) new_esEs29(xuu102, xuu105, app(ty_Ratio, hh)) -> new_esEs17(xuu102, xuu105, hh) new_lt20(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Ordering) -> new_lt19(xuu101, xuu104) new_esEs30(xuu101, xuu104, app(ty_Ratio, gf)) -> new_esEs17(xuu101, xuu104, gf) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs39(xuu114, xuu116, ty_Char) -> new_esEs27(xuu114, xuu116) new_compare7([], [], cae) -> EQ new_compare15(Right(xuu50000), Left(xuu4000), cbb, cbc) -> GT new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_esEs16(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt13(xuu101, xuu104) -> new_esEs12(new_compare13(xuu101, xuu104), LT) new_esEs15(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs15(Just(xuu620), Just(xuu630), ty_Bool) -> new_ltEs4(xuu620, xuu630) new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Double) -> new_ltEs12(xuu115, xuu117) new_ltEs6(xuu103, xuu106, app(app(ty_@2, bbf), bbg)) -> new_ltEs17(xuu103, xuu106, bbf, bbg) new_esEs10(xuu50001, xuu4001, app(ty_Ratio, eda)) -> new_esEs17(xuu50001, xuu4001, eda) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT new_esEs7(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) new_lt21(xuu621, xuu631, ty_Ordering) -> new_lt19(xuu621, xuu631) new_compare26(xuu76, xuu77, False, cgg) -> new_compare115(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgg), cgg) new_esEs32(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_esEs28(xuu620, xuu630, bfd, bfe) new_lt22(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_@2, fba), fbb), bch) -> new_ltEs17(xuu620, xuu630, fba, fbb) new_ltEs14(Right(xuu620), Left(xuu630), bcg, bch) -> False new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs13(xuu500000, xuu40000, egh, eha, ehb) new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT new_esEs32(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Int, bch) -> new_ltEs9(xuu620, xuu630) new_esEs16(xuu500000, xuu40000, app(ty_[], fc)) -> new_esEs25(xuu500000, xuu40000, fc) new_ltEs22(xuu69, xuu70, app(ty_Ratio, ecc)) -> new_ltEs11(xuu69, xuu70, ecc) new_esEs18(@0, @0) -> True new_compare19(EQ, EQ) -> EQ new_ltEs6(xuu103, xuu106, ty_Integer) -> new_ltEs16(xuu103, xuu106) new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Bool) -> new_ltEs4(xuu621, xuu631) new_ltEs6(xuu103, xuu106, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs10(xuu103, xuu106, bag, bah, bba) new_lt5(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xuu101, xuu104, gc, gd, ge) new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs13(xuu50001, xuu4001, edb, edc, edd) new_ltEs4(False, True) -> True new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(ty_[], dgb)) -> new_esEs25(xuu50001, xuu4001, dgb) new_lt23(xuu114, xuu116, ty_@0) -> new_lt8(xuu114, xuu116) new_ltEs8(xuu62, xuu63) -> new_fsEs(new_compare8(xuu62, xuu63)) new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_lt18(xuu102, xuu105, bad, bae) new_compare28(xuu114, xuu115, xuu116, xuu117, True, ffc, ffd) -> EQ new_ltEs20(xuu622, xuu632, app(app(ty_Either, bhh), caa)) -> new_ltEs14(xuu622, xuu632, bhh, caa) new_ltEs15(Just(xuu620), Just(xuu630), ty_Double) -> new_ltEs12(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs18(xuu69, xuu70) new_esEs4(xuu50002, xuu4002, app(ty_Ratio, dea)) -> new_esEs17(xuu50002, xuu4002, dea) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False new_esEs30(xuu101, xuu104, ty_Bool) -> new_esEs22(xuu101, xuu104) new_esEs7(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) new_esEs29(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_esEs21(xuu102, xuu105, bad, bae) new_compare19(GT, GT) -> EQ new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs13(xuu50002, xuu4002, deb, dec, ded) new_esEs39(xuu114, xuu116, ty_@0) -> new_esEs18(xuu114, xuu116) new_esEs38(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_esEs24(xuu620, xuu630, fdd) new_esEs23(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_lt22(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Maybe, cfg)) -> new_esEs24(xuu500000, xuu40000, cfg) new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, app(ty_Ratio, db)) -> new_esEs17(xuu500001, xuu40001, db) new_lt9(xuu101, xuu104) -> new_esEs12(new_compare9(xuu101, xuu104), LT) new_ltEs23(xuu621, xuu631, app(app(app(ty_@3, fdh), fea), feb)) -> new_ltEs10(xuu621, xuu631, fdh, fea, feb) new_lt6(xuu102, xuu105, ty_Int) -> new_lt9(xuu102, xuu105) new_esEs30(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs13(xuu101, xuu104, gc, gd, ge) new_esEs32(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_esEs38(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs9(xuu69, xuu70) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs13(xuu500000, xuu40000, cfb, cfc, cfd) new_esEs14(xuu500002, xuu40002, ty_Integer) -> new_esEs20(xuu500002, xuu40002) new_lt21(xuu621, xuu631, ty_Char) -> new_lt14(xuu621, xuu631) new_esEs34(xuu500000, xuu40000, app(app(ty_@2, ceb), cec)) -> new_esEs21(xuu500000, xuu40000, ceb, cec) new_lt23(xuu114, xuu116, app(ty_[], ffe)) -> new_lt7(xuu114, xuu116, ffe) new_esEs12(LT, LT) -> True new_esEs33(xuu500001, xuu40001, app(ty_[], cdc)) -> new_esEs25(xuu500001, xuu40001, cdc) new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ddg), ddh)) -> new_esEs28(xuu50000, xuu4000, ddg, ddh) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_[], dbe)) -> new_ltEs7(xuu620, xuu630, dbe) new_ltEs18(EQ, GT) -> True new_lt23(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_lt10(xuu114, xuu116, fff, ffg, ffh) new_esEs26(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_ltEs23(xuu621, xuu631, ty_Integer) -> new_ltEs16(xuu621, xuu631) new_esEs4(xuu50002, xuu4002, ty_Float) -> new_esEs26(xuu50002, xuu4002) new_lt10(xuu101, xuu104, gc, gd, ge) -> new_esEs12(new_compare10(xuu101, xuu104, gc, gd, ge), LT) new_lt6(xuu102, xuu105, ty_Float) -> new_lt11(xuu102, xuu105) new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs12(xuu76, xuu77) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Maybe, egc), dgg) -> new_esEs24(xuu500000, xuu40000, egc) new_lt6(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_lt15(xuu102, xuu105, baa, bab) new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs19(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) new_esEs39(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_esEs21(xuu114, xuu116, fge, fgf) new_esEs15(xuu500001, xuu40001, app(app(ty_Either, eb), ec)) -> new_esEs28(xuu500001, xuu40001, eb, ec) new_esEs29(xuu102, xuu105, ty_@0) -> new_esEs18(xuu102, xuu105) new_esEs11(xuu50000, xuu4000, app(ty_[], efb)) -> new_esEs25(xuu50000, xuu4000, efb) new_compare7([], :(xuu4000, xuu4001), cae) -> LT new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs13(xuu500000, xuu40000, dad, dae, daf) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(xuu500000), Zero) -> GT new_esEs13(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bd, be, bf) -> new_asAs(new_esEs16(xuu500000, xuu40000, bd), new_asAs(new_esEs15(xuu500001, xuu40001, be), new_esEs14(xuu500002, xuu40002, bf))) new_compare16(Just(xuu50000), Nothing, cbd) -> GT new_pePe(False, xuu209) -> xuu209 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_Either, ege), egf), dgg) -> new_esEs28(xuu500000, xuu40000, ege, egf) new_compare25(xuu62, xuu63, True, bbh, bca) -> EQ new_lt20(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu622, xuu632, ty_Char) -> new_ltEs13(xuu622, xuu632) new_ltEs18(LT, GT) -> True new_esEs15(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_@0) -> new_lt8(xuu101, xuu104) new_compare16(Nothing, Nothing, cbd) -> EQ new_esEs10(xuu50001, xuu4001, app(app(ty_Either, eea), eeb)) -> new_esEs28(xuu50001, xuu4001, eea, eeb) new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False new_ltEs20(xuu622, xuu632, ty_Integer) -> new_ltEs16(xuu622, xuu632) new_ltEs6(xuu103, xuu106, ty_@0) -> new_ltEs8(xuu103, xuu106) new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_lt16(xuu101, xuu104, ha) -> new_esEs12(new_compare16(xuu101, xuu104, ha), LT) new_esEs4(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) new_esEs15(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs9(xuu50000, xuu4000, app(ty_Ratio, dcg)) -> new_esEs17(xuu50000, xuu4000, dcg) new_ltEs15(Nothing, Nothing, bda) -> True new_ltEs15(Just(xuu620), Nothing, bda) -> False new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Float, bch) -> new_ltEs5(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(ty_Maybe, cdb)) -> new_esEs24(xuu500001, xuu40001, cdb) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs12(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Ratio, fbg)) -> new_ltEs11(xuu620, xuu630, fbg) new_ltEs21(xuu76, xuu77, app(ty_Maybe, chg)) -> new_ltEs15(xuu76, xuu77, chg) new_esEs10(xuu50001, xuu4001, app(ty_Maybe, edg)) -> new_esEs24(xuu50001, xuu4001, edg) new_lt23(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_lt16(xuu114, xuu116, fgd) new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs8(xuu76, xuu77) new_esEs8(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_lt21(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt10(xuu621, xuu631, bgb, bgc, bgd) new_esEs31(xuu621, xuu631, ty_@0) -> new_esEs18(xuu621, xuu631) new_esEs30(xuu101, xuu104, app(ty_Maybe, ha)) -> new_esEs24(xuu101, xuu104, ha) new_esEs8(xuu50000, xuu4000, app(app(ty_@2, eag), eah)) -> new_esEs21(xuu50000, xuu4000, eag, eah) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_[], faa), bch) -> new_ltEs7(xuu620, xuu630, faa) new_esEs20(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) new_esEs22(False, True) -> False new_esEs22(True, False) -> False new_esEs29(xuu102, xuu105, ty_Integer) -> new_esEs20(xuu102, xuu105) new_ltEs18(LT, LT) -> True new_ltEs23(xuu621, xuu631, app(app(ty_@2, feg), feh)) -> new_ltEs17(xuu621, xuu631, feg, feh) new_ltEs20(xuu622, xuu632, ty_Ordering) -> new_ltEs18(xuu622, xuu632) new_esEs8(xuu50000, xuu4000, app(ty_[], ebb)) -> new_esEs25(xuu50000, xuu4000, ebb) new_esEs38(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs13(xuu620, xuu630, fcf, fcg, fch) new_esEs15(xuu500001, xuu40001, app(app(app(ty_@3, dc), dd), de)) -> new_esEs13(xuu500001, xuu40001, dc, dd, de) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_Either, faf), fag), bch) -> new_ltEs14(xuu620, xuu630, faf, fag) new_ltEs14(Left(xuu620), Left(xuu630), ty_Ordering, bch) -> new_ltEs18(xuu620, xuu630) new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs15(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_ltEs6(xuu103, xuu106, app(app(ty_Either, bbc), bbd)) -> new_ltEs14(xuu103, xuu106, bbc, bbd) new_ltEs9(xuu62, xuu63) -> new_fsEs(new_compare9(xuu62, xuu63)) new_ltEs18(EQ, EQ) -> True new_esEs6(xuu50000, xuu4000, app(app(ty_@2, ccb), ccc)) -> new_esEs21(xuu50000, xuu4000, ccb, ccc) new_esEs4(xuu50002, xuu4002, ty_Bool) -> new_esEs22(xuu50002, xuu4002) new_lt22(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_esEs22(False, False) -> True new_esEs38(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) new_esEs25(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dab) -> new_asAs(new_esEs35(xuu500000, xuu40000, dab), new_esEs25(xuu500001, xuu40001, dab)) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs31(xuu621, xuu631, app(ty_[], bga)) -> new_esEs25(xuu621, xuu631, bga) new_esEs35(xuu500000, xuu40000, app(ty_Ratio, dac)) -> new_esEs17(xuu500000, xuu40000, dac) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_lt21(xuu621, xuu631, ty_Bool) -> new_lt13(xuu621, xuu631) new_esEs5(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_esEs39(xuu114, xuu116, ty_Integer) -> new_esEs20(xuu114, xuu116) new_esEs32(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare0(xuu5000, xuu400, ty_Float) -> new_compare11(xuu5000, xuu400) new_compare0(xuu5000, xuu400, app(ty_Maybe, cbd)) -> new_compare16(xuu5000, xuu400, cbd) new_ltEs18(LT, EQ) -> True new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs8(xuu62, xuu63) new_ltEs19(xuu62, xuu63, app(ty_Maybe, bda)) -> new_ltEs15(xuu62, xuu63, bda) new_compare115(xuu156, xuu157, True, dgh) -> LT new_lt6(xuu102, xuu105, ty_Bool) -> new_lt13(xuu102, xuu105) new_esEs8(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, app(app(ty_Either, dbc), dbd)) -> new_esEs28(xuu500000, xuu40000, dbc, dbd) new_esEs7(xuu50000, xuu4000, app(ty_[], dhh)) -> new_esEs25(xuu50000, xuu4000, dhh) new_ltEs15(Just(xuu620), Just(xuu630), ty_@0) -> new_ltEs8(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Maybe, dcd)) -> new_ltEs15(xuu620, xuu630, dcd) new_ltEs15(Just(xuu620), Just(xuu630), ty_Float) -> new_ltEs5(xuu620, xuu630) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs5(xuu62, xuu63) new_esEs31(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_esEs21(xuu621, xuu631, bha, bhb) new_esEs7(xuu50000, xuu4000, app(ty_Maybe, dhg)) -> new_esEs24(xuu50000, xuu4000, dhg) new_ltEs6(xuu103, xuu106, ty_Char) -> new_ltEs13(xuu103, xuu106) new_esEs16(xuu500000, xuu40000, app(app(ty_@2, eh), fa)) -> new_esEs21(xuu500000, xuu40000, eh, fa) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_@2, ehc), ehd)) -> new_esEs21(xuu500000, xuu40000, ehc, ehd) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Bool, dgg) -> new_esEs22(xuu500000, xuu40000) new_lt20(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt10(xuu620, xuu630, beh, bfa, bfb) new_esEs28(Left(xuu500000), Left(xuu40000), ty_@0, dgg) -> new_esEs18(xuu500000, xuu40000) new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_esEs5(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_ltEs20(xuu622, xuu632, ty_@0) -> new_ltEs8(xuu622, xuu632) new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs16(xuu76, xuu77) new_compare19(GT, EQ) -> GT new_esEs16(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs39(xuu114, xuu116, app(ty_[], ffe)) -> new_esEs25(xuu114, xuu116, ffe) new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dge)) -> new_esEs17(xuu50000, xuu4000, dge) new_ltEs24(xuu115, xuu117, ty_Ordering) -> new_ltEs18(xuu115, xuu117) new_esEs14(xuu500002, xuu40002, ty_Ordering) -> new_esEs12(xuu500002, xuu40002) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs9(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, bd), be), bf)) -> new_esEs13(xuu50000, xuu4000, bd, be, bf) new_esEs7(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(ty_Maybe, dde)) -> new_esEs24(xuu50000, xuu4000, dde) new_esEs8(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt20(xuu620, xuu630, app(ty_[], beg)) -> new_lt7(xuu620, xuu630, beg) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Integer, dgg) -> new_esEs20(xuu500000, xuu40000) new_asAs(True, xuu135) -> xuu135 new_esEs24(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_esEs21(xuu620, xuu630, bfg, bfh) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Int, dgg) -> new_esEs19(xuu500000, xuu40000) new_esEs34(xuu500000, xuu40000, app(app(ty_Either, cef), ceg)) -> new_esEs28(xuu500000, xuu40000, cef, ceg) new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_@2, dfg), dfh)) -> new_esEs21(xuu50001, xuu4001, dfg, dfh) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs27(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs5(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Int) -> new_ltEs9(xuu620, xuu630) new_esEs39(xuu114, xuu116, ty_Double) -> new_esEs23(xuu114, xuu116) new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) new_compare111(xuu140, xuu141, False, cge, cgf) -> GT new_ltEs20(xuu622, xuu632, app(ty_Ratio, bhg)) -> new_ltEs11(xuu622, xuu632, bhg) new_ltEs15(Just(xuu620), Just(xuu630), ty_Integer) -> new_ltEs16(xuu620, xuu630) new_esEs30(xuu101, xuu104, ty_Float) -> new_esEs26(xuu101, xuu104) new_compare0(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs4(xuu76, xuu77) new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) new_esEs38(xuu620, xuu630, app(ty_Ratio, fda)) -> new_esEs17(xuu620, xuu630, fda) new_primMulNat0(Zero, Zero) -> Zero new_esEs11(xuu50000, xuu4000, app(app(ty_@2, eeg), eeh)) -> new_esEs21(xuu50000, xuu4000, eeg, eeh) new_ltEs5(xuu62, xuu63) -> new_fsEs(new_compare11(xuu62, xuu63)) new_lt20(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_lt18(xuu620, xuu630, bfg, bfh) new_esEs10(xuu50001, xuu4001, app(ty_[], edh)) -> new_esEs25(xuu50001, xuu4001, edh) new_esEs35(xuu500000, xuu40000, app(ty_[], dbb)) -> new_esEs25(xuu500000, xuu40000, dbb) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs5(xuu69, xuu70) new_lt23(xuu114, xuu116, ty_Double) -> new_lt4(xuu114, xuu116) new_esEs4(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_lt23(xuu114, xuu116, app(ty_Ratio, fga)) -> new_lt12(xuu114, xuu116, fga) new_esEs16(xuu500000, xuu40000, app(ty_Ratio, ed)) -> new_esEs17(xuu500000, xuu40000, ed) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bcf)) -> new_ltEs11(xuu62, xuu63, bcf) new_lt21(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_lt18(xuu621, xuu631, bha, bhb) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs10(xuu620, xuu630, fbd, fbe, fbf) new_ltEs23(xuu621, xuu631, app(ty_Maybe, fef)) -> new_ltEs15(xuu621, xuu631, fef) new_compare16(Just(xuu50000), Just(xuu4000), cbd) -> new_compare26(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, cbd), cbd) new_esEs33(xuu500001, xuu40001, app(app(ty_@2, cch), cda)) -> new_esEs21(xuu500001, xuu40001, cch, cda) new_esEs39(xuu114, xuu116, ty_Ordering) -> new_esEs12(xuu114, xuu116) new_ltEs22(xuu69, xuu70, app(ty_Maybe, ecf)) -> new_ltEs15(xuu69, xuu70, ecf) new_ltEs21(xuu76, xuu77, app(app(ty_@2, chh), daa)) -> new_ltEs17(xuu76, xuu77, chh, daa) new_esEs5(xuu50001, xuu4001, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs13(xuu50001, xuu4001, dfd, dfe, dff) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_[], egd), dgg) -> new_esEs25(xuu500000, xuu40000, egd) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_lt8(xuu101, xuu104) -> new_esEs12(new_compare8(xuu101, xuu104), LT) new_lt7(xuu101, xuu104, gb) -> new_esEs12(new_compare7(xuu101, xuu104, gb), LT) new_esEs4(xuu50002, xuu4002, app(ty_[], deh)) -> new_esEs25(xuu50002, xuu4002, deh) new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False new_ltEs22(xuu69, xuu70, app(app(ty_Either, ecd), ece)) -> new_ltEs14(xuu69, xuu70, ecd, ece) new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) new_esEs28(Left(xuu500000), Right(xuu40000), dgf, dgg) -> False new_esEs28(Right(xuu500000), Left(xuu40000), dgf, dgg) -> False new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Double) -> new_ltEs12(xuu620, xuu630) new_esEs31(xuu621, xuu631, ty_Char) -> new_esEs27(xuu621, xuu631) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_[], ehf)) -> new_esEs25(xuu500000, xuu40000, ehf) new_esEs34(xuu500000, xuu40000, app(ty_[], cee)) -> new_esEs25(xuu500000, xuu40000, cee) new_compare0(xuu5000, xuu400, ty_@0) -> new_compare8(xuu5000, xuu400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_[], cfh)) -> new_esEs25(xuu500000, xuu40000, cfh) new_esEs17(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), dge) -> new_asAs(new_esEs37(xuu500000, xuu40000, dge), new_esEs36(xuu500001, xuu40001, dge)) new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_lt20(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_lt12(xuu620, xuu630, bfc) new_primCompAux00(xuu37, xuu38, LT, bdd) -> LT new_esEs15(xuu500001, xuu40001, app(ty_[], ea)) -> new_esEs25(xuu500001, xuu40001, ea) new_ltEs23(xuu621, xuu631, app(app(ty_Either, fed), fee)) -> new_ltEs14(xuu621, xuu631, fed, fee) new_esEs7(xuu50000, xuu4000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(xuu50000, xuu4000, dhb, dhc, dhd) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs4(xuu69, xuu70) new_not(False) -> True new_ltEs20(xuu622, xuu632, ty_Bool) -> new_ltEs4(xuu622, xuu632) new_compare113(xuu188, xuu189, xuu190, xuu191, False, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, xuu193, cgc, cgd) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_@2, ega), egb), dgg) -> new_esEs21(xuu500000, xuu40000, ega, egb) new_ltEs20(xuu622, xuu632, app(app(ty_@2, cac), cad)) -> new_ltEs17(xuu622, xuu632, cac, cad) new_esEs5(xuu50001, xuu4001, app(ty_Ratio, dfc)) -> new_esEs17(xuu50001, xuu4001, dfc) new_ltEs20(xuu622, xuu632, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs10(xuu622, xuu632, bhd, bhe, bhf) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs8(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs4(xuu50002, xuu4002, ty_Double) -> new_esEs23(xuu50002, xuu4002) new_ltEs23(xuu621, xuu631, ty_@0) -> new_ltEs8(xuu621, xuu631) new_esEs29(xuu102, xuu105, ty_Float) -> new_esEs26(xuu102, xuu105) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bdb), bdc)) -> new_ltEs17(xuu62, xuu63, bdb, bdc) new_ltEs7(xuu62, xuu63, bcb) -> new_fsEs(new_compare7(xuu62, xuu63, bcb)) new_lt22(xuu620, xuu630, app(ty_Ratio, fda)) -> new_lt12(xuu620, xuu630, fda) new_lt5(xuu101, xuu104, app(ty_Ratio, gf)) -> new_lt12(xuu101, xuu104, gf) new_lt22(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_lt18(xuu620, xuu630, fde, fdf) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs10(xuu62, xuu63, bcc, bcd, bce) new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(xuu50000, xuu4000, dch, dda, ddb) new_esEs7(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs8(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs38(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_esEs21(xuu620, xuu630, fde, fdf) new_compare27(xuu69, xuu70, False, ebe, ebf) -> new_compare116(xuu69, xuu70, new_ltEs22(xuu69, xuu70, ebf), ebe, ebf) new_esEs30(xuu101, xuu104, ty_Char) -> new_esEs27(xuu101, xuu104) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs13(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, ebh), eca), ecb)) -> new_ltEs10(xuu69, xuu70, ebh, eca, ecb) new_esEs31(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_esEs28(xuu621, xuu631, bgf, bgg) new_compare13(False, False) -> EQ new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare13(True, True) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(xuu500001, xuu40001, app(app(ty_@2, df), dg)) -> new_esEs21(xuu500001, xuu40001, df, dg) new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_esEs29(xuu102, xuu105, ty_Char) -> new_esEs27(xuu102, xuu105) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Ratio, cfa)) -> new_esEs17(xuu500000, xuu40000, cfa) new_esEs7(xuu50000, xuu4000, app(ty_Ratio, dha)) -> new_esEs17(xuu50000, xuu4000, dha) new_esEs38(xuu620, xuu630, app(ty_[], fce)) -> new_esEs25(xuu620, xuu630, fce) new_lt6(xuu102, xuu105, app(ty_[], hd)) -> new_lt7(xuu102, xuu105, hd) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs4(xuu62, xuu63) new_esEs5(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, cbg, cbh, cca) new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) new_ltEs24(xuu115, xuu117, app(ty_Maybe, fhf)) -> new_ltEs15(xuu115, xuu117, fhf) new_ltEs24(xuu115, xuu117, ty_Char) -> new_ltEs13(xuu115, xuu117) new_esEs15(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_Double) -> new_lt4(xuu101, xuu104) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Ratio, efe), dgg) -> new_esEs17(xuu500000, xuu40000, efe) new_lt5(xuu101, xuu104, app(ty_[], gb)) -> new_lt7(xuu101, xuu104, gb) new_lt21(xuu621, xuu631, ty_Double) -> new_lt4(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_@0) -> new_ltEs8(xuu115, xuu117) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Maybe, fah), bch) -> new_ltEs15(xuu620, xuu630, fah) new_ltEs18(GT, EQ) -> False new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_compare18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), cbe, cbf) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, cbe), new_esEs10(xuu50001, xuu4001, cbf)), cbe, cbf) new_esEs24(Nothing, Nothing, ceh) -> True new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) new_ltEs10(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bcc, bcd, bce) -> new_pePe(new_lt20(xuu620, xuu630, bcc), new_asAs(new_esEs32(xuu620, xuu630, bcc), new_pePe(new_lt21(xuu621, xuu631, bcd), new_asAs(new_esEs31(xuu621, xuu631, bcd), new_ltEs20(xuu622, xuu632, bce))))) new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare17(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) new_esEs14(xuu500002, xuu40002, ty_Double) -> new_esEs23(xuu500002, xuu40002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt6(xuu102, xuu105, ty_Double) -> new_lt4(xuu102, xuu105) new_lt20(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_esEs8(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs10(xuu76, xuu77, cha, chb, chc) new_compare25(xuu62, xuu63, False, bbh, bca) -> new_compare111(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bbh), bbh, bca) new_primEqNat0(Zero, Zero) -> True new_esEs14(xuu500002, xuu40002, app(app(ty_@2, cc), cd)) -> new_esEs21(xuu500002, xuu40002, cc, cd) new_ltEs6(xuu103, xuu106, ty_Bool) -> new_ltEs4(xuu103, xuu106) new_ltEs20(xuu622, xuu632, ty_Int) -> new_ltEs9(xuu622, xuu632) new_esEs31(xuu621, xuu631, ty_Float) -> new_esEs26(xuu621, xuu631) new_lt23(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_lt18(xuu114, xuu116, fge, fgf) new_compare16(Nothing, Just(xuu4000), cbd) -> LT new_esEs24(Nothing, Just(xuu40000), ceh) -> False new_esEs24(Just(xuu500000), Nothing, ceh) -> False new_lt21(xuu621, xuu631, app(ty_[], bga)) -> new_lt7(xuu621, xuu631, bga) new_ltEs18(GT, GT) -> True new_asAs(False, xuu135) -> False new_esEs30(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_esEs28(xuu101, xuu104, gg, gh) new_lt21(xuu621, xuu631, app(ty_Ratio, bge)) -> new_lt12(xuu621, xuu631, bge) new_esEs14(xuu500002, xuu40002, app(ty_[], cf)) -> new_esEs25(xuu500002, xuu40002, cf) new_ltEs6(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(ty_Ratio, hh)) -> new_lt12(xuu102, xuu105, hh) new_esEs8(xuu50000, xuu4000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(xuu50000, xuu4000, ead, eae, eaf) new_ltEs23(xuu621, xuu631, ty_Char) -> new_ltEs13(xuu621, xuu631) new_esEs29(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_esEs28(xuu102, xuu105, baa, bab) The set Q consists of the following terms: new_esEs28(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, ty_Int) new_compare16(Just(x0), Just(x1), x2) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs28(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), ty_Double, x2) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs35(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Char) new_pePe(False, x0) new_primPlusNat1(Zero, Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(Right(x0), Right(x1), x2, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Nothing, Just(x0), x1) new_esEs24(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Int) new_esEs25([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs36(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare13(False, False) new_esEs28(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs11(x0, x1, x2) new_ltEs6(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_lt23(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, ty_Integer) new_esEs25(:(x0, x1), [], x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(True, True) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(GT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Ordering) new_esEs16(x0, x1, ty_Double) new_ltEs18(GT, GT) new_ltEs21(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare13(True, True) new_esEs19(x0, x1) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs30(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Char, x2) new_lt7(x0, x1, x2) new_esEs28(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs14(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_ltEs24(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_lt12(x0, x1, x2) new_ltEs23(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_ltEs24(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_compare16(Just(x0), Nothing, x1) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_compare0(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_lt6(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs31(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs25([], [], x0) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_not(True) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_lt10(x0, x1, x2, x3, x4) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(True, False) new_ltEs4(False, True) new_ltEs19(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs18(EQ, EQ) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs28(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Nothing, x0) new_esEs14(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(Left(x0), Left(x1), ty_@0, x2) new_lt5(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs25(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs21(x0, x1, ty_Float) new_ltEs4(False, False) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Bool) new_esEs28(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs38(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Integer) new_esEs18(@0, @0) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_ltEs7(x0, x1, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_Double) new_fsEs(x0) new_primEqNat0(Succ(x0), Zero) new_not(False) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_lt6(x0, x1, ty_Float) new_esEs28(Right(x0), Right(x1), x2, ty_@0) new_ltEs15(Nothing, Nothing, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_compare19(EQ, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Float) new_compare27(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare7([], :(x0, x1), x2) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare7(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, ty_@0) new_compare15(Left(x0), Left(x1), x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, EQ) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Integer) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_asAs(True, x0) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_esEs24(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_compare116(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs39(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs6(x0, x1, ty_@0) new_compare16(Nothing, Just(x0), x1) new_compare7([], [], x0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, LT, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs39(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_[], x2)) new_compare8(@0, @0) new_esEs4(x0, x1, ty_Integer) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_lt22(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs16(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(False, True) new_esEs22(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Int) new_sr(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Bool, x2) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt22(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare0(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs6(x0, x1, ty_Float) new_esEs15(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_pePe(True, x0) new_lt20(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_compare15(Left(x0), Right(x1), x2, x3) new_compare15(Right(x0), Left(x1), x2, x3) new_ltEs9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(LT, LT) new_esEs15(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt6(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1, x2) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Float) new_esEs16(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1) new_lt22(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_lt6(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs28(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs27(Char(x0), Char(x1)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare17(Integer(x0), Integer(x1)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs28(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(Just(x0), Just(x1), ty_Float) new_compare26(x0, x1, True, x2) new_compare7(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare15(Right(x0), Right(x1), x2, x3) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_compare116(x0, x1, False, x2, x3) new_esEs7(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs15(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_compare9(x0, x1) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs24(x0, x1, ty_Ordering) new_esEs28(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Bool) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs26(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, x0) new_compare0(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_lt22(x0, x1, ty_Integer) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt11(x0, x1) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_lt15(x0, x1, x2, x3) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Bool) new_esEs24(Nothing, Just(x0), x1) new_esEs39(x0, x1, ty_@0) new_esEs28(Right(x0), Right(x1), x2, ty_Double) new_esEs33(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs22(False, False) new_compare0(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Char) new_ltEs18(GT, LT) new_ltEs18(LT, GT) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs28(Left(x0), Right(x1), x2, x3) new_esEs28(Right(x0), Left(x1), x2, x3) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_compare13(True, False) new_compare13(False, True) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs24(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_ltEs22(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare114(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1) new_compare19(GT, GT) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs16(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Int) new_compare111(x0, x1, True, x2, x3) new_ltEs22(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare115(x0, x1, False, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 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_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), [], xuu501, bb, bc) -> new_addToFM_C(xuu3, xuu43, [], xuu501, bb, bc) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6 ---------------------------------------- (36) YES ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The TRS R consists of the following rules: new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_@2, cfe), cff)) -> new_esEs21(xuu500000, xuu40000, cfe, cff) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs28(Left(xuu500000), Left(xuu40000), ty_Float, dgg) -> new_esEs26(xuu500000, xuu40000) new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb) -> new_primCompAux00(xuu5001, xuu401, new_compare0(xuu5000, xuu400, bb), app(ty_[], bb)) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Double, dgg) -> new_esEs23(xuu500000, xuu40000) new_pePe(True, xuu209) -> True new_ltEs20(xuu622, xuu632, app(ty_Maybe, cab)) -> new_ltEs15(xuu622, xuu632, cab) new_esEs34(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs38(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, app(app(ty_Either, dgc), dgd)) -> new_esEs28(xuu50001, xuu4001, dgc, dgd) new_esEs7(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_esEs21(xuu101, xuu104, hb, hc) new_esEs11(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_ltEs6(xuu103, xuu106, ty_Float) -> new_ltEs5(xuu103, xuu106) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs24(xuu115, xuu117, app(app(ty_Either, fhd), fhe)) -> new_ltEs14(xuu115, xuu117, fhd, fhe) new_esEs39(xuu114, xuu116, ty_Int) -> new_esEs19(xuu114, xuu116) new_esEs11(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_primCompAux00(xuu37, xuu38, EQ, ty_Char) -> new_compare14(xuu37, xuu38) new_esEs5(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_compare111(xuu140, xuu141, True, cge, cgf) -> LT new_esEs14(xuu500002, xuu40002, ty_Int) -> new_esEs19(xuu500002, xuu40002) new_esEs11(xuu50000, xuu4000, app(app(ty_Either, efc), efd)) -> new_esEs28(xuu50000, xuu4000, efc, efd) new_esEs32(xuu620, xuu630, app(ty_[], beg)) -> new_esEs25(xuu620, xuu630, beg) new_compare7(:(xuu50000, xuu50001), :(xuu4000, xuu4001), cae) -> new_primCompAux1(xuu50000, xuu4000, xuu50001, xuu4001, cae) new_compare0(xuu5000, xuu400, ty_Char) -> new_compare14(xuu5000, xuu400) new_esEs16(xuu500000, xuu40000, app(app(ty_Either, fd), ff)) -> new_esEs28(xuu500000, xuu40000, fd, ff) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs24(Just(xuu500000), Just(xuu40000), ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs30(xuu101, xuu104, ty_Integer) -> new_esEs20(xuu101, xuu104) new_ltEs15(Just(xuu620), Just(xuu630), ty_Char) -> new_ltEs13(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) new_esEs31(xuu621, xuu631, app(ty_Ratio, bge)) -> new_esEs17(xuu621, xuu631, bge) new_primCompAux00(xuu37, xuu38, EQ, ty_Ordering) -> new_compare19(xuu37, xuu38) new_lt23(xuu114, xuu116, ty_Bool) -> new_lt13(xuu114, xuu116) new_ltEs14(Left(xuu620), Left(xuu630), ty_@0, bch) -> new_ltEs8(xuu620, xuu630) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, cbg, cbh, cca) -> GT new_esEs31(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs13(xuu621, xuu631, bgb, bgc, bgd) new_primEqNat0(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat0(xuu5000000, xuu400000) new_esEs14(xuu500002, xuu40002, app(ty_Ratio, bg)) -> new_esEs17(xuu500002, xuu40002, bg) new_lt23(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_lt15(xuu114, xuu116, fgb, fgc) new_esEs16(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Float) -> new_lt11(xuu101, xuu104) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Ratio, egg)) -> new_esEs17(xuu500000, xuu40000, egg) new_not(True) -> False new_lt22(xuu620, xuu630, app(ty_[], fce)) -> new_lt7(xuu620, xuu630, fce) new_lt22(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_lt23(xuu114, xuu116, ty_Int) -> new_lt9(xuu114, xuu116) new_esEs35(xuu500000, xuu40000, app(app(ty_@2, dag), dah)) -> new_esEs21(xuu500000, xuu40000, dag, dah) new_esEs14(xuu500002, xuu40002, ty_Bool) -> new_esEs22(xuu500002, xuu40002) new_esEs7(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_ltEs24(xuu115, xuu117, ty_Integer) -> new_ltEs16(xuu115, xuu117) new_primEqNat0(Succ(xuu5000000), Zero) -> False new_primEqNat0(Zero, Succ(xuu400000)) -> False new_lt6(xuu102, xuu105, app(ty_Maybe, bac)) -> new_lt16(xuu102, xuu105, bac) new_ltEs24(xuu115, xuu117, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs10(xuu115, xuu117, fgh, fha, fhb) new_esEs39(xuu114, xuu116, app(ty_Ratio, fga)) -> new_esEs17(xuu114, xuu116, fga) new_esEs39(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_esEs24(xuu114, xuu116, fgd) new_esEs10(xuu50001, xuu4001, app(app(ty_@2, ede), edf)) -> new_esEs21(xuu50001, xuu4001, ede, edf) new_primCompAux00(xuu37, xuu38, EQ, app(ty_[], bde)) -> new_compare7(xuu37, xuu38, bde) new_compare115(xuu156, xuu157, False, dgh) -> GT new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Int) -> new_compare9(new_sr(xuu50000, xuu4001), new_sr(xuu4000, xuu50001)) new_primCompAux00(xuu37, xuu38, EQ, ty_Double) -> new_compare6(xuu37, xuu38) new_esEs9(xuu50000, xuu4000, app(ty_[], ddf)) -> new_esEs25(xuu50000, xuu4000, ddf) new_esEs29(xuu102, xuu105, ty_Int) -> new_esEs19(xuu102, xuu105) new_esEs16(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_lt19(xuu101, xuu104) -> new_esEs12(new_compare19(xuu101, xuu104), LT) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs12(xuu69, xuu70) new_ltEs23(xuu621, xuu631, ty_Float) -> new_ltEs5(xuu621, xuu631) new_compare17(Integer(xuu50000), Integer(xuu4000)) -> new_primCmpInt(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, ty_Char) -> new_ltEs13(xuu76, xuu77) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_@2, fcc), fcd)) -> new_ltEs17(xuu620, xuu630, fcc, fcd) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_lt6(xuu102, xuu105, ty_@0) -> new_lt8(xuu102, xuu105) new_compare28(xuu114, xuu115, xuu116, xuu117, False, ffc, ffd) -> new_compare113(xuu114, xuu115, xuu116, xuu117, new_lt23(xuu114, xuu116, ffc), new_asAs(new_esEs39(xuu114, xuu116, ffc), new_ltEs24(xuu115, xuu117, ffd)), ffc, ffd) new_compare116(xuu147, xuu148, True, ffa, ffb) -> LT new_primCmpInt(Pos(Succ(xuu500000)), Neg(xuu4000)) -> GT new_lt22(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt10(xuu620, xuu630, fcf, fcg, fch) new_compare9(xuu5000, xuu400) -> new_primCmpInt(xuu5000, xuu400) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs8(xuu69, xuu70) new_esEs30(xuu101, xuu104, ty_@0) -> new_esEs18(xuu101, xuu104) new_esEs16(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs8(xuu50000, xuu4000, app(ty_Ratio, eac)) -> new_esEs17(xuu50000, xuu4000, eac) new_esEs34(xuu500000, xuu40000, app(ty_Maybe, ced)) -> new_esEs24(xuu500000, xuu40000, ced) new_lt23(xuu114, xuu116, ty_Integer) -> new_lt17(xuu114, xuu116) new_primPlusNat1(Succ(xuu21200), Succ(xuu21100)) -> Succ(Succ(new_primPlusNat1(xuu21200, xuu21100))) new_lt5(xuu101, xuu104, app(app(ty_@2, hb), hc)) -> new_lt18(xuu101, xuu104, hb, hc) new_primCompAux00(xuu37, xuu38, GT, bdd) -> GT new_esEs33(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs7(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primCmpNat0(Zero, Succ(xuu40000)) -> LT new_esEs4(xuu50002, xuu4002, app(app(ty_@2, dee), def)) -> new_esEs21(xuu50002, xuu4002, dee, def) new_esEs29(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_esEs13(xuu102, xuu105, he, hf, hg) new_esEs35(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_Maybe, ehe)) -> new_esEs24(xuu500000, xuu40000, ehe) new_ltEs23(xuu621, xuu631, ty_Int) -> new_ltEs9(xuu621, xuu631) new_lt20(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs5(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_compare6(Double(xuu50000, Pos(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs33(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_esEs33(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_ltEs23(xuu621, xuu631, app(ty_Ratio, fec)) -> new_ltEs11(xuu621, xuu631, fec) new_esEs10(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_compare15(Left(xuu50000), Right(xuu4000), cbb, cbc) -> LT new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) -> LT new_primCompAux00(xuu37, xuu38, EQ, ty_@0) -> new_compare8(xuu37, xuu38) new_esEs8(xuu50000, xuu4000, app(ty_Maybe, eba)) -> new_esEs24(xuu50000, xuu4000, eba) new_esEs29(xuu102, xuu105, app(ty_Maybe, bac)) -> new_esEs24(xuu102, xuu105, bac) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Bool) -> new_ltEs4(xuu620, xuu630) new_ltEs6(xuu103, xuu106, app(ty_Maybe, bbe)) -> new_ltEs15(xuu103, xuu106, bbe) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(app(ty_@3, eff), efg), efh), dgg) -> new_esEs13(xuu500000, xuu40000, eff, efg, efh) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_Either, dcb), dcc)) -> new_ltEs14(xuu620, xuu630, dcb, dcc) new_esEs38(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_ltEs21(xuu76, xuu77, app(app(ty_Either, che), chf)) -> new_ltEs14(xuu76, xuu77, che, chf) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Ratio, dca)) -> new_ltEs11(xuu620, xuu630, dca) new_esEs33(xuu500001, xuu40001, app(app(ty_Either, cdd), cde)) -> new_esEs28(xuu500001, xuu40001, cdd, cde) new_esEs11(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_ltEs23(xuu621, xuu631, ty_Ordering) -> new_ltEs18(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), ty_Double, bch) -> new_ltEs12(xuu620, xuu630) new_compare0(xuu5000, xuu400, app(ty_Ratio, cba)) -> new_compare12(xuu5000, xuu400, cba) new_esEs6(xuu50000, xuu4000, app(ty_Maybe, ceh)) -> new_esEs24(xuu50000, xuu4000, ceh) new_ltEs19(xuu62, xuu63, ty_Ordering) -> new_ltEs18(xuu62, xuu63) new_esEs31(xuu621, xuu631, ty_Double) -> new_esEs23(xuu621, xuu631) new_esEs31(xuu621, xuu631, ty_Bool) -> new_esEs22(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_Bool) -> new_ltEs4(xuu115, xuu117) new_lt5(xuu101, xuu104, ty_Bool) -> new_lt13(xuu101, xuu104) new_ltEs19(xuu62, xuu63, ty_Char) -> new_ltEs13(xuu62, xuu63) new_lt4(xuu101, xuu104) -> new_esEs12(new_compare6(xuu101, xuu104), LT) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_compare0(xuu5000, xuu400, ty_Double) -> new_compare6(xuu5000, xuu400) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Char) -> new_ltEs13(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(ty_Either, fbh), fca)) -> new_ltEs14(xuu620, xuu630, fbh, fca) new_primCmpInt(Neg(Zero), Pos(Succ(xuu40000))) -> LT new_primMulInt(Pos(xuu40000), Pos(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_lt6(xuu102, xuu105, app(app(app(ty_@3, he), hf), hg)) -> new_lt10(xuu102, xuu105, he, hf, hg) new_esEs21(@2(xuu500000, xuu500001), @2(xuu40000, xuu40001), ccb, ccc) -> new_asAs(new_esEs34(xuu500000, xuu40000, ccb), new_esEs33(xuu500001, xuu40001, ccc)) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs16(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(ty_@2, ecg), ech)) -> new_ltEs17(xuu69, xuu70, ecg, ech) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Ordering, dgg) -> new_esEs12(xuu500000, xuu40000) new_ltEs18(EQ, LT) -> False new_esEs11(xuu50000, xuu4000, app(ty_Ratio, eec)) -> new_esEs17(xuu50000, xuu4000, eec) new_primMulNat0(Succ(xuu400000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu5000100)) -> Zero new_ltEs20(xuu622, xuu632, ty_Double) -> new_ltEs12(xuu622, xuu632) new_compare0(xuu5000, xuu400, ty_Ordering) -> new_compare19(xuu5000, xuu400) new_esEs34(xuu500000, xuu40000, app(ty_Ratio, cdf)) -> new_esEs17(xuu500000, xuu40000, cdf) new_esEs15(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs16(xuu500000, xuu40000, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs13(xuu500000, xuu40000, ee, ef, eg) new_lt20(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_compare26(xuu76, xuu77, True, cgg) -> EQ new_lt23(xuu114, xuu116, ty_Float) -> new_lt11(xuu114, xuu116) new_ltEs6(xuu103, xuu106, app(ty_Ratio, bbb)) -> new_ltEs11(xuu103, xuu106, bbb) new_ltEs15(Just(xuu620), Just(xuu630), ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_compare15(Left(xuu50000), Left(xuu4000), cbb, cbc) -> new_compare25(xuu50000, xuu4000, new_esEs7(xuu50000, xuu4000, cbb), cbb, cbc) new_esEs39(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs13(xuu114, xuu116, fff, ffg, ffh) new_esEs35(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_ltEs17(@2(xuu620, xuu621), @2(xuu630, xuu631), bdb, bdc) -> new_pePe(new_lt22(xuu620, xuu630, bdb), new_asAs(new_esEs38(xuu620, xuu630, bdb), new_ltEs23(xuu621, xuu631, bdc))) new_esEs38(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs38(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs6(xuu103, xuu106, ty_Ordering) -> new_ltEs18(xuu103, xuu106) new_lt12(xuu101, xuu104, gf) -> new_esEs12(new_compare12(xuu101, xuu104, gf), LT) new_esEs31(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_esEs24(xuu621, xuu631, bgh) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Maybe, fcb)) -> new_ltEs15(xuu620, xuu630, fcb) new_ltEs19(xuu62, xuu63, ty_Integer) -> new_ltEs16(xuu62, xuu63) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Char, dgg) -> new_esEs27(xuu500000, xuu40000) new_primCompAux00(xuu37, xuu38, EQ, app(ty_Ratio, bea)) -> new_compare12(xuu37, xuu38, bea) new_esEs7(xuu50000, xuu4000, app(app(ty_@2, dhe), dhf)) -> new_esEs21(xuu50000, xuu4000, dhe, dhf) new_ltEs19(xuu62, xuu63, app(app(ty_Either, bcg), bch)) -> new_ltEs14(xuu62, xuu63, bcg, bch) new_esEs14(xuu500002, xuu40002, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs13(xuu500002, xuu40002, bh, ca, cb) new_esEs6(xuu50000, xuu4000, app(ty_[], dab)) -> new_esEs25(xuu50000, xuu4000, dab) new_primPlusNat1(Succ(xuu21200), Zero) -> Succ(xuu21200) new_primPlusNat1(Zero, Succ(xuu21100)) -> Succ(xuu21100) new_compare19(EQ, GT) -> LT new_compare0(xuu5000, xuu400, app(ty_[], cae)) -> new_compare7(xuu5000, xuu400, cae) new_compare116(xuu147, xuu148, False, ffa, ffb) -> GT new_esEs39(xuu114, xuu116, ty_Bool) -> new_esEs22(xuu114, xuu116) new_lt22(xuu620, xuu630, ty_Char) -> new_lt14(xuu620, xuu630) new_esEs29(xuu102, xuu105, ty_Bool) -> new_esEs22(xuu102, xuu105) new_ltEs24(xuu115, xuu117, app(app(ty_@2, fhg), fhh)) -> new_ltEs17(xuu115, xuu117, fhg, fhh) new_esEs10(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_compare10(@3(xuu50000, xuu50001, xuu50002), @3(xuu4000, xuu4001, xuu4002), caf, cag, cah) -> new_compare24(xuu50000, xuu50001, xuu50002, xuu4000, xuu4001, xuu4002, new_asAs(new_esEs6(xuu50000, xuu4000, caf), new_asAs(new_esEs5(xuu50001, xuu4001, cag), new_esEs4(xuu50002, xuu4002, cah))), caf, cag, cah) new_ltEs14(Left(xuu620), Left(xuu630), app(app(app(ty_@3, fab), fac), fad), bch) -> new_ltEs10(xuu620, xuu630, fab, fac, fad) new_esEs32(xuu620, xuu630, app(ty_Maybe, bff)) -> new_esEs24(xuu620, xuu630, bff) new_ltEs20(xuu622, xuu632, ty_Float) -> new_ltEs5(xuu622, xuu632) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_Either, ehg), ehh)) -> new_esEs28(xuu500000, xuu40000, ehg, ehh) new_ltEs21(xuu76, xuu77, app(ty_Ratio, chd)) -> new_ltEs11(xuu76, xuu77, chd) new_compare7(:(xuu50000, xuu50001), [], cae) -> GT new_fsEs(xuu210) -> new_not(new_esEs12(xuu210, GT)) new_ltEs11(xuu62, xuu63, bcf) -> new_fsEs(new_compare12(xuu62, xuu63, bcf)) new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, True, cbg, cbh, cca) -> LT new_compare0(xuu5000, xuu400, app(app(ty_Either, cbb), cbc)) -> new_compare15(xuu5000, xuu400, cbb, cbc) new_esEs8(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt23(xuu114, xuu116, ty_Char) -> new_lt14(xuu114, xuu116) new_esEs16(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Integer, bch) -> new_ltEs16(xuu620, xuu630) new_esEs4(xuu50002, xuu4002, ty_Integer) -> new_esEs20(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_Float) -> new_esEs26(xuu500002, xuu40002) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs21(xuu76, xuu77, ty_Ordering) -> new_ltEs18(xuu76, xuu77) new_compare19(LT, GT) -> LT new_ltEs14(Left(xuu620), Right(xuu630), bcg, bch) -> True new_esEs32(xuu620, xuu630, ty_Integer) -> new_esEs20(xuu620, xuu630) new_lt21(xuu621, xuu631, ty_@0) -> new_lt8(xuu621, xuu631) new_compare19(LT, EQ) -> LT new_esEs29(xuu102, xuu105, ty_Ordering) -> new_esEs12(xuu102, xuu105) new_ltEs6(xuu103, xuu106, ty_Double) -> new_ltEs12(xuu103, xuu106) new_esEs7(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt17(xuu101, xuu104) -> new_esEs12(new_compare17(xuu101, xuu104), LT) new_esEs33(xuu500001, xuu40001, app(ty_Ratio, ccd)) -> new_esEs17(xuu500001, xuu40001, ccd) new_compare113(xuu188, xuu189, xuu190, xuu191, True, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, True, cgc, cgd) new_lt20(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_@0) -> new_ltEs8(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs13(xuu500001, xuu40001, cce, ccf, ccg) new_lt21(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_lt15(xuu621, xuu631, bgf, bgg) new_esEs35(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs11(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_lt6(xuu102, xuu105, ty_Ordering) -> new_lt19(xuu102, xuu105) new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_@2, bee), bef)) -> new_compare18(xuu37, xuu38, bee, bef) new_compare0(xuu5000, xuu400, app(app(ty_@2, cbe), cbf)) -> new_compare18(xuu5000, xuu400, cbe, cbf) new_lt6(xuu102, xuu105, ty_Char) -> new_lt14(xuu102, xuu105) new_esEs12(GT, GT) -> True new_esEs39(xuu114, xuu116, app(app(ty_Either, fgb), fgc)) -> new_esEs28(xuu114, xuu116, fgb, fgc) new_primCompAux00(xuu37, xuu38, EQ, ty_Integer) -> new_compare17(xuu37, xuu38) new_ltEs15(Just(xuu620), Just(xuu630), app(app(app(ty_@3, dbf), dbg), dbh)) -> new_ltEs10(xuu620, xuu630, dbf, dbg, dbh) new_esEs29(xuu102, xuu105, app(ty_[], hd)) -> new_esEs25(xuu102, xuu105, hd) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(ty_Either, cga), cgb)) -> new_esEs28(xuu500000, xuu40000, cga, cgb) new_esEs16(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs16(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(app(ty_@2, dce), dcf)) -> new_ltEs17(xuu620, xuu630, dce, dcf) new_compare13(True, False) -> GT new_esEs7(xuu50000, xuu4000, app(app(ty_Either, eaa), eab)) -> new_esEs28(xuu50000, xuu4000, eaa, eab) new_esEs15(xuu500001, xuu40001, app(ty_Maybe, dh)) -> new_esEs24(xuu500001, xuu40001, dh) new_ltEs6(xuu103, xuu106, app(ty_[], baf)) -> new_ltEs7(xuu103, xuu106, baf) new_compare13(False, True) -> LT new_esEs11(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Char) -> new_esEs27(xuu500001, xuu40001) new_esEs37(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Pos(Succ(xuu500000)), Pos(xuu4000)) -> new_primCmpNat0(Succ(xuu500000), xuu4000) new_esEs30(xuu101, xuu104, app(ty_[], gb)) -> new_esEs25(xuu101, xuu104, gb) new_compare15(Right(xuu50000), Right(xuu4000), cbb, cbc) -> new_compare27(xuu50000, xuu4000, new_esEs8(xuu50000, xuu4000, cbc), cbb, cbc) new_esEs12(EQ, EQ) -> True new_primCompAux00(xuu37, xuu38, EQ, app(app(ty_Either, beb), bec)) -> new_compare15(xuu37, xuu38, beb, bec) new_esEs16(xuu500000, xuu40000, app(ty_Maybe, fb)) -> new_esEs24(xuu500000, xuu40000, fb) new_lt21(xuu621, xuu631, app(ty_Maybe, bgh)) -> new_lt16(xuu621, xuu631, bgh) new_esEs14(xuu500002, xuu40002, app(app(ty_Either, cg), da)) -> new_esEs28(xuu500002, xuu40002, cg, da) new_esEs9(xuu50000, xuu4000, app(app(ty_@2, ddc), ddd)) -> new_esEs21(xuu50000, xuu4000, ddc, ddd) new_esEs37(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(ty_Maybe, deg)) -> new_esEs24(xuu50002, xuu4002, deg) new_compare0(xuu5000, xuu400, ty_Int) -> new_compare9(xuu5000, xuu400) new_primCompAux00(xuu37, xuu38, EQ, ty_Float) -> new_compare11(xuu37, xuu38) new_ltEs24(xuu115, xuu117, app(ty_[], fgg)) -> new_ltEs7(xuu115, xuu117, fgg) new_esEs36(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_compare14(Char(xuu50000), Char(xuu4000)) -> new_primCmpNat0(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_lt21(xuu621, xuu631, ty_Int) -> new_lt9(xuu621, xuu631) new_esEs30(xuu101, xuu104, ty_Double) -> new_esEs23(xuu101, xuu104) new_esEs39(xuu114, xuu116, ty_Float) -> new_esEs26(xuu114, xuu116) new_compare19(GT, LT) -> GT new_esEs5(xuu50001, xuu4001, app(ty_Maybe, dga)) -> new_esEs24(xuu50001, xuu4001, dga) new_esEs25(:(xuu500000, xuu500001), [], dab) -> False new_esEs25([], :(xuu40000, xuu40001), dab) -> False new_lt23(xuu114, xuu116, ty_Ordering) -> new_lt19(xuu114, xuu116) new_lt22(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_lt15(xuu620, xuu630, fdb, fdc) new_esEs29(xuu102, xuu105, ty_Double) -> new_esEs23(xuu102, xuu105) new_ltEs16(xuu62, xuu63) -> new_fsEs(new_compare17(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_compare0(xuu5000, xuu400, ty_Bool) -> new_compare13(xuu5000, xuu400) new_esEs10(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_lt5(xuu101, xuu104, ty_Char) -> new_lt14(xuu101, xuu104) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Float) -> new_esEs26(xuu500000, xuu40000) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, True, fg, fh, ga) -> EQ new_ltEs4(True, False) -> False new_esEs22(True, True) -> True new_primCompAux00(xuu37, xuu38, EQ, app(ty_Maybe, bed)) -> new_compare16(xuu37, xuu38, bed) new_esEs5(xuu50001, xuu4001, ty_@0) -> new_esEs18(xuu50001, xuu4001) new_esEs32(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_esEs38(xuu620, xuu630, app(app(ty_Either, fdb), fdc)) -> new_esEs28(xuu620, xuu630, fdb, fdc) new_esEs31(xuu621, xuu631, ty_Integer) -> new_esEs20(xuu621, xuu631) new_lt22(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_ltEs24(xuu115, xuu117, app(ty_Ratio, fhc)) -> new_ltEs11(xuu115, xuu117, fhc) new_esEs36(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt22(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_lt16(xuu620, xuu630, fdd) new_esEs11(xuu50000, xuu4000, app(ty_Maybe, efa)) -> new_esEs24(xuu50000, xuu4000, efa) new_primCompAux00(xuu37, xuu38, EQ, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_compare10(xuu37, xuu38, bdf, bdg, bdh) new_esEs8(xuu50000, xuu4000, app(app(ty_Either, ebc), ebd)) -> new_esEs28(xuu50000, xuu4000, ebc, ebd) new_ltEs4(False, False) -> True new_lt21(xuu621, xuu631, ty_Float) -> new_lt11(xuu621, xuu631) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Ratio, fae), bch) -> new_ltEs11(xuu620, xuu630, fae) new_esEs14(xuu500002, xuu40002, ty_Char) -> new_esEs27(xuu500002, xuu40002) new_esEs33(xuu500001, xuu40001, ty_Bool) -> new_esEs22(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs13(xuu500000, xuu40000, cdg, cdh, cea) new_esEs35(xuu500000, xuu40000, app(ty_Maybe, dba)) -> new_esEs24(xuu500000, xuu40000, dba) new_esEs10(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Integer) -> new_ltEs16(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Char, bch) -> new_ltEs13(xuu620, xuu630) new_compare19(LT, LT) -> EQ new_esEs25([], [], dab) -> True new_esEs11(xuu50000, xuu4000, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs13(xuu50000, xuu4000, eed, eee, eef) new_lt22(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_compare114(xuu188, xuu189, xuu190, xuu191, False, cgc, cgd) -> GT new_ltEs19(xuu62, xuu63, app(ty_[], bcb)) -> new_ltEs7(xuu62, xuu63, bcb) new_esEs33(xuu500001, xuu40001, ty_Integer) -> new_esEs20(xuu500001, xuu40001) new_esEs8(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt15(xuu101, xuu104, gg, gh) -> new_esEs12(new_compare15(xuu101, xuu104, gg, gh), LT) new_lt20(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs15(Nothing, Just(xuu630), bda) -> True new_esEs31(xuu621, xuu631, ty_Int) -> new_esEs19(xuu621, xuu631) new_esEs32(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_esEs17(xuu620, xuu630, bfc) new_ltEs12(xuu62, xuu63) -> new_fsEs(new_compare6(xuu62, xuu63)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(ty_Either, dgf), dgg)) -> new_esEs28(xuu50000, xuu4000, dgf, dgg) new_lt5(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_lt15(xuu101, xuu104, gg, gh) new_ltEs20(xuu622, xuu632, app(ty_[], bhc)) -> new_ltEs7(xuu622, xuu632, bhc) new_compare27(xuu69, xuu70, True, ebe, ebf) -> EQ new_ltEs14(Left(xuu620), Left(xuu630), ty_Bool, bch) -> new_ltEs4(xuu620, xuu630) new_lt20(xuu620, xuu630, ty_Int) -> new_lt9(xuu620, xuu630) new_esEs35(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_primPlusNat0(Succ(xuu2220), xuu5000100) -> Succ(Succ(new_primPlusNat1(xuu2220, xuu5000100))) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_[], fbc)) -> new_ltEs7(xuu620, xuu630, fbc) new_lt11(xuu101, xuu104) -> new_esEs12(new_compare11(xuu101, xuu104), LT) new_esEs10(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Float) -> new_ltEs5(xuu620, xuu630) new_lt5(xuu101, xuu104, ty_Int) -> new_lt9(xuu101, xuu104) new_esEs5(xuu50001, xuu4001, ty_Char) -> new_esEs27(xuu50001, xuu4001) new_lt22(xuu620, xuu630, ty_Ordering) -> new_lt19(xuu620, xuu630) new_ltEs13(xuu62, xuu63) -> new_fsEs(new_compare14(xuu62, xuu63)) new_primPlusNat1(Zero, Zero) -> Zero new_esEs6(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_lt18(xuu101, xuu104, hb, hc) -> new_esEs12(new_compare18(xuu101, xuu104, hb, hc), LT) new_lt20(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_lt15(xuu620, xuu630, bfd, bfe) new_ltEs23(xuu621, xuu631, app(ty_[], fdg)) -> new_ltEs7(xuu621, xuu631, fdg) new_esEs4(xuu50002, xuu4002, app(app(ty_Either, dfa), dfb)) -> new_esEs28(xuu50002, xuu4002, dfa, dfb) new_ltEs18(GT, LT) -> False new_esEs4(xuu50002, xuu4002, ty_@0) -> new_esEs18(xuu50002, xuu4002) new_esEs14(xuu500002, xuu40002, ty_@0) -> new_esEs18(xuu500002, xuu40002) new_lt5(xuu101, xuu104, ty_Integer) -> new_lt17(xuu101, xuu104) new_esEs38(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_primCompAux00(xuu37, xuu38, EQ, ty_Bool) -> new_compare13(xuu37, xuu38) new_lt5(xuu101, xuu104, app(ty_Maybe, ha)) -> new_lt16(xuu101, xuu104, ha) new_ltEs22(xuu69, xuu70, app(ty_[], ebg)) -> new_ltEs7(xuu69, xuu70, ebg) new_ltEs4(True, True) -> True new_lt6(xuu102, xuu105, ty_Integer) -> new_lt17(xuu102, xuu105) new_primCmpNat0(Succ(xuu500000), Succ(xuu40000)) -> new_primCmpNat0(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Double) -> new_ltEs12(xuu621, xuu631) new_ltEs15(Just(xuu620), Just(xuu630), ty_Int) -> new_ltEs9(xuu620, xuu630) new_lt14(xuu101, xuu104) -> new_esEs12(new_compare14(xuu101, xuu104), LT) new_esEs34(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_compare19(EQ, LT) -> GT new_esEs31(xuu621, xuu631, ty_Ordering) -> new_esEs12(xuu621, xuu631) new_ltEs21(xuu76, xuu77, app(ty_[], cgh)) -> new_ltEs7(xuu76, xuu77, cgh) new_lt20(xuu620, xuu630, app(ty_Maybe, bff)) -> new_lt16(xuu620, xuu630, bff) new_esEs11(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_lt21(xuu621, xuu631, ty_Integer) -> new_lt17(xuu621, xuu631) new_esEs14(xuu500002, xuu40002, app(ty_Maybe, ce)) -> new_esEs24(xuu500002, xuu40002, ce) new_esEs4(xuu50002, xuu4002, ty_Char) -> new_esEs27(xuu50002, xuu4002) new_esEs32(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs13(xuu620, xuu630, beh, bfa, bfb) new_esEs33(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_compare0(xuu5000, xuu400, app(app(app(ty_@3, caf), cag), cah)) -> new_compare10(xuu5000, xuu400, caf, cag, cah) new_compare24(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, False, fg, fh, ga) -> new_compare110(xuu101, xuu102, xuu103, xuu104, xuu105, xuu106, new_lt5(xuu101, xuu104, fg), new_asAs(new_esEs30(xuu101, xuu104, fg), new_pePe(new_lt6(xuu102, xuu105, fh), new_asAs(new_esEs29(xuu102, xuu105, fh), new_ltEs6(xuu103, xuu106, ga)))), fg, fh, ga) new_esEs30(xuu101, xuu104, ty_Ordering) -> new_esEs12(xuu101, xuu104) new_primCompAux00(xuu37, xuu38, EQ, ty_Int) -> new_compare9(xuu37, xuu38) new_esEs29(xuu102, xuu105, app(ty_Ratio, hh)) -> new_esEs17(xuu102, xuu105, hh) new_lt20(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Ordering) -> new_ltEs18(xuu620, xuu630) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt5(xuu101, xuu104, ty_Ordering) -> new_lt19(xuu101, xuu104) new_esEs30(xuu101, xuu104, app(ty_Ratio, gf)) -> new_esEs17(xuu101, xuu104, gf) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare11(Float(xuu50000, Neg(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_esEs39(xuu114, xuu116, ty_Char) -> new_esEs27(xuu114, xuu116) new_compare7([], [], cae) -> EQ new_compare15(Right(xuu50000), Left(xuu4000), cbb, cbc) -> GT new_esEs10(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_esEs16(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_lt13(xuu101, xuu104) -> new_esEs12(new_compare13(xuu101, xuu104), LT) new_esEs15(xuu500001, xuu40001, ty_@0) -> new_esEs18(xuu500001, xuu40001) new_esEs34(xuu500000, xuu40000, ty_Integer) -> new_esEs20(xuu500000, xuu40000) new_ltEs15(Just(xuu620), Just(xuu630), ty_Bool) -> new_ltEs4(xuu620, xuu630) new_esEs11(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Double) -> new_ltEs12(xuu115, xuu117) new_ltEs6(xuu103, xuu106, app(app(ty_@2, bbf), bbg)) -> new_ltEs17(xuu103, xuu106, bbf, bbg) new_esEs10(xuu50001, xuu4001, app(ty_Ratio, eda)) -> new_esEs17(xuu50001, xuu4001, eda) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpInt(Neg(Succ(xuu500000)), Pos(xuu4000)) -> LT new_esEs7(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs30(xuu101, xuu104, ty_Int) -> new_esEs19(xuu101, xuu104) new_lt21(xuu621, xuu631, ty_Ordering) -> new_lt19(xuu621, xuu631) new_compare26(xuu76, xuu77, False, cgg) -> new_compare115(xuu76, xuu77, new_ltEs21(xuu76, xuu77, cgg), cgg) new_esEs32(xuu620, xuu630, app(app(ty_Either, bfd), bfe)) -> new_esEs28(xuu620, xuu630, bfd, bfe) new_lt22(xuu620, xuu630, ty_Float) -> new_lt11(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_@2, fba), fbb), bch) -> new_ltEs17(xuu620, xuu630, fba, fbb) new_ltEs14(Right(xuu620), Left(xuu630), bcg, bch) -> False new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(app(ty_@3, egh), eha), ehb)) -> new_esEs13(xuu500000, xuu40000, egh, eha, ehb) new_primCmpInt(Pos(Zero), Neg(Succ(xuu40000))) -> GT new_esEs32(xuu620, xuu630, ty_Float) -> new_esEs26(xuu620, xuu630) new_ltEs14(Left(xuu620), Left(xuu630), ty_Int, bch) -> new_ltEs9(xuu620, xuu630) new_esEs16(xuu500000, xuu40000, app(ty_[], fc)) -> new_esEs25(xuu500000, xuu40000, fc) new_ltEs22(xuu69, xuu70, app(ty_Ratio, ecc)) -> new_ltEs11(xuu69, xuu70, ecc) new_esEs18(@0, @0) -> True new_compare19(EQ, EQ) -> EQ new_ltEs6(xuu103, xuu106, ty_Integer) -> new_ltEs16(xuu103, xuu106) new_primCmpInt(Neg(Succ(xuu500000)), Neg(xuu4000)) -> new_primCmpNat0(xuu4000, Succ(xuu500000)) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_ltEs23(xuu621, xuu631, ty_Bool) -> new_ltEs4(xuu621, xuu631) new_ltEs6(xuu103, xuu106, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs10(xuu103, xuu106, bag, bah, bba) new_lt5(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_lt10(xuu101, xuu104, gc, gd, ge) new_esEs10(xuu50001, xuu4001, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs13(xuu50001, xuu4001, edb, edc, edd) new_ltEs4(False, True) -> True new_esEs9(xuu50000, xuu4000, ty_Float) -> new_esEs26(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(ty_[], dgb)) -> new_esEs25(xuu50001, xuu4001, dgb) new_lt23(xuu114, xuu116, ty_@0) -> new_lt8(xuu114, xuu116) new_ltEs8(xuu62, xuu63) -> new_fsEs(new_compare8(xuu62, xuu63)) new_esEs9(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_lt18(xuu102, xuu105, bad, bae) new_compare28(xuu114, xuu115, xuu116, xuu117, True, ffc, ffd) -> EQ new_ltEs20(xuu622, xuu632, app(app(ty_Either, bhh), caa)) -> new_ltEs14(xuu622, xuu632, bhh, caa) new_ltEs15(Just(xuu620), Just(xuu630), ty_Double) -> new_ltEs12(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs18(xuu69, xuu70) new_esEs4(xuu50002, xuu4002, app(ty_Ratio, dea)) -> new_esEs17(xuu50002, xuu4002, dea) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu400000))) -> False new_esEs30(xuu101, xuu104, ty_Bool) -> new_esEs22(xuu101, xuu104) new_esEs7(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs24(xuu115, xuu117, ty_Float) -> new_ltEs5(xuu115, xuu117) new_esEs29(xuu102, xuu105, app(app(ty_@2, bad), bae)) -> new_esEs21(xuu102, xuu105, bad, bae) new_compare19(GT, GT) -> EQ new_esEs34(xuu500000, xuu40000, ty_@0) -> new_esEs18(xuu500000, xuu40000) new_esEs4(xuu50002, xuu4002, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs13(xuu50002, xuu4002, deb, dec, ded) new_esEs39(xuu114, xuu116, ty_@0) -> new_esEs18(xuu114, xuu116) new_esEs38(xuu620, xuu630, app(ty_Maybe, fdd)) -> new_esEs24(xuu620, xuu630, fdd) new_esEs23(Double(xuu500000, xuu500001), Double(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_lt22(xuu620, xuu630, ty_Integer) -> new_lt17(xuu620, xuu630) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Maybe, cfg)) -> new_esEs24(xuu500000, xuu40000, cfg) new_esEs35(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs15(xuu500001, xuu40001, app(ty_Ratio, db)) -> new_esEs17(xuu500001, xuu40001, db) new_lt9(xuu101, xuu104) -> new_esEs12(new_compare9(xuu101, xuu104), LT) new_ltEs23(xuu621, xuu631, app(app(app(ty_@3, fdh), fea), feb)) -> new_ltEs10(xuu621, xuu631, fdh, fea, feb) new_lt6(xuu102, xuu105, ty_Int) -> new_lt9(xuu102, xuu105) new_esEs30(xuu101, xuu104, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs13(xuu101, xuu104, gc, gd, ge) new_esEs32(xuu620, xuu630, ty_Ordering) -> new_esEs12(xuu620, xuu630) new_esEs38(xuu620, xuu630, ty_Bool) -> new_esEs22(xuu620, xuu630) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs9(xuu69, xuu70) new_esEs24(Just(xuu500000), Just(xuu40000), app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs13(xuu500000, xuu40000, cfb, cfc, cfd) new_esEs14(xuu500002, xuu40002, ty_Integer) -> new_esEs20(xuu500002, xuu40002) new_lt21(xuu621, xuu631, ty_Char) -> new_lt14(xuu621, xuu631) new_esEs34(xuu500000, xuu40000, app(app(ty_@2, ceb), cec)) -> new_esEs21(xuu500000, xuu40000, ceb, cec) new_lt23(xuu114, xuu116, app(ty_[], ffe)) -> new_lt7(xuu114, xuu116, ffe) new_esEs12(LT, LT) -> True new_esEs33(xuu500001, xuu40001, app(ty_[], cdc)) -> new_esEs25(xuu500001, xuu40001, cdc) new_esEs9(xuu50000, xuu4000, app(app(ty_Either, ddg), ddh)) -> new_esEs28(xuu50000, xuu4000, ddg, ddh) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_[], dbe)) -> new_ltEs7(xuu620, xuu630, dbe) new_ltEs18(EQ, GT) -> True new_lt23(xuu114, xuu116, app(app(app(ty_@3, fff), ffg), ffh)) -> new_lt10(xuu114, xuu116, fff, ffg, ffh) new_esEs26(Float(xuu500000, xuu500001), Float(xuu40000, xuu40001)) -> new_esEs19(new_sr(xuu500000, xuu40001), new_sr(xuu500001, xuu40000)) new_ltEs23(xuu621, xuu631, ty_Integer) -> new_ltEs16(xuu621, xuu631) new_esEs4(xuu50002, xuu4002, ty_Float) -> new_esEs26(xuu50002, xuu4002) new_lt10(xuu101, xuu104, gc, gd, ge) -> new_esEs12(new_compare10(xuu101, xuu104, gc, gd, ge), LT) new_lt6(xuu102, xuu105, ty_Float) -> new_lt11(xuu102, xuu105) new_ltEs21(xuu76, xuu77, ty_Double) -> new_ltEs12(xuu76, xuu77) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Maybe, egc), dgg) -> new_esEs24(xuu500000, xuu40000, egc) new_lt6(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_lt15(xuu102, xuu105, baa, bab) new_esEs9(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs19(xuu50000, xuu4000) -> new_primEqInt(xuu50000, xuu4000) new_esEs39(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_esEs21(xuu114, xuu116, fge, fgf) new_esEs15(xuu500001, xuu40001, app(app(ty_Either, eb), ec)) -> new_esEs28(xuu500001, xuu40001, eb, ec) new_esEs29(xuu102, xuu105, ty_@0) -> new_esEs18(xuu102, xuu105) new_esEs11(xuu50000, xuu4000, app(ty_[], efb)) -> new_esEs25(xuu50000, xuu4000, efb) new_compare7([], :(xuu4000, xuu4001), cae) -> LT new_esEs35(xuu500000, xuu40000, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs13(xuu500000, xuu40000, dad, dae, daf) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_primCmpNat0(Succ(xuu500000), Zero) -> GT new_esEs13(@3(xuu500000, xuu500001, xuu500002), @3(xuu40000, xuu40001, xuu40002), bd, be, bf) -> new_asAs(new_esEs16(xuu500000, xuu40000, bd), new_asAs(new_esEs15(xuu500001, xuu40001, be), new_esEs14(xuu500002, xuu40002, bf))) new_compare16(Just(xuu50000), Nothing, cbd) -> GT new_pePe(False, xuu209) -> xuu209 new_esEs10(xuu50001, xuu4001, ty_Double) -> new_esEs23(xuu50001, xuu4001) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_Either, ege), egf), dgg) -> new_esEs28(xuu500000, xuu40000, ege, egf) new_compare25(xuu62, xuu63, True, bbh, bca) -> EQ new_lt20(xuu620, xuu630, ty_@0) -> new_lt8(xuu620, xuu630) new_esEs6(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_ltEs20(xuu622, xuu632, ty_Char) -> new_ltEs13(xuu622, xuu632) new_ltEs18(LT, GT) -> True new_esEs15(xuu500001, xuu40001, ty_Int) -> new_esEs19(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_@0) -> new_lt8(xuu101, xuu104) new_compare16(Nothing, Nothing, cbd) -> EQ new_esEs10(xuu50001, xuu4001, app(app(ty_Either, eea), eeb)) -> new_esEs28(xuu50001, xuu4001, eea, eeb) new_esEs6(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_primEqInt(Pos(Zero), Neg(Succ(xuu400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu400000))) -> False new_ltEs20(xuu622, xuu632, ty_Integer) -> new_ltEs16(xuu622, xuu632) new_ltEs6(xuu103, xuu106, ty_@0) -> new_ltEs8(xuu103, xuu106) new_esEs35(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_lt16(xuu101, xuu104, ha) -> new_esEs12(new_compare16(xuu101, xuu104, ha), LT) new_esEs4(xuu50002, xuu4002, ty_Int) -> new_esEs19(xuu50002, xuu4002) new_esEs15(xuu500001, xuu40001, ty_Ordering) -> new_esEs12(xuu500001, xuu40001) new_esEs9(xuu50000, xuu4000, app(ty_Ratio, dcg)) -> new_esEs17(xuu50000, xuu4000, dcg) new_ltEs15(Nothing, Nothing, bda) -> True new_ltEs15(Just(xuu620), Nothing, bda) -> False new_esEs34(xuu500000, xuu40000, ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs14(Left(xuu620), Left(xuu630), ty_Float, bch) -> new_ltEs5(xuu620, xuu630) new_esEs33(xuu500001, xuu40001, app(ty_Maybe, cdb)) -> new_esEs24(xuu500001, xuu40001, cdb) new_ltEs19(xuu62, xuu63, ty_Double) -> new_ltEs12(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_Char) -> new_esEs27(xuu620, xuu630) new_ltEs24(xuu115, xuu117, ty_Int) -> new_ltEs9(xuu115, xuu117) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(ty_Ratio, fbg)) -> new_ltEs11(xuu620, xuu630, fbg) new_ltEs21(xuu76, xuu77, app(ty_Maybe, chg)) -> new_ltEs15(xuu76, xuu77, chg) new_esEs10(xuu50001, xuu4001, app(ty_Maybe, edg)) -> new_esEs24(xuu50001, xuu4001, edg) new_lt23(xuu114, xuu116, app(ty_Maybe, fgd)) -> new_lt16(xuu114, xuu116, fgd) new_primPlusNat0(Zero, xuu5000100) -> Succ(xuu5000100) new_ltEs21(xuu76, xuu77, ty_@0) -> new_ltEs8(xuu76, xuu77) new_esEs8(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_lt21(xuu621, xuu631, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt10(xuu621, xuu631, bgb, bgc, bgd) new_esEs31(xuu621, xuu631, ty_@0) -> new_esEs18(xuu621, xuu631) new_esEs30(xuu101, xuu104, app(ty_Maybe, ha)) -> new_esEs24(xuu101, xuu104, ha) new_esEs8(xuu50000, xuu4000, app(app(ty_@2, eag), eah)) -> new_esEs21(xuu50000, xuu4000, eag, eah) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_[], faa), bch) -> new_ltEs7(xuu620, xuu630, faa) new_esEs20(Integer(xuu500000), Integer(xuu40000)) -> new_primEqInt(xuu500000, xuu40000) new_esEs22(False, True) -> False new_esEs22(True, False) -> False new_esEs29(xuu102, xuu105, ty_Integer) -> new_esEs20(xuu102, xuu105) new_ltEs18(LT, LT) -> True new_ltEs23(xuu621, xuu631, app(app(ty_@2, feg), feh)) -> new_ltEs17(xuu621, xuu631, feg, feh) new_ltEs20(xuu622, xuu632, ty_Ordering) -> new_ltEs18(xuu622, xuu632) new_esEs8(xuu50000, xuu4000, app(ty_[], ebb)) -> new_esEs25(xuu50000, xuu4000, ebb) new_esEs38(xuu620, xuu630, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs13(xuu620, xuu630, fcf, fcg, fch) new_esEs15(xuu500001, xuu40001, app(app(app(ty_@3, dc), dd), de)) -> new_esEs13(xuu500001, xuu40001, dc, dd, de) new_ltEs14(Left(xuu620), Left(xuu630), app(app(ty_Either, faf), fag), bch) -> new_ltEs14(xuu620, xuu630, faf, fag) new_ltEs14(Left(xuu620), Left(xuu630), ty_Ordering, bch) -> new_ltEs18(xuu620, xuu630) new_esEs34(xuu500000, xuu40000, ty_Char) -> new_esEs27(xuu500000, xuu40000) new_esEs15(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_ltEs6(xuu103, xuu106, app(app(ty_Either, bbc), bbd)) -> new_ltEs14(xuu103, xuu106, bbc, bbd) new_ltEs9(xuu62, xuu63) -> new_fsEs(new_compare9(xuu62, xuu63)) new_ltEs18(EQ, EQ) -> True new_esEs6(xuu50000, xuu4000, app(app(ty_@2, ccb), ccc)) -> new_esEs21(xuu50000, xuu4000, ccb, ccc) new_esEs4(xuu50002, xuu4002, ty_Bool) -> new_esEs22(xuu50002, xuu4002) new_lt22(xuu620, xuu630, ty_Bool) -> new_lt13(xuu620, xuu630) new_esEs22(False, False) -> True new_esEs38(xuu620, xuu630, ty_Int) -> new_esEs19(xuu620, xuu630) new_primMulInt(Neg(xuu40000), Neg(xuu500010)) -> Pos(new_primMulNat0(xuu40000, xuu500010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu40000))) -> new_primCmpNat0(Zero, Succ(xuu40000)) new_esEs25(:(xuu500000, xuu500001), :(xuu40000, xuu40001), dab) -> new_asAs(new_esEs35(xuu500000, xuu40000, dab), new_esEs25(xuu500001, xuu40001, dab)) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Bool) -> new_esEs22(xuu500000, xuu40000) new_esEs9(xuu50000, xuu4000, ty_Char) -> new_esEs27(xuu50000, xuu4000) new_esEs31(xuu621, xuu631, app(ty_[], bga)) -> new_esEs25(xuu621, xuu631, bga) new_esEs35(xuu500000, xuu40000, app(ty_Ratio, dac)) -> new_esEs17(xuu500000, xuu40000, dac) new_compare11(Float(xuu50000, Pos(xuu500010)), Float(xuu4000, Pos(xuu40010))) -> new_compare9(new_sr(xuu50000, Pos(xuu40010)), new_sr(Pos(xuu500010), xuu4000)) new_lt21(xuu621, xuu631, ty_Bool) -> new_lt13(xuu621, xuu631) new_esEs5(xuu50001, xuu4001, ty_Bool) -> new_esEs22(xuu50001, xuu4001) new_esEs39(xuu114, xuu116, ty_Integer) -> new_esEs20(xuu114, xuu116) new_esEs32(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare0(xuu5000, xuu400, ty_Float) -> new_compare11(xuu5000, xuu400) new_compare0(xuu5000, xuu400, app(ty_Maybe, cbd)) -> new_compare16(xuu5000, xuu400, cbd) new_ltEs18(LT, EQ) -> True new_ltEs19(xuu62, xuu63, ty_@0) -> new_ltEs8(xuu62, xuu63) new_ltEs19(xuu62, xuu63, app(ty_Maybe, bda)) -> new_ltEs15(xuu62, xuu63, bda) new_compare115(xuu156, xuu157, True, dgh) -> LT new_lt6(xuu102, xuu105, ty_Bool) -> new_lt13(xuu102, xuu105) new_esEs8(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs35(xuu500000, xuu40000, app(app(ty_Either, dbc), dbd)) -> new_esEs28(xuu500000, xuu40000, dbc, dbd) new_esEs7(xuu50000, xuu4000, app(ty_[], dhh)) -> new_esEs25(xuu50000, xuu4000, dhh) new_ltEs15(Just(xuu620), Just(xuu630), ty_@0) -> new_ltEs8(xuu620, xuu630) new_ltEs15(Just(xuu620), Just(xuu630), app(ty_Maybe, dcd)) -> new_ltEs15(xuu620, xuu630, dcd) new_ltEs15(Just(xuu620), Just(xuu630), ty_Float) -> new_ltEs5(xuu620, xuu630) new_ltEs19(xuu62, xuu63, ty_Float) -> new_ltEs5(xuu62, xuu63) new_esEs31(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_esEs21(xuu621, xuu631, bha, bhb) new_esEs7(xuu50000, xuu4000, app(ty_Maybe, dhg)) -> new_esEs24(xuu50000, xuu4000, dhg) new_ltEs6(xuu103, xuu106, ty_Char) -> new_ltEs13(xuu103, xuu106) new_esEs16(xuu500000, xuu40000, app(app(ty_@2, eh), fa)) -> new_esEs21(xuu500000, xuu40000, eh, fa) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(app(ty_@2, ehc), ehd)) -> new_esEs21(xuu500000, xuu40000, ehc, ehd) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Bool, dgg) -> new_esEs22(xuu500000, xuu40000) new_lt20(xuu620, xuu630, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt10(xuu620, xuu630, beh, bfa, bfb) new_esEs28(Left(xuu500000), Left(xuu40000), ty_@0, dgg) -> new_esEs18(xuu500000, xuu40000) new_primMulInt(Pos(xuu40000), Neg(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_primMulInt(Neg(xuu40000), Pos(xuu500010)) -> Neg(new_primMulNat0(xuu40000, xuu500010)) new_esEs5(xuu50001, xuu4001, ty_Integer) -> new_esEs20(xuu50001, xuu4001) new_esEs34(xuu500000, xuu40000, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_ltEs20(xuu622, xuu632, ty_@0) -> new_ltEs8(xuu622, xuu632) new_ltEs21(xuu76, xuu77, ty_Integer) -> new_ltEs16(xuu76, xuu77) new_compare19(GT, EQ) -> GT new_esEs16(xuu500000, xuu40000, ty_Int) -> new_esEs19(xuu500000, xuu40000) new_esEs39(xuu114, xuu116, app(ty_[], ffe)) -> new_esEs25(xuu114, xuu116, ffe) new_esEs6(xuu50000, xuu4000, app(ty_Ratio, dge)) -> new_esEs17(xuu50000, xuu4000, dge) new_ltEs24(xuu115, xuu117, ty_Ordering) -> new_ltEs18(xuu115, xuu117) new_esEs14(xuu500002, xuu40002, ty_Ordering) -> new_esEs12(xuu500002, xuu40002) new_ltEs19(xuu62, xuu63, ty_Int) -> new_ltEs9(xuu62, xuu63) new_esEs32(xuu620, xuu630, ty_@0) -> new_esEs18(xuu620, xuu630) new_sr0(Integer(xuu40000), Integer(xuu500010)) -> Integer(new_primMulInt(xuu40000, xuu500010)) new_esEs34(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs6(xuu50000, xuu4000, app(app(app(ty_@3, bd), be), bf)) -> new_esEs13(xuu50000, xuu4000, bd, be, bf) new_esEs7(xuu50000, xuu4000, ty_Double) -> new_esEs23(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, app(ty_Maybe, dde)) -> new_esEs24(xuu50000, xuu4000, dde) new_esEs8(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt20(xuu620, xuu630, app(ty_[], beg)) -> new_lt7(xuu620, xuu630, beg) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Integer, dgg) -> new_esEs20(xuu500000, xuu40000) new_asAs(True, xuu135) -> xuu135 new_esEs24(Just(xuu500000), Just(xuu40000), ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs32(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_esEs21(xuu620, xuu630, bfg, bfh) new_esEs28(Left(xuu500000), Left(xuu40000), ty_Int, dgg) -> new_esEs19(xuu500000, xuu40000) new_esEs34(xuu500000, xuu40000, app(app(ty_Either, cef), ceg)) -> new_esEs28(xuu500000, xuu40000, cef, ceg) new_esEs9(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs9(xuu50000, xuu4000, ty_@0) -> new_esEs18(xuu50000, xuu4000) new_esEs5(xuu50001, xuu4001, app(app(ty_@2, dfg), dfh)) -> new_esEs21(xuu50001, xuu4001, dfg, dfh) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, ty_Float) -> new_esEs26(xuu500000, xuu40000) new_esEs27(Char(xuu500000), Char(xuu40000)) -> new_primEqNat0(xuu500000, xuu40000) new_esEs5(xuu50001, xuu4001, ty_Int) -> new_esEs19(xuu50001, xuu4001) new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Int) -> new_ltEs9(xuu620, xuu630) new_esEs39(xuu114, xuu116, ty_Double) -> new_esEs23(xuu114, xuu116) new_ltEs21(xuu76, xuu77, ty_Float) -> new_ltEs5(xuu76, xuu77) new_compare111(xuu140, xuu141, False, cge, cgf) -> GT new_ltEs20(xuu622, xuu632, app(ty_Ratio, bhg)) -> new_ltEs11(xuu622, xuu632, bhg) new_ltEs15(Just(xuu620), Just(xuu630), ty_Integer) -> new_ltEs16(xuu620, xuu630) new_esEs30(xuu101, xuu104, ty_Float) -> new_esEs26(xuu101, xuu104) new_compare0(xuu5000, xuu400, ty_Integer) -> new_compare17(xuu5000, xuu400) new_ltEs21(xuu76, xuu77, ty_Bool) -> new_ltEs4(xuu76, xuu77) new_sr(xuu4000, xuu50001) -> new_primMulInt(xuu4000, xuu50001) new_esEs38(xuu620, xuu630, app(ty_Ratio, fda)) -> new_esEs17(xuu620, xuu630, fda) new_primMulNat0(Zero, Zero) -> Zero new_esEs11(xuu50000, xuu4000, app(app(ty_@2, eeg), eeh)) -> new_esEs21(xuu50000, xuu4000, eeg, eeh) new_ltEs5(xuu62, xuu63) -> new_fsEs(new_compare11(xuu62, xuu63)) new_lt20(xuu620, xuu630, app(app(ty_@2, bfg), bfh)) -> new_lt18(xuu620, xuu630, bfg, bfh) new_esEs10(xuu50001, xuu4001, app(ty_[], edh)) -> new_esEs25(xuu50001, xuu4001, edh) new_esEs35(xuu500000, xuu40000, app(ty_[], dbb)) -> new_esEs25(xuu500000, xuu40000, dbb) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs5(xuu69, xuu70) new_lt23(xuu114, xuu116, ty_Double) -> new_lt4(xuu114, xuu116) new_esEs4(xuu50002, xuu4002, ty_Ordering) -> new_esEs12(xuu50002, xuu4002) new_lt23(xuu114, xuu116, app(ty_Ratio, fga)) -> new_lt12(xuu114, xuu116, fga) new_esEs16(xuu500000, xuu40000, app(ty_Ratio, ed)) -> new_esEs17(xuu500000, xuu40000, ed) new_esEs24(Just(xuu500000), Just(xuu40000), ty_Ordering) -> new_esEs12(xuu500000, xuu40000) new_ltEs19(xuu62, xuu63, app(ty_Ratio, bcf)) -> new_ltEs11(xuu62, xuu63, bcf) new_lt21(xuu621, xuu631, app(app(ty_@2, bha), bhb)) -> new_lt18(xuu621, xuu631, bha, bhb) new_ltEs14(Right(xuu620), Right(xuu630), bcg, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs10(xuu620, xuu630, fbd, fbe, fbf) new_ltEs23(xuu621, xuu631, app(ty_Maybe, fef)) -> new_ltEs15(xuu621, xuu631, fef) new_compare16(Just(xuu50000), Just(xuu4000), cbd) -> new_compare26(xuu50000, xuu4000, new_esEs9(xuu50000, xuu4000, cbd), cbd) new_esEs33(xuu500001, xuu40001, app(app(ty_@2, cch), cda)) -> new_esEs21(xuu500001, xuu40001, cch, cda) new_esEs39(xuu114, xuu116, ty_Ordering) -> new_esEs12(xuu114, xuu116) new_ltEs22(xuu69, xuu70, app(ty_Maybe, ecf)) -> new_ltEs15(xuu69, xuu70, ecf) new_ltEs21(xuu76, xuu77, app(app(ty_@2, chh), daa)) -> new_ltEs17(xuu76, xuu77, chh, daa) new_esEs5(xuu50001, xuu4001, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs13(xuu50001, xuu4001, dfd, dfe, dff) new_primEqInt(Neg(Succ(xuu5000000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu400000))) -> False new_esEs35(xuu500000, xuu40000, ty_Double) -> new_esEs23(xuu500000, xuu40000) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_[], egd), dgg) -> new_esEs25(xuu500000, xuu40000, egd) new_primEqInt(Pos(Succ(xuu5000000)), Pos(Succ(xuu400000))) -> new_primEqNat0(xuu5000000, xuu400000) new_lt8(xuu101, xuu104) -> new_esEs12(new_compare8(xuu101, xuu104), LT) new_lt7(xuu101, xuu104, gb) -> new_esEs12(new_compare7(xuu101, xuu104, gb), LT) new_esEs4(xuu50002, xuu4002, app(ty_[], deh)) -> new_esEs25(xuu50002, xuu4002, deh) new_primEqInt(Pos(Succ(xuu5000000)), Neg(xuu40000)) -> False new_primEqInt(Neg(Succ(xuu5000000)), Pos(xuu40000)) -> False new_ltEs22(xuu69, xuu70, app(app(ty_Either, ecd), ece)) -> new_ltEs14(xuu69, xuu70, ecd, ece) new_primCmpInt(Neg(Zero), Neg(Succ(xuu40000))) -> new_primCmpNat0(Succ(xuu40000), Zero) new_esEs28(Left(xuu500000), Right(xuu40000), dgf, dgg) -> False new_esEs28(Right(xuu500000), Left(xuu40000), dgf, dgg) -> False new_ltEs14(Right(xuu620), Right(xuu630), bcg, ty_Double) -> new_ltEs12(xuu620, xuu630) new_esEs31(xuu621, xuu631, ty_Char) -> new_esEs27(xuu621, xuu631) new_esEs28(Right(xuu500000), Right(xuu40000), dgf, app(ty_[], ehf)) -> new_esEs25(xuu500000, xuu40000, ehf) new_esEs34(xuu500000, xuu40000, app(ty_[], cee)) -> new_esEs25(xuu500000, xuu40000, cee) new_compare0(xuu5000, xuu400, ty_@0) -> new_compare8(xuu5000, xuu400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_[], cfh)) -> new_esEs25(xuu500000, xuu40000, cfh) new_esEs17(:%(xuu500000, xuu500001), :%(xuu40000, xuu40001), dge) -> new_asAs(new_esEs37(xuu500000, xuu40000, dge), new_esEs36(xuu500001, xuu40001, dge)) new_esEs10(xuu50001, xuu4001, ty_Float) -> new_esEs26(xuu50001, xuu4001) new_lt20(xuu620, xuu630, app(ty_Ratio, bfc)) -> new_lt12(xuu620, xuu630, bfc) new_primCompAux00(xuu37, xuu38, LT, bdd) -> LT new_esEs15(xuu500001, xuu40001, app(ty_[], ea)) -> new_esEs25(xuu500001, xuu40001, ea) new_ltEs23(xuu621, xuu631, app(app(ty_Either, fed), fee)) -> new_ltEs14(xuu621, xuu631, fed, fee) new_esEs7(xuu50000, xuu4000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(xuu50000, xuu4000, dhb, dhc, dhd) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs4(xuu69, xuu70) new_not(False) -> True new_ltEs20(xuu622, xuu632, ty_Bool) -> new_ltEs4(xuu622, xuu632) new_compare113(xuu188, xuu189, xuu190, xuu191, False, xuu193, cgc, cgd) -> new_compare114(xuu188, xuu189, xuu190, xuu191, xuu193, cgc, cgd) new_esEs28(Left(xuu500000), Left(xuu40000), app(app(ty_@2, ega), egb), dgg) -> new_esEs21(xuu500000, xuu40000, ega, egb) new_ltEs20(xuu622, xuu632, app(app(ty_@2, cac), cad)) -> new_ltEs17(xuu622, xuu632, cac, cad) new_esEs5(xuu50001, xuu4001, app(ty_Ratio, dfc)) -> new_esEs17(xuu50001, xuu4001, dfc) new_ltEs20(xuu622, xuu632, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs10(xuu622, xuu632, bhd, bhe, bhf) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs8(xuu50000, xuu4000, ty_Bool) -> new_esEs22(xuu50000, xuu4000) new_esEs4(xuu50002, xuu4002, ty_Double) -> new_esEs23(xuu50002, xuu4002) new_ltEs23(xuu621, xuu631, ty_@0) -> new_ltEs8(xuu621, xuu631) new_esEs29(xuu102, xuu105, ty_Float) -> new_esEs26(xuu102, xuu105) new_ltEs19(xuu62, xuu63, app(app(ty_@2, bdb), bdc)) -> new_ltEs17(xuu62, xuu63, bdb, bdc) new_ltEs7(xuu62, xuu63, bcb) -> new_fsEs(new_compare7(xuu62, xuu63, bcb)) new_lt22(xuu620, xuu630, app(ty_Ratio, fda)) -> new_lt12(xuu620, xuu630, fda) new_lt5(xuu101, xuu104, app(ty_Ratio, gf)) -> new_lt12(xuu101, xuu104, gf) new_lt22(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_lt18(xuu620, xuu630, fde, fdf) new_ltEs19(xuu62, xuu63, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs10(xuu62, xuu63, bcc, bcd, bce) new_esEs9(xuu50000, xuu4000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs13(xuu50000, xuu4000, dch, dda, ddb) new_esEs7(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_esEs8(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs38(xuu620, xuu630, app(app(ty_@2, fde), fdf)) -> new_esEs21(xuu620, xuu630, fde, fdf) new_compare27(xuu69, xuu70, False, ebe, ebf) -> new_compare116(xuu69, xuu70, new_ltEs22(xuu69, xuu70, ebf), ebe, ebf) new_esEs30(xuu101, xuu104, ty_Char) -> new_esEs27(xuu101, xuu104) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs13(xuu69, xuu70) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, ebh), eca), ecb)) -> new_ltEs10(xuu69, xuu70, ebh, eca, ecb) new_esEs31(xuu621, xuu631, app(app(ty_Either, bgf), bgg)) -> new_esEs28(xuu621, xuu631, bgf, bgg) new_compare13(False, False) -> EQ new_compare6(Double(xuu50000, Neg(xuu500010)), Double(xuu4000, Neg(xuu40010))) -> new_compare9(new_sr(xuu50000, Neg(xuu40010)), new_sr(Neg(xuu500010), xuu4000)) new_compare13(True, True) -> EQ new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs15(xuu500001, xuu40001, app(app(ty_@2, df), dg)) -> new_esEs21(xuu500001, xuu40001, df, dg) new_esEs33(xuu500001, xuu40001, ty_Float) -> new_esEs26(xuu500001, xuu40001) new_esEs29(xuu102, xuu105, ty_Char) -> new_esEs27(xuu102, xuu105) new_esEs24(Just(xuu500000), Just(xuu40000), app(ty_Ratio, cfa)) -> new_esEs17(xuu500000, xuu40000, cfa) new_esEs7(xuu50000, xuu4000, app(ty_Ratio, dha)) -> new_esEs17(xuu50000, xuu4000, dha) new_esEs38(xuu620, xuu630, app(ty_[], fce)) -> new_esEs25(xuu620, xuu630, fce) new_lt6(xuu102, xuu105, app(ty_[], hd)) -> new_lt7(xuu102, xuu105, hd) new_ltEs19(xuu62, xuu63, ty_Bool) -> new_ltEs4(xuu62, xuu63) new_esEs5(xuu50001, xuu4001, ty_Ordering) -> new_esEs12(xuu50001, xuu4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(xuu620, xuu630, ty_Double) -> new_esEs23(xuu620, xuu630) new_compare110(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, False, xuu180, cbg, cbh, cca) -> new_compare112(xuu173, xuu174, xuu175, xuu176, xuu177, xuu178, xuu180, cbg, cbh, cca) new_esEs9(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_primMulNat0(Succ(xuu400000), Succ(xuu5000100)) -> new_primPlusNat0(new_primMulNat0(xuu400000, Succ(xuu5000100)), xuu5000100) new_ltEs24(xuu115, xuu117, app(ty_Maybe, fhf)) -> new_ltEs15(xuu115, xuu117, fhf) new_ltEs24(xuu115, xuu117, ty_Char) -> new_ltEs13(xuu115, xuu117) new_esEs15(xuu500001, xuu40001, ty_Double) -> new_esEs23(xuu500001, xuu40001) new_lt5(xuu101, xuu104, ty_Double) -> new_lt4(xuu101, xuu104) new_esEs28(Left(xuu500000), Left(xuu40000), app(ty_Ratio, efe), dgg) -> new_esEs17(xuu500000, xuu40000, efe) new_lt5(xuu101, xuu104, app(ty_[], gb)) -> new_lt7(xuu101, xuu104, gb) new_lt21(xuu621, xuu631, ty_Double) -> new_lt4(xuu621, xuu631) new_ltEs24(xuu115, xuu117, ty_@0) -> new_ltEs8(xuu115, xuu117) new_ltEs14(Left(xuu620), Left(xuu630), app(ty_Maybe, fah), bch) -> new_ltEs15(xuu620, xuu630, fah) new_ltEs18(GT, EQ) -> False new_esEs9(xuu50000, xuu4000, ty_Integer) -> new_esEs20(xuu50000, xuu4000) new_compare18(@2(xuu50000, xuu50001), @2(xuu4000, xuu4001), cbe, cbf) -> new_compare28(xuu50000, xuu50001, xuu4000, xuu4001, new_asAs(new_esEs11(xuu50000, xuu4000, cbe), new_esEs10(xuu50001, xuu4001, cbf)), cbe, cbf) new_esEs24(Nothing, Nothing, ceh) -> True new_ltEs21(xuu76, xuu77, ty_Int) -> new_ltEs9(xuu76, xuu77) new_ltEs10(@3(xuu620, xuu621, xuu622), @3(xuu630, xuu631, xuu632), bcc, bcd, bce) -> new_pePe(new_lt20(xuu620, xuu630, bcc), new_asAs(new_esEs32(xuu620, xuu630, bcc), new_pePe(new_lt21(xuu621, xuu631, bcd), new_asAs(new_esEs31(xuu621, xuu631, bcd), new_ltEs20(xuu622, xuu632, bce))))) new_compare12(:%(xuu50000, xuu50001), :%(xuu4000, xuu4001), ty_Integer) -> new_compare17(new_sr0(xuu50000, xuu4001), new_sr0(xuu4000, xuu50001)) new_esEs14(xuu500002, xuu40002, ty_Double) -> new_esEs23(xuu500002, xuu40002) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt6(xuu102, xuu105, ty_Double) -> new_lt4(xuu102, xuu105) new_lt20(xuu620, xuu630, ty_Double) -> new_lt4(xuu620, xuu630) new_esEs8(xuu50000, xuu4000, ty_Int) -> new_esEs19(xuu50000, xuu4000) new_ltEs21(xuu76, xuu77, app(app(app(ty_@3, cha), chb), chc)) -> new_ltEs10(xuu76, xuu77, cha, chb, chc) new_compare25(xuu62, xuu63, False, bbh, bca) -> new_compare111(xuu62, xuu63, new_ltEs19(xuu62, xuu63, bbh), bbh, bca) new_primEqNat0(Zero, Zero) -> True new_esEs14(xuu500002, xuu40002, app(app(ty_@2, cc), cd)) -> new_esEs21(xuu500002, xuu40002, cc, cd) new_ltEs6(xuu103, xuu106, ty_Bool) -> new_ltEs4(xuu103, xuu106) new_ltEs20(xuu622, xuu632, ty_Int) -> new_ltEs9(xuu622, xuu632) new_esEs31(xuu621, xuu631, ty_Float) -> new_esEs26(xuu621, xuu631) new_lt23(xuu114, xuu116, app(app(ty_@2, fge), fgf)) -> new_lt18(xuu114, xuu116, fge, fgf) new_compare16(Nothing, Just(xuu4000), cbd) -> LT new_esEs24(Nothing, Just(xuu40000), ceh) -> False new_esEs24(Just(xuu500000), Nothing, ceh) -> False new_lt21(xuu621, xuu631, app(ty_[], bga)) -> new_lt7(xuu621, xuu631, bga) new_ltEs18(GT, GT) -> True new_asAs(False, xuu135) -> False new_esEs30(xuu101, xuu104, app(app(ty_Either, gg), gh)) -> new_esEs28(xuu101, xuu104, gg, gh) new_lt21(xuu621, xuu631, app(ty_Ratio, bge)) -> new_lt12(xuu621, xuu631, bge) new_esEs14(xuu500002, xuu40002, app(ty_[], cf)) -> new_esEs25(xuu500002, xuu40002, cf) new_ltEs6(xuu103, xuu106, ty_Int) -> new_ltEs9(xuu103, xuu106) new_esEs6(xuu50000, xuu4000, ty_Ordering) -> new_esEs12(xuu50000, xuu4000) new_lt6(xuu102, xuu105, app(ty_Ratio, hh)) -> new_lt12(xuu102, xuu105, hh) new_esEs8(xuu50000, xuu4000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs13(xuu50000, xuu4000, ead, eae, eaf) new_ltEs23(xuu621, xuu631, ty_Char) -> new_ltEs13(xuu621, xuu631) new_esEs29(xuu102, xuu105, app(app(ty_Either, baa), bab)) -> new_esEs28(xuu102, xuu105, baa, bab) The set Q consists of the following terms: new_esEs28(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs28(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, ty_Int) new_compare16(Just(x0), Just(x1), x2) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs28(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), ty_Double, x2) new_compare19(LT, GT) new_compare19(GT, LT) new_esEs35(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Char) new_pePe(False, x0) new_primPlusNat1(Zero, Zero) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs35(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Pos(Zero)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare27(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs20(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(Right(x0), Right(x1), x2, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(Nothing, Just(x0), x1) new_esEs24(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Int) new_esEs25([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs6(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs36(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, x2, x3) new_primCompAux00(x0, x1, EQ, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare13(False, False) new_esEs28(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Char) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_Float) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_esEs24(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Double) new_ltEs15(Just(x0), Just(x1), ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs11(x0, x1, x2) new_ltEs6(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_lt23(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Int) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(x0, x1, ty_Integer) new_esEs25(:(x0, x1), [], x2) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(True, True) new_esEs8(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_esEs15(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(GT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs4(True, True) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Ordering) new_esEs16(x0, x1, ty_Double) new_ltEs18(GT, GT) new_ltEs21(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_compare13(True, True) new_esEs19(x0, x1) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs30(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Char, x2) new_lt7(x0, x1, x2) new_esEs28(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, x2, x3, True, x4, x5) new_esEs5(x0, x1, ty_Char) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_compare0(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Ordering) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt19(x0, x1) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(Just(x0), Just(x1), ty_Ordering) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs14(x0, x1, ty_Ordering) new_compare19(EQ, GT) new_compare19(GT, EQ) new_ltEs24(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_lt12(x0, x1, x2) new_ltEs23(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_ltEs24(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_compare16(Just(x0), Nothing, x1) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_compare0(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs15(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Bool) new_compare0(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Int) new_lt6(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs31(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(LT, LT) new_esEs30(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs25([], [], x0) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_not(True) new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs15(Just(x0), Just(x1), ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Float) new_lt10(x0, x1, x2, x3, x4) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(True, False) new_ltEs4(False, True) new_ltEs19(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_esEs12(LT, LT) new_ltEs18(EQ, EQ) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs28(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs16(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare16(Nothing, Nothing, x0) new_esEs14(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(Left(x0), Left(x1), ty_@0, x2) new_lt5(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs25(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs21(x0, x1, ty_Float) new_ltEs4(False, False) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_sr0(Integer(x0), Integer(x1)) new_esEs28(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Int) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Bool) new_esEs28(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(x0, x1, ty_Integer) new_primMulInt(Neg(x0), Neg(x1)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs38(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Integer) new_esEs18(@0, @0) new_esEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_@0) new_ltEs7(x0, x1, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_Double) new_fsEs(x0) new_primEqNat0(Succ(x0), Zero) new_not(False) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_@0) new_lt6(x0, x1, ty_Float) new_esEs28(Right(x0), Right(x1), x2, ty_@0) new_ltEs15(Nothing, Nothing, x0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_compare19(EQ, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Float) new_compare27(x0, x1, True, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare7([], :(x0, x1), x2) new_esEs38(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_compare7(:(x0, x1), :(x2, x3), x4) new_lt23(x0, x1, ty_@0) new_compare15(Left(x0), Left(x1), x2, x3) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, EQ) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primCmpNat0(Zero, Succ(x0)) new_lt21(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Char) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(Char(x0), Char(x1)) new_ltEs21(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_lt23(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Integer) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs14(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Ordering) new_esEs15(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), x1) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs16(x0, x1, ty_Bool) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_asAs(True, x0) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_esEs24(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_compare116(x0, x1, True, x2, x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs39(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs6(x0, x1, ty_@0) new_compare16(Nothing, Just(x0), x1) new_compare7([], [], x0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, LT, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs39(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs8(x0, x1, ty_Ordering) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_[], x2)) new_compare8(@0, @0) new_esEs4(x0, x1, ty_Integer) new_ltEs18(EQ, GT) new_ltEs18(GT, EQ) new_lt22(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs16(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs22(False, True) new_esEs22(True, False) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs15(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs15(Just(x0), Just(x1), ty_Int) new_sr(x0, x1) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_ltEs6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs28(Left(x0), Left(x1), ty_Bool, x2) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt22(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_primPlusNat1(Succ(x0), Succ(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare111(x0, x1, False, x2, x3) new_esEs7(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs28(Right(x0), Right(x1), x2, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_@0) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare0(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs6(x0, x1, ty_Float) new_esEs15(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_@0) new_pePe(True, x0) new_lt20(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs20(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_compare15(Left(x0), Right(x1), x2, x3) new_compare15(Right(x0), Left(x1), x2, x3) new_ltEs9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_@0) new_compare0(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare0(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(LT, LT) new_esEs15(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Char) new_ltEs15(Just(x0), Just(x1), ty_Integer) new_esEs32(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt6(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs28(Left(x0), Left(x1), ty_Integer, x2) new_lt16(x0, x1, x2) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, ty_Float) new_esEs16(x0, x1, ty_@0) new_ltEs15(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, app(ty_[], x2)) new_ltEs10(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt13(x0, x1) new_lt22(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False, x2) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_lt6(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Int) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs28(Left(x0), Left(x1), ty_Float, x2) new_lt5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Bool) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs27(Char(x0), Char(x1)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs16(x0, x1, app(ty_Ratio, x2)) new_compare17(Integer(x0), Integer(x1)) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Int) new_esEs28(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs28(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(Just(x0), Just(x1), ty_Float) new_compare26(x0, x1, True, x2) new_compare7(:(x0, x1), [], x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Float) new_lt22(x0, x1, ty_Bool) new_esEs15(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare15(Right(x0), Right(x1), x2, x3) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs15(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) new_compare116(x0, x1, False, x2, x3) new_esEs7(x0, x1, ty_Double) new_primMulNat0(Succ(x0), Zero) new_esEs15(x0, x1, ty_Double) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs18(EQ, LT) new_ltEs18(LT, EQ) new_esEs39(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Bool) new_compare9(x0, x1) new_esEs39(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Bool) new_esEs28(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs24(x0, x1, ty_Ordering) new_esEs28(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_ltEs15(Just(x0), Just(x1), ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Bool) new_ltEs15(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Double) new_ltEs12(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare0(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs26(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, x0) new_compare0(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_lt22(x0, x1, ty_Integer) new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_compare0(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Double) new_esEs16(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt11(x0, x1) new_ltEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_lt15(x0, x1, x2, x3) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs16(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Bool) new_esEs24(Nothing, Just(x0), x1) new_esEs39(x0, x1, ty_@0) new_esEs28(Right(x0), Right(x1), x2, ty_Double) new_esEs33(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs22(False, False) new_compare0(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Char) new_ltEs18(GT, LT) new_ltEs18(LT, GT) new_compare19(LT, EQ) new_compare19(EQ, LT) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs28(Left(x0), Right(x1), x2, x3) new_esEs28(Right(x0), Left(x1), x2, x3) new_compare18(@2(x0, x1), @2(x2, x3), x4, x5) new_compare13(True, False) new_compare13(False, True) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_compare25(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs24(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_ltEs22(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_compare114(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1) new_compare19(GT, GT) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primCompAux00(x0, x1, EQ, ty_Double) new_esEs16(x0, x1, ty_Float) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Double) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, ty_Int) new_compare111(x0, x1, True, x2, x3) new_ltEs22(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare115(x0, x1, False, x2) new_esEs28(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C(xuu18, xuu24, :(xuu25, xuu26), xuu27, h, ba) The graph contains the following edges 1 >= 1, 7 >= 2, 10 >= 4, 12 >= 5, 13 >= 6 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, GT, h, ba) -> new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 12 >= 11, 13 >= 12 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, EQ, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 12 >= 12, 13 >= 13 *new_addToFM_C20(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, h, ba) -> new_addToFM_C1(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, new_compare7(:(xuu25, xuu26), :(xuu19, xuu20), h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 11 >= 12, 12 >= 13 *new_addToFM_C2(xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, xuu25, xuu26, xuu27, LT, h, ba) -> new_addToFM_C(xuu18, xuu23, :(xuu25, xuu26), xuu27, h, ba) The graph contains the following edges 1 >= 1, 6 >= 2, 10 >= 4, 12 >= 5, 13 >= 6 *new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) -> new_addToFM_C(xuu3, xuu44, :(xuu5000, xuu5001), xuu501, bb, bc) The graph contains the following edges 1 >= 1, 5 >= 2, 8 >= 4, 10 >= 5, 11 >= 6 *new_addToFM_C(xuu3, Branch(:(xuu400, xuu401), xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C2(xuu3, xuu400, xuu401, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, new_primCompAux1(xuu5000, xuu400, xuu5001, xuu401, bb), bb, bc) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 2 > 6, 2 > 7, 3 > 8, 3 > 9, 4 >= 10, 5 >= 12, 6 >= 13 *new_addToFM_C(xuu3, Branch([], xuu41, xuu42, xuu43, xuu44), :(xuu5000, xuu5001), xuu501, bb, bc) -> new_addToFM_C10(xuu3, xuu41, xuu42, xuu43, xuu44, xuu5000, xuu5001, xuu501, GT, bb, bc) The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 2 > 4, 2 > 5, 3 > 6, 3 > 7, 4 >= 8, 5 >= 10, 6 >= 11 ---------------------------------------- (39) YES ---------------------------------------- (40) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) 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_foldl(xuu3, :(xuu50, xuu51), h, ba) -> new_foldl(xuu3, xuu51, h, ba) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (42) YES ---------------------------------------- (43) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu5000000), Succ(xuu400000)) -> new_primEqNat(xuu5000000, xuu400000) 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(xuu5000000), Succ(xuu400000)) -> new_primEqNat(xuu5000000, xuu400000) 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(xuu21200), Succ(xuu21100)) -> new_primMinusNat(xuu21200, xuu21100) 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(xuu21200), Succ(xuu21100)) -> new_primMinusNat(xuu21200, xuu21100) 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(xuu21200), Succ(xuu21100)) -> new_primPlusNat(xuu21200, xuu21100) 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(xuu21200), Succ(xuu21100)) -> new_primPlusNat(xuu21200, xuu21100) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (51) YES