14.81/5.93 YES 17.72/6.71 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 17.72/6.71 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 17.72/6.71 17.72/6.71 17.72/6.71 H-Termination with start terms of the given HASKELL could be proven: 17.72/6.71 17.72/6.71 (0) HASKELL 17.72/6.71 (1) LR [EQUIVALENT, 0 ms] 17.72/6.71 (2) HASKELL 17.72/6.71 (3) CR [EQUIVALENT, 0 ms] 17.72/6.71 (4) HASKELL 17.72/6.71 (5) IFR [EQUIVALENT, 0 ms] 17.72/6.71 (6) HASKELL 17.72/6.71 (7) BR [EQUIVALENT, 0 ms] 17.72/6.71 (8) HASKELL 17.72/6.71 (9) COR [EQUIVALENT, 12 ms] 17.72/6.71 (10) HASKELL 17.72/6.71 (11) NumRed [SOUND, 0 ms] 17.72/6.71 (12) HASKELL 17.72/6.71 (13) Narrow [SOUND, 0 ms] 17.72/6.71 (14) AND 17.72/6.71 (15) QDP 17.72/6.71 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.71 (17) YES 17.72/6.71 (18) QDP 17.72/6.71 (19) QDPSizeChangeProof [EQUIVALENT, 22 ms] 17.72/6.71 (20) YES 17.72/6.71 (21) QDP 17.72/6.71 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.71 (23) YES 17.72/6.71 (24) QDP 17.72/6.71 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.71 (26) YES 17.72/6.71 (27) QDP 17.72/6.71 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.71 (29) YES 17.72/6.71 (30) QDP 17.72/6.71 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.72/6.71 (32) YES 17.72/6.71 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (0) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : _) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (\vv1 ->case vv1 of { 17.72/6.71 (x,i)-> if p x then i : [] else []; 17.72/6.71 _-> []; 17.72/6.71 } ) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (1) LR (EQUIVALENT) 17.72/6.71 Lambda Reductions: 17.72/6.71 The following Lambda expression 17.72/6.71 "\ab->(a,b)" 17.72/6.71 is transformed to 17.72/6.71 "zip0 a b = (a,b); 17.72/6.71 " 17.72/6.71 The following Lambda expression 17.72/6.71 "\vv1->case vv1 of { 17.72/6.71 (x,i) -> if p x then i : [] else []; 17.72/6.71 _ -> []} 17.72/6.71 " 17.72/6.71 is transformed to 17.72/6.71 "findIndices0 p vv1 = case vv1 of { 17.72/6.71 (x,i) -> if p x then i : [] else []; 17.72/6.71 _ -> []} 17.72/6.71 ; 17.72/6.71 " 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (2) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : _) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = case vv1 of { 17.72/6.71 (x,i)-> if p x then i : [] else []; 17.72/6.71 _-> []; 17.72/6.71 } ; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (3) CR (EQUIVALENT) 17.72/6.71 Case Reductions: 17.72/6.71 The following Case expression 17.72/6.71 "case vv1 of { 17.72/6.71 (x,i) -> if p x then i : [] else []; 17.72/6.71 _ -> []} 17.72/6.71 " 17.72/6.71 is transformed to 17.72/6.71 "findIndices00 p (x,i) = if p x then i : [] else []; 17.72/6.71 findIndices00 p _ = []; 17.72/6.71 " 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (4) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : _) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.71 17.72/6.71 findIndices00 p (x,i) = if p x then i : [] else []; 17.72/6.71 findIndices00 p _ = []; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (5) IFR (EQUIVALENT) 17.72/6.71 If Reductions: 17.72/6.71 The following If expression 17.72/6.71 "if p x then i : [] else []" 17.72/6.71 is transformed to 17.72/6.71 "findIndices000 i True = i : []; 17.72/6.71 findIndices000 i False = []; 17.72/6.71 " 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (6) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : _) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.71 17.72/6.71 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.71 findIndices00 p _ = []; 17.72/6.71 17.72/6.71 findIndices000 i True = i : []; 17.72/6.71 findIndices000 i False = []; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (7) BR (EQUIVALENT) 17.72/6.71 Replaced joker patterns by fresh variables and removed binding patterns. 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (8) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : xz) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.71 17.72/6.71 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.71 findIndices00 p yu = []; 17.72/6.71 17.72/6.71 findIndices000 i True = i : []; 17.72/6.71 findIndices000 i False = []; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (9) COR (EQUIVALENT) 17.72/6.71 Cond Reductions: 17.72/6.71 The following Function with conditions 17.72/6.71 "undefined |Falseundefined; 17.72/6.71 " 17.72/6.71 is transformed to 17.72/6.71 "undefined = undefined1; 17.72/6.71 " 17.72/6.71 "undefined0 True = undefined; 17.72/6.71 " 17.72/6.71 "undefined1 = undefined0 False; 17.72/6.71 " 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (10) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : xz) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.71 17.72/6.71 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.71 findIndices00 p yu = []; 17.72/6.71 17.72/6.71 findIndices000 i True = i : []; 17.72/6.71 findIndices000 i False = []; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (11) NumRed (SOUND) 17.72/6.71 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (12) 17.72/6.71 Obligation: 17.72/6.71 mainModule Main 17.72/6.71 module Maybe where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Prelude; 17.72/6.71 listToMaybe :: [a] -> Maybe a; 17.72/6.71 listToMaybe [] = Nothing; 17.72/6.71 listToMaybe (a : xz) = Just a; 17.72/6.71 17.72/6.71 } 17.72/6.71 module List where { 17.72/6.71 import qualified Main; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.72/6.71 elemIndex x = findIndex (== x); 17.72/6.71 17.72/6.71 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.72/6.71 findIndex p = Maybe.listToMaybe . findIndices p; 17.72/6.71 17.72/6.71 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.72/6.71 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); 17.72/6.71 17.72/6.71 findIndices0 p vv1 = findIndices00 p vv1; 17.72/6.71 17.72/6.71 findIndices00 p (x,i) = findIndices000 i (p x); 17.72/6.71 findIndices00 p yu = []; 17.72/6.71 17.72/6.71 findIndices000 i True = i : []; 17.72/6.71 findIndices000 i False = []; 17.72/6.71 17.72/6.71 } 17.72/6.71 module Main where { 17.72/6.71 import qualified List; 17.72/6.71 import qualified Maybe; 17.72/6.71 import qualified Prelude; 17.72/6.71 } 17.72/6.71 17.72/6.71 ---------------------------------------- 17.72/6.71 17.72/6.71 (13) Narrow (SOUND) 17.72/6.71 Haskell To QDPs 17.72/6.71 17.72/6.71 digraph dp_graph { 17.72/6.71 node [outthreshold=100, inthreshold=100];1[label="List.elemIndex",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 17.72/6.71 3[label="List.elemIndex yv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 17.72/6.71 4[label="List.elemIndex yv3 yv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 17.72/6.71 5[label="List.findIndex (yv3 ==) yv4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 17.72/6.71 6[label="Maybe.listToMaybe . List.findIndices (yv3 ==)",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 17.72/6.71 7[label="Maybe.listToMaybe (List.findIndices (yv3 ==) yv4)",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 17.72/6.71 8[label="Maybe.listToMaybe (concatMap (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero))))",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 17.72/6.71 9[label="Maybe.listToMaybe (concat . map (List.findIndices0 (yv3 ==)))",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 17.72/6.71 10[label="Maybe.listToMaybe (concat (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 17.72/6.71 11[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 17.72/6.71 12[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="burlywood",shape="box"];1605[label="yv4/yv40 : yv41",fontsize=10,color="white",style="solid",shape="box"];12 -> 1605[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1605 -> 13[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1606[label="yv4/[]",fontsize=10,color="white",style="solid",shape="box"];12 -> 1606[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1606 -> 14[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 13[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 17.72/6.71 14[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 [] (enumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 17.72/6.71 15[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (numericEnumFrom (Pos Zero)))))",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 17.72/6.71 16[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) []))",fontsize=16,color="black",shape="triangle"];16 -> 18[label="",style="solid", color="black", weight=3]; 17.72/6.71 17[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 (yv40 : yv41) (Pos Zero : (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 17.72/6.71 18[label="Maybe.listToMaybe (foldr (++) [] [])",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 17.72/6.71 19[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zip0 yv40 (Pos Zero) : zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 17.72/6.71 20[label="Maybe.listToMaybe []",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 17.72/6.71 21[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) : map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];21 -> 23[label="",style="solid", color="black", weight=3]; 17.72/6.71 22[label="Nothing",fontsize=16,color="green",shape="box"];23[label="Maybe.listToMaybe ((++) List.findIndices0 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];23 -> 24[label="",style="solid", color="black", weight=3]; 17.72/6.71 24[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (zip0 yv40 (Pos Zero)) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];24 -> 25[label="",style="solid", color="black", weight=3]; 17.72/6.71 25[label="Maybe.listToMaybe ((++) List.findIndices00 (yv3 ==) (yv40,Pos Zero) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];25 -> 26[label="",style="solid", color="black", weight=3]; 17.72/6.71 26[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv3 == yv40) foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1607[label="yv3/Left yv30",fontsize=10,color="white",style="solid",shape="box"];26 -> 1607[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1607 -> 27[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1608[label="yv3/Right yv30",fontsize=10,color="white",style="solid",shape="box"];26 -> 1608[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1608 -> 28[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 27[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == yv40) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1609[label="yv40/Left yv400",fontsize=10,color="white",style="solid",shape="box"];27 -> 1609[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1609 -> 29[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1610[label="yv40/Right yv400",fontsize=10,color="white",style="solid",shape="box"];27 -> 1610[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1610 -> 30[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 28[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == yv40) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1611[label="yv40/Left yv400",fontsize=10,color="white",style="solid",shape="box"];28 -> 1611[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1611 -> 31[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1612[label="yv40/Right yv400",fontsize=10,color="white",style="solid",shape="box"];28 -> 1612[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1612 -> 32[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 29[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == Left yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 17.72/6.71 30[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Left yv30 == Right yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 17.72/6.71 31[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == Left yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 17.72/6.71 32[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (Right yv30 == Right yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 17.72/6.71 33 -> 801[label="",style="dashed", color="red", weight=0]; 17.72/6.71 33[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400) foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];33 -> 802[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 33 -> 803[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 33 -> 804[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 33 -> 805[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 33 -> 806[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 34 -> 801[label="",style="dashed", color="red", weight=0]; 17.72/6.71 34[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 (Left yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];34 -> 807[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 34 -> 808[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 34 -> 809[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 34 -> 810[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 34 -> 811[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 35 -> 833[label="",style="dashed", color="red", weight=0]; 17.72/6.71 35[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) False foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];35 -> 834[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 35 -> 835[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 35 -> 836[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 35 -> 837[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 35 -> 838[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 36 -> 833[label="",style="dashed", color="red", weight=0]; 17.72/6.71 36[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400) foldr (++) [] (map (List.findIndices0 (Right yv30 ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];36 -> 839[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 36 -> 840[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 36 -> 841[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 36 -> 842[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 36 -> 843[label="",style="dashed", color="magenta", weight=3]; 17.72/6.71 802[label="Zero",fontsize=16,color="green",shape="box"];803[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];1613[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1613[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1613 -> 817[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1614[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1614[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1614 -> 818[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1615[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1615[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1615 -> 819[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1616[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1616[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1616 -> 820[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1617[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1617[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1617 -> 821[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1618[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1618[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1618 -> 822[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1619[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1619[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1619 -> 823[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1620[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1620[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1620 -> 824[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1621[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1621[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1621 -> 825[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1622[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1622[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1622 -> 826[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1623[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1623[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1623 -> 827[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1624[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1624[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1624 -> 828[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1625[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1625[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1625 -> 829[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1626[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];803 -> 1626[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1626 -> 830[label="",style="solid", color="blue", weight=3]; 17.72/6.71 804[label="Zero",fontsize=16,color="green",shape="box"];805[label="yv30",fontsize=16,color="green",shape="box"];806[label="yv41",fontsize=16,color="green",shape="box"];801[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv33) yv37 foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1627[label="yv37/False",fontsize=10,color="white",style="solid",shape="box"];801 -> 1627[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1627 -> 831[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1628[label="yv37/True",fontsize=10,color="white",style="solid",shape="box"];801 -> 1628[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1628 -> 832[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 807[label="Zero",fontsize=16,color="green",shape="box"];808[label="False",fontsize=16,color="green",shape="box"];809[label="Zero",fontsize=16,color="green",shape="box"];810[label="yv30",fontsize=16,color="green",shape="box"];811[label="yv41",fontsize=16,color="green",shape="box"];834[label="Zero",fontsize=16,color="green",shape="box"];835[label="False",fontsize=16,color="green",shape="box"];836[label="yv30",fontsize=16,color="green",shape="box"];837[label="yv41",fontsize=16,color="green",shape="box"];838[label="Zero",fontsize=16,color="green",shape="box"];833[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) yv38 foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];1629[label="yv38/False",fontsize=10,color="white",style="solid",shape="box"];833 -> 1629[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1629 -> 849[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 1630[label="yv38/True",fontsize=10,color="white",style="solid",shape="box"];833 -> 1630[label="",style="solid", color="burlywood", weight=9]; 17.72/6.71 1630 -> 850[label="",style="solid", color="burlywood", weight=3]; 17.72/6.71 839[label="Zero",fontsize=16,color="green",shape="box"];840[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];1631[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1631[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1631 -> 851[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1632[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1632[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1632 -> 852[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1633[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1633[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1633 -> 853[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1634[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1634[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1634 -> 854[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1635[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1635[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1635 -> 855[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1636[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1636[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1636 -> 856[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1637[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1637[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1637 -> 857[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1638[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1638[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1638 -> 858[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1639[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1639[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1639 -> 859[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1640[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1640[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1640 -> 860[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1641[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1641[label="",style="solid", color="blue", weight=9]; 17.72/6.71 1641 -> 861[label="",style="solid", color="blue", weight=3]; 17.72/6.71 1642[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1642[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1642 -> 862[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1643[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1643[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1643 -> 863[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1644[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];840 -> 1644[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1644 -> 864[label="",style="solid", color="blue", weight=3]; 17.87/6.71 841[label="yv30",fontsize=16,color="green",shape="box"];842[label="yv41",fontsize=16,color="green",shape="box"];843[label="Zero",fontsize=16,color="green",shape="box"];817[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1645[label="yv30/LT",fontsize=10,color="white",style="solid",shape="box"];817 -> 1645[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1645 -> 865[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1646[label="yv30/EQ",fontsize=10,color="white",style="solid",shape="box"];817 -> 1646[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1646 -> 866[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1647[label="yv30/GT",fontsize=10,color="white",style="solid",shape="box"];817 -> 1647[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1647 -> 867[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 818[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1648[label="yv30/Integer yv300",fontsize=10,color="white",style="solid",shape="box"];818 -> 1648[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1648 -> 868[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 819[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];819 -> 869[label="",style="solid", color="black", weight=3]; 17.87/6.71 820[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];820 -> 870[label="",style="solid", color="black", weight=3]; 17.87/6.71 821[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1649[label="yv30/yv300 :% yv301",fontsize=10,color="white",style="solid",shape="box"];821 -> 1649[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1649 -> 871[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 822[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1650[label="yv30/()",fontsize=10,color="white",style="solid",shape="box"];822 -> 1650[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1650 -> 872[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 823[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1651[label="yv30/yv300 : yv301",fontsize=10,color="white",style="solid",shape="box"];823 -> 1651[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1651 -> 873[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1652[label="yv30/[]",fontsize=10,color="white",style="solid",shape="box"];823 -> 1652[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1652 -> 874[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 824[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1653[label="yv30/False",fontsize=10,color="white",style="solid",shape="box"];824 -> 1653[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1653 -> 875[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1654[label="yv30/True",fontsize=10,color="white",style="solid",shape="box"];824 -> 1654[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1654 -> 876[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 825[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];825 -> 877[label="",style="solid", color="black", weight=3]; 17.87/6.71 826[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1655[label="yv30/Left yv300",fontsize=10,color="white",style="solid",shape="box"];826 -> 1655[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1655 -> 878[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1656[label="yv30/Right yv300",fontsize=10,color="white",style="solid",shape="box"];826 -> 1656[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1656 -> 879[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 827[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1657[label="yv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];827 -> 1657[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1657 -> 880[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1658[label="yv30/Just yv300",fontsize=10,color="white",style="solid",shape="box"];827 -> 1658[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1658 -> 881[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 828[label="yv30 == yv400",fontsize=16,color="black",shape="triangle"];828 -> 882[label="",style="solid", color="black", weight=3]; 17.87/6.71 829[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1659[label="yv30/(yv300,yv301)",fontsize=10,color="white",style="solid",shape="box"];829 -> 1659[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1659 -> 883[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 830[label="yv30 == yv400",fontsize=16,color="burlywood",shape="triangle"];1660[label="yv30/(yv300,yv301,yv302)",fontsize=10,color="white",style="solid",shape="box"];830 -> 1660[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1660 -> 884[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 831[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv33) False foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];831 -> 885[label="",style="solid", color="black", weight=3]; 17.87/6.71 832[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv33) True foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];832 -> 886[label="",style="solid", color="black", weight=3]; 17.87/6.71 849[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) False foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];849 -> 887[label="",style="solid", color="black", weight=3]; 17.87/6.71 850[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv35) True foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];850 -> 888[label="",style="solid", color="black", weight=3]; 17.87/6.71 851 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 851[label="yv30 == yv400",fontsize=16,color="magenta"];851 -> 889[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 851 -> 890[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 852 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 852[label="yv30 == yv400",fontsize=16,color="magenta"];852 -> 891[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 852 -> 892[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 853 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 853[label="yv30 == yv400",fontsize=16,color="magenta"];853 -> 893[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 853 -> 894[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 854 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 854[label="yv30 == yv400",fontsize=16,color="magenta"];854 -> 895[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 854 -> 896[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 855 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 855[label="yv30 == yv400",fontsize=16,color="magenta"];855 -> 897[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 855 -> 898[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 856 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 856[label="yv30 == yv400",fontsize=16,color="magenta"];856 -> 899[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 856 -> 900[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 857 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 857[label="yv30 == yv400",fontsize=16,color="magenta"];857 -> 901[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 857 -> 902[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 858 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 858[label="yv30 == yv400",fontsize=16,color="magenta"];858 -> 903[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 858 -> 904[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 859 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 859[label="yv30 == yv400",fontsize=16,color="magenta"];859 -> 905[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 859 -> 906[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 860 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 860[label="yv30 == yv400",fontsize=16,color="magenta"];860 -> 907[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 860 -> 908[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 861 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 861[label="yv30 == yv400",fontsize=16,color="magenta"];861 -> 909[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 861 -> 910[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 862 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 862[label="yv30 == yv400",fontsize=16,color="magenta"];862 -> 911[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 862 -> 912[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 863 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 863[label="yv30 == yv400",fontsize=16,color="magenta"];863 -> 913[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 863 -> 914[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 864 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 864[label="yv30 == yv400",fontsize=16,color="magenta"];864 -> 915[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 864 -> 916[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 865[label="LT == yv400",fontsize=16,color="burlywood",shape="box"];1661[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];865 -> 1661[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1661 -> 917[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1662[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];865 -> 1662[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1662 -> 918[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1663[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];865 -> 1663[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1663 -> 919[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 866[label="EQ == yv400",fontsize=16,color="burlywood",shape="box"];1664[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];866 -> 1664[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1664 -> 920[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1665[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];866 -> 1665[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1665 -> 921[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1666[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];866 -> 1666[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1666 -> 922[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 867[label="GT == yv400",fontsize=16,color="burlywood",shape="box"];1667[label="yv400/LT",fontsize=10,color="white",style="solid",shape="box"];867 -> 1667[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1667 -> 923[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1668[label="yv400/EQ",fontsize=10,color="white",style="solid",shape="box"];867 -> 1668[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1668 -> 924[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1669[label="yv400/GT",fontsize=10,color="white",style="solid",shape="box"];867 -> 1669[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1669 -> 925[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 868[label="Integer yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1670[label="yv400/Integer yv4000",fontsize=10,color="white",style="solid",shape="box"];868 -> 1670[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1670 -> 926[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 869[label="primEqFloat yv30 yv400",fontsize=16,color="burlywood",shape="box"];1671[label="yv30/Float yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];869 -> 1671[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1671 -> 927[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 870[label="primEqChar yv30 yv400",fontsize=16,color="burlywood",shape="box"];1672[label="yv30/Char yv300",fontsize=10,color="white",style="solid",shape="box"];870 -> 1672[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1672 -> 928[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 871[label="yv300 :% yv301 == yv400",fontsize=16,color="burlywood",shape="box"];1673[label="yv400/yv4000 :% yv4001",fontsize=10,color="white",style="solid",shape="box"];871 -> 1673[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1673 -> 929[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 872[label="() == yv400",fontsize=16,color="burlywood",shape="box"];1674[label="yv400/()",fontsize=10,color="white",style="solid",shape="box"];872 -> 1674[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1674 -> 930[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 873[label="yv300 : yv301 == yv400",fontsize=16,color="burlywood",shape="box"];1675[label="yv400/yv4000 : yv4001",fontsize=10,color="white",style="solid",shape="box"];873 -> 1675[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1675 -> 931[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1676[label="yv400/[]",fontsize=10,color="white",style="solid",shape="box"];873 -> 1676[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1676 -> 932[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 874[label="[] == yv400",fontsize=16,color="burlywood",shape="box"];1677[label="yv400/yv4000 : yv4001",fontsize=10,color="white",style="solid",shape="box"];874 -> 1677[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1677 -> 933[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1678[label="yv400/[]",fontsize=10,color="white",style="solid",shape="box"];874 -> 1678[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1678 -> 934[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 875[label="False == yv400",fontsize=16,color="burlywood",shape="box"];1679[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];875 -> 1679[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1679 -> 935[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1680[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];875 -> 1680[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1680 -> 936[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 876[label="True == yv400",fontsize=16,color="burlywood",shape="box"];1681[label="yv400/False",fontsize=10,color="white",style="solid",shape="box"];876 -> 1681[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1681 -> 937[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1682[label="yv400/True",fontsize=10,color="white",style="solid",shape="box"];876 -> 1682[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1682 -> 938[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 877[label="primEqInt yv30 yv400",fontsize=16,color="burlywood",shape="triangle"];1683[label="yv30/Pos yv300",fontsize=10,color="white",style="solid",shape="box"];877 -> 1683[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1683 -> 939[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1684[label="yv30/Neg yv300",fontsize=10,color="white",style="solid",shape="box"];877 -> 1684[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1684 -> 940[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 878[label="Left yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1685[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];878 -> 1685[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1685 -> 941[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1686[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];878 -> 1686[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1686 -> 942[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 879[label="Right yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1687[label="yv400/Left yv4000",fontsize=10,color="white",style="solid",shape="box"];879 -> 1687[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1687 -> 943[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1688[label="yv400/Right yv4000",fontsize=10,color="white",style="solid",shape="box"];879 -> 1688[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1688 -> 944[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 880[label="Nothing == yv400",fontsize=16,color="burlywood",shape="box"];1689[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];880 -> 1689[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1689 -> 945[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1690[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];880 -> 1690[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1690 -> 946[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 881[label="Just yv300 == yv400",fontsize=16,color="burlywood",shape="box"];1691[label="yv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];881 -> 1691[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1691 -> 947[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1692[label="yv400/Just yv4000",fontsize=10,color="white",style="solid",shape="box"];881 -> 1692[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1692 -> 948[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 882[label="primEqDouble yv30 yv400",fontsize=16,color="burlywood",shape="box"];1693[label="yv30/Double yv300 yv301",fontsize=10,color="white",style="solid",shape="box"];882 -> 1693[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1693 -> 949[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 883[label="(yv300,yv301) == yv400",fontsize=16,color="burlywood",shape="box"];1694[label="yv400/(yv4000,yv4001)",fontsize=10,color="white",style="solid",shape="box"];883 -> 1694[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1694 -> 950[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 884[label="(yv300,yv301,yv302) == yv400",fontsize=16,color="burlywood",shape="box"];1695[label="yv400/(yv4000,yv4001,yv4002)",fontsize=10,color="white",style="solid",shape="box"];884 -> 1695[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1695 -> 951[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 885[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];885 -> 952[label="",style="solid", color="black", weight=3]; 17.87/6.71 886[label="Maybe.listToMaybe ((++) (Pos yv33 : []) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];886 -> 953[label="",style="solid", color="black", weight=3]; 17.87/6.71 887[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];887 -> 954[label="",style="solid", color="black", weight=3]; 17.87/6.71 888[label="Maybe.listToMaybe ((++) (Pos yv35 : []) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];888 -> 955[label="",style="solid", color="black", weight=3]; 17.87/6.71 889[label="yv30",fontsize=16,color="green",shape="box"];890[label="yv400",fontsize=16,color="green",shape="box"];891[label="yv30",fontsize=16,color="green",shape="box"];892[label="yv400",fontsize=16,color="green",shape="box"];893[label="yv30",fontsize=16,color="green",shape="box"];894[label="yv400",fontsize=16,color="green",shape="box"];895[label="yv30",fontsize=16,color="green",shape="box"];896[label="yv400",fontsize=16,color="green",shape="box"];897[label="yv30",fontsize=16,color="green",shape="box"];898[label="yv400",fontsize=16,color="green",shape="box"];899[label="yv30",fontsize=16,color="green",shape="box"];900[label="yv400",fontsize=16,color="green",shape="box"];901[label="yv30",fontsize=16,color="green",shape="box"];902[label="yv400",fontsize=16,color="green",shape="box"];903[label="yv30",fontsize=16,color="green",shape="box"];904[label="yv400",fontsize=16,color="green",shape="box"];905[label="yv30",fontsize=16,color="green",shape="box"];906[label="yv400",fontsize=16,color="green",shape="box"];907[label="yv30",fontsize=16,color="green",shape="box"];908[label="yv400",fontsize=16,color="green",shape="box"];909[label="yv30",fontsize=16,color="green",shape="box"];910[label="yv400",fontsize=16,color="green",shape="box"];911[label="yv30",fontsize=16,color="green",shape="box"];912[label="yv400",fontsize=16,color="green",shape="box"];913[label="yv30",fontsize=16,color="green",shape="box"];914[label="yv400",fontsize=16,color="green",shape="box"];915[label="yv30",fontsize=16,color="green",shape="box"];916[label="yv400",fontsize=16,color="green",shape="box"];917[label="LT == LT",fontsize=16,color="black",shape="box"];917 -> 956[label="",style="solid", color="black", weight=3]; 17.87/6.71 918[label="LT == EQ",fontsize=16,color="black",shape="box"];918 -> 957[label="",style="solid", color="black", weight=3]; 17.87/6.71 919[label="LT == GT",fontsize=16,color="black",shape="box"];919 -> 958[label="",style="solid", color="black", weight=3]; 17.87/6.71 920[label="EQ == LT",fontsize=16,color="black",shape="box"];920 -> 959[label="",style="solid", color="black", weight=3]; 17.87/6.71 921[label="EQ == EQ",fontsize=16,color="black",shape="box"];921 -> 960[label="",style="solid", color="black", weight=3]; 17.87/6.71 922[label="EQ == GT",fontsize=16,color="black",shape="box"];922 -> 961[label="",style="solid", color="black", weight=3]; 17.87/6.71 923[label="GT == LT",fontsize=16,color="black",shape="box"];923 -> 962[label="",style="solid", color="black", weight=3]; 17.87/6.71 924[label="GT == EQ",fontsize=16,color="black",shape="box"];924 -> 963[label="",style="solid", color="black", weight=3]; 17.87/6.71 925[label="GT == GT",fontsize=16,color="black",shape="box"];925 -> 964[label="",style="solid", color="black", weight=3]; 17.87/6.71 926[label="Integer yv300 == Integer yv4000",fontsize=16,color="black",shape="box"];926 -> 965[label="",style="solid", color="black", weight=3]; 17.87/6.71 927[label="primEqFloat (Float yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];1696[label="yv400/Float yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];927 -> 1696[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1696 -> 966[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 928[label="primEqChar (Char yv300) yv400",fontsize=16,color="burlywood",shape="box"];1697[label="yv400/Char yv4000",fontsize=10,color="white",style="solid",shape="box"];928 -> 1697[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1697 -> 967[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 929[label="yv300 :% yv301 == yv4000 :% yv4001",fontsize=16,color="black",shape="box"];929 -> 968[label="",style="solid", color="black", weight=3]; 17.87/6.71 930[label="() == ()",fontsize=16,color="black",shape="box"];930 -> 969[label="",style="solid", color="black", weight=3]; 17.87/6.71 931[label="yv300 : yv301 == yv4000 : yv4001",fontsize=16,color="black",shape="box"];931 -> 970[label="",style="solid", color="black", weight=3]; 17.87/6.71 932[label="yv300 : yv301 == []",fontsize=16,color="black",shape="box"];932 -> 971[label="",style="solid", color="black", weight=3]; 17.87/6.71 933[label="[] == yv4000 : yv4001",fontsize=16,color="black",shape="box"];933 -> 972[label="",style="solid", color="black", weight=3]; 17.87/6.71 934[label="[] == []",fontsize=16,color="black",shape="box"];934 -> 973[label="",style="solid", color="black", weight=3]; 17.87/6.71 935[label="False == False",fontsize=16,color="black",shape="box"];935 -> 974[label="",style="solid", color="black", weight=3]; 17.87/6.71 936[label="False == True",fontsize=16,color="black",shape="box"];936 -> 975[label="",style="solid", color="black", weight=3]; 17.87/6.71 937[label="True == False",fontsize=16,color="black",shape="box"];937 -> 976[label="",style="solid", color="black", weight=3]; 17.87/6.71 938[label="True == True",fontsize=16,color="black",shape="box"];938 -> 977[label="",style="solid", color="black", weight=3]; 17.87/6.71 939[label="primEqInt (Pos yv300) yv400",fontsize=16,color="burlywood",shape="box"];1698[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];939 -> 1698[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1698 -> 978[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1699[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];939 -> 1699[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1699 -> 979[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 940[label="primEqInt (Neg yv300) yv400",fontsize=16,color="burlywood",shape="box"];1700[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];940 -> 1700[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1700 -> 980[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1701[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];940 -> 1701[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1701 -> 981[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 941[label="Left yv300 == Left yv4000",fontsize=16,color="black",shape="box"];941 -> 982[label="",style="solid", color="black", weight=3]; 17.87/6.71 942[label="Left yv300 == Right yv4000",fontsize=16,color="black",shape="box"];942 -> 983[label="",style="solid", color="black", weight=3]; 17.87/6.71 943[label="Right yv300 == Left yv4000",fontsize=16,color="black",shape="box"];943 -> 984[label="",style="solid", color="black", weight=3]; 17.87/6.71 944[label="Right yv300 == Right yv4000",fontsize=16,color="black",shape="box"];944 -> 985[label="",style="solid", color="black", weight=3]; 17.87/6.71 945[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];945 -> 986[label="",style="solid", color="black", weight=3]; 17.87/6.71 946[label="Nothing == Just yv4000",fontsize=16,color="black",shape="box"];946 -> 987[label="",style="solid", color="black", weight=3]; 17.87/6.71 947[label="Just yv300 == Nothing",fontsize=16,color="black",shape="box"];947 -> 988[label="",style="solid", color="black", weight=3]; 17.87/6.71 948[label="Just yv300 == Just yv4000",fontsize=16,color="black",shape="box"];948 -> 989[label="",style="solid", color="black", weight=3]; 17.87/6.71 949[label="primEqDouble (Double yv300 yv301) yv400",fontsize=16,color="burlywood",shape="box"];1702[label="yv400/Double yv4000 yv4001",fontsize=10,color="white",style="solid",shape="box"];949 -> 1702[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1702 -> 990[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 950[label="(yv300,yv301) == (yv4000,yv4001)",fontsize=16,color="black",shape="box"];950 -> 991[label="",style="solid", color="black", weight=3]; 17.87/6.71 951[label="(yv300,yv301,yv302) == (yv4000,yv4001,yv4002)",fontsize=16,color="black",shape="box"];951 -> 992[label="",style="solid", color="black", weight=3]; 17.87/6.71 952[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1703[label="yv111/yv1110 : yv1111",fontsize=10,color="white",style="solid",shape="box"];952 -> 1703[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1703 -> 993[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1704[label="yv111/[]",fontsize=10,color="white",style="solid",shape="box"];952 -> 1704[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1704 -> 994[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 953[label="Maybe.listToMaybe (Pos yv33 : [] ++ foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv111 (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];953 -> 995[label="",style="solid", color="black", weight=3]; 17.87/6.71 954[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];1705[label="yv181/yv1810 : yv1811",fontsize=10,color="white",style="solid",shape="box"];954 -> 1705[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1705 -> 996[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1706[label="yv181/[]",fontsize=10,color="white",style="solid",shape="box"];954 -> 1706[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1706 -> 997[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 955[label="Maybe.listToMaybe (Pos yv35 : [] ++ foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv181 (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];955 -> 998[label="",style="solid", color="black", weight=3]; 17.87/6.71 956[label="True",fontsize=16,color="green",shape="box"];957[label="False",fontsize=16,color="green",shape="box"];958[label="False",fontsize=16,color="green",shape="box"];959[label="False",fontsize=16,color="green",shape="box"];960[label="True",fontsize=16,color="green",shape="box"];961[label="False",fontsize=16,color="green",shape="box"];962[label="False",fontsize=16,color="green",shape="box"];963[label="False",fontsize=16,color="green",shape="box"];964[label="True",fontsize=16,color="green",shape="box"];965 -> 877[label="",style="dashed", color="red", weight=0]; 17.87/6.71 965[label="primEqInt yv300 yv4000",fontsize=16,color="magenta"];965 -> 999[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 965 -> 1000[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 966[label="primEqFloat (Float yv300 yv301) (Float yv4000 yv4001)",fontsize=16,color="black",shape="box"];966 -> 1001[label="",style="solid", color="black", weight=3]; 17.87/6.71 967[label="primEqChar (Char yv300) (Char yv4000)",fontsize=16,color="black",shape="box"];967 -> 1002[label="",style="solid", color="black", weight=3]; 17.87/6.71 968 -> 1085[label="",style="dashed", color="red", weight=0]; 17.87/6.71 968[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];968 -> 1086[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 968 -> 1087[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 969[label="True",fontsize=16,color="green",shape="box"];970 -> 1085[label="",style="dashed", color="red", weight=0]; 17.87/6.71 970[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];970 -> 1088[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 970 -> 1089[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 971[label="False",fontsize=16,color="green",shape="box"];972[label="False",fontsize=16,color="green",shape="box"];973[label="True",fontsize=16,color="green",shape="box"];974[label="True",fontsize=16,color="green",shape="box"];975[label="False",fontsize=16,color="green",shape="box"];976[label="False",fontsize=16,color="green",shape="box"];977[label="True",fontsize=16,color="green",shape="box"];978[label="primEqInt (Pos (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];1707[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];978 -> 1707[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1707 -> 1013[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1708[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];978 -> 1708[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1708 -> 1014[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 979[label="primEqInt (Pos Zero) yv400",fontsize=16,color="burlywood",shape="box"];1709[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];979 -> 1709[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1709 -> 1015[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1710[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];979 -> 1710[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1710 -> 1016[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 980[label="primEqInt (Neg (Succ yv3000)) yv400",fontsize=16,color="burlywood",shape="box"];1711[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];980 -> 1711[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1711 -> 1017[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1712[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];980 -> 1712[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1712 -> 1018[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 981[label="primEqInt (Neg Zero) yv400",fontsize=16,color="burlywood",shape="box"];1713[label="yv400/Pos yv4000",fontsize=10,color="white",style="solid",shape="box"];981 -> 1713[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1713 -> 1019[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1714[label="yv400/Neg yv4000",fontsize=10,color="white",style="solid",shape="box"];981 -> 1714[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1714 -> 1020[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 982[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1715[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1715[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1715 -> 1021[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1716[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1716[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1716 -> 1022[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1717[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1717[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1717 -> 1023[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1718[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1718[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1718 -> 1024[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1719[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1719[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1719 -> 1025[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1720[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1720[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1720 -> 1026[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1721[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1721[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1721 -> 1027[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1722[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1722[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1722 -> 1028[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1723[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1723[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1723 -> 1029[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1724[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1724[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1724 -> 1030[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1725[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1725[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1725 -> 1031[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1726[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1726[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1726 -> 1032[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1727[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1727[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1727 -> 1033[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1728[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];982 -> 1728[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1728 -> 1034[label="",style="solid", color="blue", weight=3]; 17.87/6.71 983[label="False",fontsize=16,color="green",shape="box"];984[label="False",fontsize=16,color="green",shape="box"];985[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1729[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1729[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1729 -> 1035[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1730[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1730[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1730 -> 1036[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1731[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1731[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1731 -> 1037[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1732[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1732[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1732 -> 1038[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1733[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1733[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1733 -> 1039[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1734[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1734[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1734 -> 1040[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1735[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1735[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1735 -> 1041[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1736[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1736[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1736 -> 1042[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1737[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1737[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1737 -> 1043[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1738[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1738[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1738 -> 1044[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1739[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1739[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1739 -> 1045[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1740[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1740[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1740 -> 1046[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1741[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1741[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1741 -> 1047[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1742[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];985 -> 1742[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1742 -> 1048[label="",style="solid", color="blue", weight=3]; 17.87/6.71 986[label="True",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="False",fontsize=16,color="green",shape="box"];989[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1743[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1743[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1743 -> 1049[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1744[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1744[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1744 -> 1050[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1745[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1745[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1745 -> 1051[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1746[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1746[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1746 -> 1052[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1747[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1747[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1747 -> 1053[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1748[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1748[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1748 -> 1054[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1749[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1749[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1749 -> 1055[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1750[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1750[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1750 -> 1056[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1751[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1751[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1751 -> 1057[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1752[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1752[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1752 -> 1058[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1753[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1753[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1753 -> 1059[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1754[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1754[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1754 -> 1060[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1755[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1755[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1755 -> 1061[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1756[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];989 -> 1756[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1756 -> 1062[label="",style="solid", color="blue", weight=3]; 17.87/6.71 990[label="primEqDouble (Double yv300 yv301) (Double yv4000 yv4001)",fontsize=16,color="black",shape="box"];990 -> 1063[label="",style="solid", color="black", weight=3]; 17.87/6.71 991 -> 1085[label="",style="dashed", color="red", weight=0]; 17.87/6.71 991[label="yv300 == yv4000 && yv301 == yv4001",fontsize=16,color="magenta"];991 -> 1090[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 991 -> 1091[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 992 -> 1085[label="",style="dashed", color="red", weight=0]; 17.87/6.71 992[label="yv300 == yv4000 && yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];992 -> 1092[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 992 -> 1093[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 993[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];993 -> 1075[label="",style="solid", color="black", weight=3]; 17.87/6.71 994[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv34 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];994 -> 1076[label="",style="solid", color="black", weight=3]; 17.87/6.71 995[label="Just (Pos yv33)",fontsize=16,color="green",shape="box"];996[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];996 -> 1077[label="",style="solid", color="black", weight=3]; 17.87/6.71 997[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv36 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];997 -> 1078[label="",style="solid", color="black", weight=3]; 17.87/6.71 998[label="Just (Pos yv35)",fontsize=16,color="green",shape="box"];999[label="yv300",fontsize=16,color="green",shape="box"];1000[label="yv4000",fontsize=16,color="green",shape="box"];1001 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1001[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1001 -> 1079[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1001 -> 1080[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1002[label="primEqNat yv300 yv4000",fontsize=16,color="burlywood",shape="triangle"];1757[label="yv300/Succ yv3000",fontsize=10,color="white",style="solid",shape="box"];1002 -> 1757[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1757 -> 1081[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1758[label="yv300/Zero",fontsize=10,color="white",style="solid",shape="box"];1002 -> 1758[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1758 -> 1082[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1086[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1759[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1086 -> 1759[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1759 -> 1098[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1760[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1086 -> 1760[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1760 -> 1099[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1087[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1761[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 1761[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1761 -> 1100[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1762[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1087 -> 1762[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1762 -> 1101[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1085[label="yv50 && yv51",fontsize=16,color="burlywood",shape="triangle"];1763[label="yv50/False",fontsize=10,color="white",style="solid",shape="box"];1085 -> 1763[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1763 -> 1102[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1764[label="yv50/True",fontsize=10,color="white",style="solid",shape="box"];1085 -> 1764[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1764 -> 1103[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1088 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1088[label="yv301 == yv4001",fontsize=16,color="magenta"];1088 -> 1104[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1088 -> 1105[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1089[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1765[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1765[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1765 -> 1106[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1766[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1766[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1766 -> 1107[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1767[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1767[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1767 -> 1108[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1768[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1768[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1768 -> 1109[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1769[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1769[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1769 -> 1110[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1770[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1770[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1770 -> 1111[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1771[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1771[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1771 -> 1112[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1772[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1772[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1772 -> 1113[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1773[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1773[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1773 -> 1114[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1774[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1774[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1774 -> 1115[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1775[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1775[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1775 -> 1116[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1776[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1776[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1776 -> 1117[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1777[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1777[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1777 -> 1118[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1778[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1089 -> 1778[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1778 -> 1119[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1013[label="primEqInt (Pos (Succ yv3000)) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1779[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1013 -> 1779[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1779 -> 1120[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1780[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1013 -> 1780[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1780 -> 1121[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1014[label="primEqInt (Pos (Succ yv3000)) (Neg yv4000)",fontsize=16,color="black",shape="box"];1014 -> 1122[label="",style="solid", color="black", weight=3]; 17.87/6.71 1015[label="primEqInt (Pos Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1781[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1015 -> 1781[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1781 -> 1123[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1782[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1015 -> 1782[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1782 -> 1124[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1016[label="primEqInt (Pos Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1783[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1016 -> 1783[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1783 -> 1125[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1784[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1016 -> 1784[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1784 -> 1126[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1017[label="primEqInt (Neg (Succ yv3000)) (Pos yv4000)",fontsize=16,color="black",shape="box"];1017 -> 1127[label="",style="solid", color="black", weight=3]; 17.87/6.71 1018[label="primEqInt (Neg (Succ yv3000)) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1785[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1018 -> 1785[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1785 -> 1128[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1786[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1018 -> 1786[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1786 -> 1129[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1019[label="primEqInt (Neg Zero) (Pos yv4000)",fontsize=16,color="burlywood",shape="box"];1787[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1019 -> 1787[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1787 -> 1130[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1788[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1019 -> 1788[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1788 -> 1131[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1020[label="primEqInt (Neg Zero) (Neg yv4000)",fontsize=16,color="burlywood",shape="box"];1789[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1020 -> 1789[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1789 -> 1132[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1790[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1020 -> 1790[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1790 -> 1133[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1021 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1021[label="yv300 == yv4000",fontsize=16,color="magenta"];1021 -> 1134[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1021 -> 1135[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1022 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1022[label="yv300 == yv4000",fontsize=16,color="magenta"];1022 -> 1136[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1022 -> 1137[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1023 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1023[label="yv300 == yv4000",fontsize=16,color="magenta"];1023 -> 1138[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1023 -> 1139[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1024 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1024[label="yv300 == yv4000",fontsize=16,color="magenta"];1024 -> 1140[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1024 -> 1141[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1025 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1025[label="yv300 == yv4000",fontsize=16,color="magenta"];1025 -> 1142[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1025 -> 1143[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1026 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1026[label="yv300 == yv4000",fontsize=16,color="magenta"];1026 -> 1144[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1026 -> 1145[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1027 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1027[label="yv300 == yv4000",fontsize=16,color="magenta"];1027 -> 1146[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1027 -> 1147[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1028 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1028[label="yv300 == yv4000",fontsize=16,color="magenta"];1028 -> 1148[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1028 -> 1149[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1029 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1029[label="yv300 == yv4000",fontsize=16,color="magenta"];1029 -> 1150[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1029 -> 1151[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1030 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1030[label="yv300 == yv4000",fontsize=16,color="magenta"];1030 -> 1152[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1030 -> 1153[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1031 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1031[label="yv300 == yv4000",fontsize=16,color="magenta"];1031 -> 1154[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1031 -> 1155[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1032 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1032[label="yv300 == yv4000",fontsize=16,color="magenta"];1032 -> 1156[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1032 -> 1157[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1033 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1033[label="yv300 == yv4000",fontsize=16,color="magenta"];1033 -> 1158[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1033 -> 1159[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1034 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1034[label="yv300 == yv4000",fontsize=16,color="magenta"];1034 -> 1160[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1034 -> 1161[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1035 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1035[label="yv300 == yv4000",fontsize=16,color="magenta"];1035 -> 1162[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1035 -> 1163[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1036 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1036[label="yv300 == yv4000",fontsize=16,color="magenta"];1036 -> 1164[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1036 -> 1165[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1037 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1037[label="yv300 == yv4000",fontsize=16,color="magenta"];1037 -> 1166[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1037 -> 1167[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1038 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1038[label="yv300 == yv4000",fontsize=16,color="magenta"];1038 -> 1168[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1038 -> 1169[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1039 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1039[label="yv300 == yv4000",fontsize=16,color="magenta"];1039 -> 1170[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1039 -> 1171[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1040 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1040[label="yv300 == yv4000",fontsize=16,color="magenta"];1040 -> 1172[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1040 -> 1173[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1041 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1041[label="yv300 == yv4000",fontsize=16,color="magenta"];1041 -> 1174[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1041 -> 1175[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1042 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1042[label="yv300 == yv4000",fontsize=16,color="magenta"];1042 -> 1176[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1042 -> 1177[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1043 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1043[label="yv300 == yv4000",fontsize=16,color="magenta"];1043 -> 1178[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1043 -> 1179[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1044 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1044[label="yv300 == yv4000",fontsize=16,color="magenta"];1044 -> 1180[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1044 -> 1181[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1045 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1045[label="yv300 == yv4000",fontsize=16,color="magenta"];1045 -> 1182[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1045 -> 1183[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1046 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1046[label="yv300 == yv4000",fontsize=16,color="magenta"];1046 -> 1184[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1046 -> 1185[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1047 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1047[label="yv300 == yv4000",fontsize=16,color="magenta"];1047 -> 1186[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1047 -> 1187[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1048 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1048[label="yv300 == yv4000",fontsize=16,color="magenta"];1048 -> 1188[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1048 -> 1189[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1049 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1049[label="yv300 == yv4000",fontsize=16,color="magenta"];1049 -> 1190[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1049 -> 1191[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1050 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1050[label="yv300 == yv4000",fontsize=16,color="magenta"];1050 -> 1192[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1050 -> 1193[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1051 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1051[label="yv300 == yv4000",fontsize=16,color="magenta"];1051 -> 1194[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1051 -> 1195[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1052 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1052[label="yv300 == yv4000",fontsize=16,color="magenta"];1052 -> 1196[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1052 -> 1197[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1053 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1053[label="yv300 == yv4000",fontsize=16,color="magenta"];1053 -> 1198[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1053 -> 1199[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1054 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1054[label="yv300 == yv4000",fontsize=16,color="magenta"];1054 -> 1200[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1054 -> 1201[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1055 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1055[label="yv300 == yv4000",fontsize=16,color="magenta"];1055 -> 1202[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1055 -> 1203[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1056 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1056[label="yv300 == yv4000",fontsize=16,color="magenta"];1056 -> 1204[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1056 -> 1205[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1057 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1057[label="yv300 == yv4000",fontsize=16,color="magenta"];1057 -> 1206[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1057 -> 1207[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1058 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1058[label="yv300 == yv4000",fontsize=16,color="magenta"];1058 -> 1208[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1058 -> 1209[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1059 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1059[label="yv300 == yv4000",fontsize=16,color="magenta"];1059 -> 1210[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1059 -> 1211[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1060 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1060[label="yv300 == yv4000",fontsize=16,color="magenta"];1060 -> 1212[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1060 -> 1213[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1061 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1061[label="yv300 == yv4000",fontsize=16,color="magenta"];1061 -> 1214[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1061 -> 1215[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1062 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1062[label="yv300 == yv4000",fontsize=16,color="magenta"];1062 -> 1216[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1062 -> 1217[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1063 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1063[label="yv300 * yv4001 == yv301 * yv4000",fontsize=16,color="magenta"];1063 -> 1218[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1063 -> 1219[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1090[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1791[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1791[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1791 -> 1220[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1792[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1792[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1792 -> 1221[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1793[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1793[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1793 -> 1222[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1794[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1794[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1794 -> 1223[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1795[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1795[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1795 -> 1224[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1796[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1796[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1796 -> 1225[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1797[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1797[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1797 -> 1226[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1798[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1798[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1798 -> 1227[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1799[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1799[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1799 -> 1228[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1800[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1800[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1800 -> 1229[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1801[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1801[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1801 -> 1230[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1802[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1802[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1802 -> 1231[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1803[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1803[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1803 -> 1232[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1804[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 1804[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1804 -> 1233[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1091[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1805[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1805[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1805 -> 1234[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1806[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1806[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1806 -> 1235[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1807[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1807[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1807 -> 1236[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1808[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1808[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1808 -> 1237[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1809[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1809[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1809 -> 1238[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1810[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1810[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1810 -> 1239[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1811[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1811[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1811 -> 1240[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1812[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1812[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1812 -> 1241[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1813[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1813[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1813 -> 1242[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1814[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1814[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1814 -> 1243[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1815[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1815[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1815 -> 1244[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1816[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1816[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1816 -> 1245[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1817[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1817[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1817 -> 1246[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 1818[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1818 -> 1247[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1092 -> 1085[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1092[label="yv301 == yv4001 && yv302 == yv4002",fontsize=16,color="magenta"];1092 -> 1248[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1092 -> 1249[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1093[label="yv300 == yv4000",fontsize=16,color="blue",shape="box"];1819[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1819[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1819 -> 1250[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1820[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1820[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1820 -> 1251[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1821[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1821[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1821 -> 1252[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1822[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1822[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1822 -> 1253[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1823[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1823[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1823 -> 1254[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1824[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1824[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1824 -> 1255[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1825[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1825[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1825 -> 1256[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1826[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1826[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1826 -> 1257[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1827[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1827[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1827 -> 1258[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1828[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1828[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1828 -> 1259[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1829[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1829[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1829 -> 1260[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1830[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1830[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1830 -> 1261[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1831[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1831[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1831 -> 1262[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1832[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 1832[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1832 -> 1263[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1075[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (Pos yv34 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv34 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1075 -> 1264[label="",style="solid", color="black", weight=3]; 17.87/6.71 1076 -> 16[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1076[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) []))",fontsize=16,color="magenta"];1076 -> 1265[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1077[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (Pos yv36 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv36 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1077 -> 1266[label="",style="solid", color="black", weight=3]; 17.87/6.71 1078 -> 16[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1078[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) []))",fontsize=16,color="magenta"];1078 -> 1267[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1079[label="yv300 * yv4001",fontsize=16,color="black",shape="triangle"];1079 -> 1268[label="",style="solid", color="black", weight=3]; 17.87/6.71 1080 -> 1079[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1080[label="yv301 * yv4000",fontsize=16,color="magenta"];1080 -> 1269[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1080 -> 1270[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1081[label="primEqNat (Succ yv3000) yv4000",fontsize=16,color="burlywood",shape="box"];1833[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1081 -> 1833[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1833 -> 1271[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1834[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1081 -> 1834[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1834 -> 1272[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1082[label="primEqNat Zero yv4000",fontsize=16,color="burlywood",shape="box"];1835[label="yv4000/Succ yv40000",fontsize=10,color="white",style="solid",shape="box"];1082 -> 1835[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1835 -> 1273[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1836[label="yv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1082 -> 1836[label="",style="solid", color="burlywood", weight=9]; 17.87/6.71 1836 -> 1274[label="",style="solid", color="burlywood", weight=3]; 17.87/6.71 1098 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1098[label="yv301 == yv4001",fontsize=16,color="magenta"];1098 -> 1275[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1098 -> 1276[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1099 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1099[label="yv301 == yv4001",fontsize=16,color="magenta"];1099 -> 1277[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1099 -> 1278[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1100 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1100[label="yv300 == yv4000",fontsize=16,color="magenta"];1100 -> 1279[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1100 -> 1280[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1101 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1101[label="yv300 == yv4000",fontsize=16,color="magenta"];1101 -> 1281[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1101 -> 1282[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1102[label="False && yv51",fontsize=16,color="black",shape="box"];1102 -> 1283[label="",style="solid", color="black", weight=3]; 17.87/6.71 1103[label="True && yv51",fontsize=16,color="black",shape="box"];1103 -> 1284[label="",style="solid", color="black", weight=3]; 17.87/6.71 1104[label="yv301",fontsize=16,color="green",shape="box"];1105[label="yv4001",fontsize=16,color="green",shape="box"];1106 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1106[label="yv300 == yv4000",fontsize=16,color="magenta"];1106 -> 1285[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1106 -> 1286[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1107 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1107[label="yv300 == yv4000",fontsize=16,color="magenta"];1107 -> 1287[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1107 -> 1288[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1108 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1108[label="yv300 == yv4000",fontsize=16,color="magenta"];1108 -> 1289[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1108 -> 1290[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1109 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1109[label="yv300 == yv4000",fontsize=16,color="magenta"];1109 -> 1291[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1109 -> 1292[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1110 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1110[label="yv300 == yv4000",fontsize=16,color="magenta"];1110 -> 1293[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1110 -> 1294[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1111 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1111[label="yv300 == yv4000",fontsize=16,color="magenta"];1111 -> 1295[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1111 -> 1296[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1112 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1112[label="yv300 == yv4000",fontsize=16,color="magenta"];1112 -> 1297[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1112 -> 1298[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1113 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1113[label="yv300 == yv4000",fontsize=16,color="magenta"];1113 -> 1299[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1113 -> 1300[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1114 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1114[label="yv300 == yv4000",fontsize=16,color="magenta"];1114 -> 1301[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1114 -> 1302[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1115 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1115[label="yv300 == yv4000",fontsize=16,color="magenta"];1115 -> 1303[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1115 -> 1304[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1116 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1116[label="yv300 == yv4000",fontsize=16,color="magenta"];1116 -> 1305[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1116 -> 1306[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1117 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1117[label="yv300 == yv4000",fontsize=16,color="magenta"];1117 -> 1307[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1117 -> 1308[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1118 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1118[label="yv300 == yv4000",fontsize=16,color="magenta"];1118 -> 1309[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1118 -> 1310[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1119 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1119[label="yv300 == yv4000",fontsize=16,color="magenta"];1119 -> 1311[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1119 -> 1312[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1120[label="primEqInt (Pos (Succ yv3000)) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1120 -> 1313[label="",style="solid", color="black", weight=3]; 17.87/6.71 1121[label="primEqInt (Pos (Succ yv3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1121 -> 1314[label="",style="solid", color="black", weight=3]; 17.87/6.71 1122[label="False",fontsize=16,color="green",shape="box"];1123[label="primEqInt (Pos Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1123 -> 1315[label="",style="solid", color="black", weight=3]; 17.87/6.71 1124[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1124 -> 1316[label="",style="solid", color="black", weight=3]; 17.87/6.71 1125[label="primEqInt (Pos Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1125 -> 1317[label="",style="solid", color="black", weight=3]; 17.87/6.71 1126[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1126 -> 1318[label="",style="solid", color="black", weight=3]; 17.87/6.71 1127[label="False",fontsize=16,color="green",shape="box"];1128[label="primEqInt (Neg (Succ yv3000)) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1128 -> 1319[label="",style="solid", color="black", weight=3]; 17.87/6.71 1129[label="primEqInt (Neg (Succ yv3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1129 -> 1320[label="",style="solid", color="black", weight=3]; 17.87/6.71 1130[label="primEqInt (Neg Zero) (Pos (Succ yv40000))",fontsize=16,color="black",shape="box"];1130 -> 1321[label="",style="solid", color="black", weight=3]; 17.87/6.71 1131[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1131 -> 1322[label="",style="solid", color="black", weight=3]; 17.87/6.71 1132[label="primEqInt (Neg Zero) (Neg (Succ yv40000))",fontsize=16,color="black",shape="box"];1132 -> 1323[label="",style="solid", color="black", weight=3]; 17.87/6.71 1133[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1133 -> 1324[label="",style="solid", color="black", weight=3]; 17.87/6.71 1134[label="yv300",fontsize=16,color="green",shape="box"];1135[label="yv4000",fontsize=16,color="green",shape="box"];1136[label="yv300",fontsize=16,color="green",shape="box"];1137[label="yv4000",fontsize=16,color="green",shape="box"];1138[label="yv300",fontsize=16,color="green",shape="box"];1139[label="yv4000",fontsize=16,color="green",shape="box"];1140[label="yv300",fontsize=16,color="green",shape="box"];1141[label="yv4000",fontsize=16,color="green",shape="box"];1142[label="yv300",fontsize=16,color="green",shape="box"];1143[label="yv4000",fontsize=16,color="green",shape="box"];1144[label="yv300",fontsize=16,color="green",shape="box"];1145[label="yv4000",fontsize=16,color="green",shape="box"];1146[label="yv300",fontsize=16,color="green",shape="box"];1147[label="yv4000",fontsize=16,color="green",shape="box"];1148[label="yv300",fontsize=16,color="green",shape="box"];1149[label="yv4000",fontsize=16,color="green",shape="box"];1150[label="yv300",fontsize=16,color="green",shape="box"];1151[label="yv4000",fontsize=16,color="green",shape="box"];1152[label="yv300",fontsize=16,color="green",shape="box"];1153[label="yv4000",fontsize=16,color="green",shape="box"];1154[label="yv300",fontsize=16,color="green",shape="box"];1155[label="yv4000",fontsize=16,color="green",shape="box"];1156[label="yv300",fontsize=16,color="green",shape="box"];1157[label="yv4000",fontsize=16,color="green",shape="box"];1158[label="yv300",fontsize=16,color="green",shape="box"];1159[label="yv4000",fontsize=16,color="green",shape="box"];1160[label="yv300",fontsize=16,color="green",shape="box"];1161[label="yv4000",fontsize=16,color="green",shape="box"];1162[label="yv300",fontsize=16,color="green",shape="box"];1163[label="yv4000",fontsize=16,color="green",shape="box"];1164[label="yv300",fontsize=16,color="green",shape="box"];1165[label="yv4000",fontsize=16,color="green",shape="box"];1166[label="yv300",fontsize=16,color="green",shape="box"];1167[label="yv4000",fontsize=16,color="green",shape="box"];1168[label="yv300",fontsize=16,color="green",shape="box"];1169[label="yv4000",fontsize=16,color="green",shape="box"];1170[label="yv300",fontsize=16,color="green",shape="box"];1171[label="yv4000",fontsize=16,color="green",shape="box"];1172[label="yv300",fontsize=16,color="green",shape="box"];1173[label="yv4000",fontsize=16,color="green",shape="box"];1174[label="yv300",fontsize=16,color="green",shape="box"];1175[label="yv4000",fontsize=16,color="green",shape="box"];1176[label="yv300",fontsize=16,color="green",shape="box"];1177[label="yv4000",fontsize=16,color="green",shape="box"];1178[label="yv300",fontsize=16,color="green",shape="box"];1179[label="yv4000",fontsize=16,color="green",shape="box"];1180[label="yv300",fontsize=16,color="green",shape="box"];1181[label="yv4000",fontsize=16,color="green",shape="box"];1182[label="yv300",fontsize=16,color="green",shape="box"];1183[label="yv4000",fontsize=16,color="green",shape="box"];1184[label="yv300",fontsize=16,color="green",shape="box"];1185[label="yv4000",fontsize=16,color="green",shape="box"];1186[label="yv300",fontsize=16,color="green",shape="box"];1187[label="yv4000",fontsize=16,color="green",shape="box"];1188[label="yv300",fontsize=16,color="green",shape="box"];1189[label="yv4000",fontsize=16,color="green",shape="box"];1190[label="yv300",fontsize=16,color="green",shape="box"];1191[label="yv4000",fontsize=16,color="green",shape="box"];1192[label="yv300",fontsize=16,color="green",shape="box"];1193[label="yv4000",fontsize=16,color="green",shape="box"];1194[label="yv300",fontsize=16,color="green",shape="box"];1195[label="yv4000",fontsize=16,color="green",shape="box"];1196[label="yv300",fontsize=16,color="green",shape="box"];1197[label="yv4000",fontsize=16,color="green",shape="box"];1198[label="yv300",fontsize=16,color="green",shape="box"];1199[label="yv4000",fontsize=16,color="green",shape="box"];1200[label="yv300",fontsize=16,color="green",shape="box"];1201[label="yv4000",fontsize=16,color="green",shape="box"];1202[label="yv300",fontsize=16,color="green",shape="box"];1203[label="yv4000",fontsize=16,color="green",shape="box"];1204[label="yv300",fontsize=16,color="green",shape="box"];1205[label="yv4000",fontsize=16,color="green",shape="box"];1206[label="yv300",fontsize=16,color="green",shape="box"];1207[label="yv4000",fontsize=16,color="green",shape="box"];1208[label="yv300",fontsize=16,color="green",shape="box"];1209[label="yv4000",fontsize=16,color="green",shape="box"];1210[label="yv300",fontsize=16,color="green",shape="box"];1211[label="yv4000",fontsize=16,color="green",shape="box"];1212[label="yv300",fontsize=16,color="green",shape="box"];1213[label="yv4000",fontsize=16,color="green",shape="box"];1214[label="yv300",fontsize=16,color="green",shape="box"];1215[label="yv4000",fontsize=16,color="green",shape="box"];1216[label="yv300",fontsize=16,color="green",shape="box"];1217[label="yv4000",fontsize=16,color="green",shape="box"];1218 -> 1079[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1218[label="yv300 * yv4001",fontsize=16,color="magenta"];1218 -> 1325[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1218 -> 1326[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1219 -> 1079[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1219[label="yv301 * yv4000",fontsize=16,color="magenta"];1219 -> 1327[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1219 -> 1328[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1220 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1220[label="yv301 == yv4001",fontsize=16,color="magenta"];1220 -> 1329[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1220 -> 1330[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1221 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1221[label="yv301 == yv4001",fontsize=16,color="magenta"];1221 -> 1331[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1221 -> 1332[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1222 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1222[label="yv301 == yv4001",fontsize=16,color="magenta"];1222 -> 1333[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1222 -> 1334[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1223 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1223[label="yv301 == yv4001",fontsize=16,color="magenta"];1223 -> 1335[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1223 -> 1336[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1224 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1224[label="yv301 == yv4001",fontsize=16,color="magenta"];1224 -> 1337[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1224 -> 1338[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1225 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1225[label="yv301 == yv4001",fontsize=16,color="magenta"];1225 -> 1339[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1225 -> 1340[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1226 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1226[label="yv301 == yv4001",fontsize=16,color="magenta"];1226 -> 1341[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1226 -> 1342[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1227 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1227[label="yv301 == yv4001",fontsize=16,color="magenta"];1227 -> 1343[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1227 -> 1344[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1228 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1228[label="yv301 == yv4001",fontsize=16,color="magenta"];1228 -> 1345[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1228 -> 1346[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1229 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1229[label="yv301 == yv4001",fontsize=16,color="magenta"];1229 -> 1347[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1229 -> 1348[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1230 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1230[label="yv301 == yv4001",fontsize=16,color="magenta"];1230 -> 1349[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1230 -> 1350[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1231 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1231[label="yv301 == yv4001",fontsize=16,color="magenta"];1231 -> 1351[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1231 -> 1352[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1232 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1232[label="yv301 == yv4001",fontsize=16,color="magenta"];1232 -> 1353[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1232 -> 1354[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1233 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1233[label="yv301 == yv4001",fontsize=16,color="magenta"];1233 -> 1355[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1233 -> 1356[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1234 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1234[label="yv300 == yv4000",fontsize=16,color="magenta"];1234 -> 1357[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1234 -> 1358[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1235 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1235[label="yv300 == yv4000",fontsize=16,color="magenta"];1235 -> 1359[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1235 -> 1360[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1236 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1236[label="yv300 == yv4000",fontsize=16,color="magenta"];1236 -> 1361[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1236 -> 1362[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1237 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1237[label="yv300 == yv4000",fontsize=16,color="magenta"];1237 -> 1363[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1237 -> 1364[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1238 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1238[label="yv300 == yv4000",fontsize=16,color="magenta"];1238 -> 1365[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1238 -> 1366[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1239 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1239[label="yv300 == yv4000",fontsize=16,color="magenta"];1239 -> 1367[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1239 -> 1368[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1240 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1240[label="yv300 == yv4000",fontsize=16,color="magenta"];1240 -> 1369[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1240 -> 1370[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1241 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1241[label="yv300 == yv4000",fontsize=16,color="magenta"];1241 -> 1371[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1241 -> 1372[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1242 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1242[label="yv300 == yv4000",fontsize=16,color="magenta"];1242 -> 1373[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1242 -> 1374[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1243 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1243[label="yv300 == yv4000",fontsize=16,color="magenta"];1243 -> 1375[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1243 -> 1376[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1244 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1244[label="yv300 == yv4000",fontsize=16,color="magenta"];1244 -> 1377[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1244 -> 1378[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1245 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1245[label="yv300 == yv4000",fontsize=16,color="magenta"];1245 -> 1379[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1245 -> 1380[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1246 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1246[label="yv300 == yv4000",fontsize=16,color="magenta"];1246 -> 1381[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1246 -> 1382[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1247 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1247[label="yv300 == yv4000",fontsize=16,color="magenta"];1247 -> 1383[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1247 -> 1384[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1248[label="yv302 == yv4002",fontsize=16,color="blue",shape="box"];1837[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1837[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1837 -> 1385[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1838[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1838[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1838 -> 1386[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1839[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1839[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1839 -> 1387[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1840[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1840[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1840 -> 1388[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1841[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1841[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1841 -> 1389[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1842[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1842[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1842 -> 1390[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1843[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1843[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1843 -> 1391[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1844[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1844[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1844 -> 1392[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1845[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1845[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1845 -> 1393[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1846[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1846[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1846 -> 1394[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1847[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1847[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1847 -> 1395[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1848[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1848[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1848 -> 1396[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1849[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1849[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1849 -> 1397[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1850[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 1850[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1850 -> 1398[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1249[label="yv301 == yv4001",fontsize=16,color="blue",shape="box"];1851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1851[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1851 -> 1399[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1852[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1852 -> 1400[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1853[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1853[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1853 -> 1401[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1854[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1854[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1854 -> 1402[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1855[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1855[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1855 -> 1403[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1856[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1856[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1856 -> 1404[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1857[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1857[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1857 -> 1405[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1858[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1858[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1858 -> 1406[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1859[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1859[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1859 -> 1407[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1860[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1860[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1860 -> 1408[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1861[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1861[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1861 -> 1409[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1862[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1862[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1862 -> 1410[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1863[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1863[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1863 -> 1411[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1864[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1249 -> 1864[label="",style="solid", color="blue", weight=9]; 17.87/6.71 1864 -> 1412[label="",style="solid", color="blue", weight=3]; 17.87/6.71 1250 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1250[label="yv300 == yv4000",fontsize=16,color="magenta"];1250 -> 1413[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1250 -> 1414[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1251 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1251[label="yv300 == yv4000",fontsize=16,color="magenta"];1251 -> 1415[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1251 -> 1416[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1252 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1252[label="yv300 == yv4000",fontsize=16,color="magenta"];1252 -> 1417[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1252 -> 1418[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1253 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1253[label="yv300 == yv4000",fontsize=16,color="magenta"];1253 -> 1419[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1253 -> 1420[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1254 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1254[label="yv300 == yv4000",fontsize=16,color="magenta"];1254 -> 1421[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1254 -> 1422[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1255 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1255[label="yv300 == yv4000",fontsize=16,color="magenta"];1255 -> 1423[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1255 -> 1424[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1256 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1256[label="yv300 == yv4000",fontsize=16,color="magenta"];1256 -> 1425[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1256 -> 1426[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1257 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1257[label="yv300 == yv4000",fontsize=16,color="magenta"];1257 -> 1427[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1257 -> 1428[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1258 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1258[label="yv300 == yv4000",fontsize=16,color="magenta"];1258 -> 1429[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1258 -> 1430[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1259 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1259[label="yv300 == yv4000",fontsize=16,color="magenta"];1259 -> 1431[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1259 -> 1432[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1260 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1260[label="yv300 == yv4000",fontsize=16,color="magenta"];1260 -> 1433[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1260 -> 1434[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1261 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1261[label="yv300 == yv4000",fontsize=16,color="magenta"];1261 -> 1435[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1261 -> 1436[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1262 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1262[label="yv300 == yv4000",fontsize=16,color="magenta"];1262 -> 1437[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1262 -> 1438[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1263 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.71 1263[label="yv300 == yv4000",fontsize=16,color="magenta"];1263 -> 1439[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1263 -> 1440[label="",style="dashed", color="magenta", weight=3]; 17.87/6.71 1264[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (Pos yv34 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv34 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1264 -> 1441[label="",style="solid", color="black", weight=3]; 17.87/6.71 1265[label="Left yv10",fontsize=16,color="green",shape="box"];1266[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (Pos yv36 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv36 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1266 -> 1442[label="",style="solid", color="black", weight=3]; 17.87/6.72 1267[label="Right yv17",fontsize=16,color="green",shape="box"];1268[label="primMulInt yv300 yv4001",fontsize=16,color="burlywood",shape="box"];1865[label="yv300/Pos yv3000",fontsize=10,color="white",style="solid",shape="box"];1268 -> 1865[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1865 -> 1443[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1866[label="yv300/Neg yv3000",fontsize=10,color="white",style="solid",shape="box"];1268 -> 1866[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1866 -> 1444[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1269[label="yv301",fontsize=16,color="green",shape="box"];1270[label="yv4000",fontsize=16,color="green",shape="box"];1271[label="primEqNat (Succ yv3000) (Succ yv40000)",fontsize=16,color="black",shape="box"];1271 -> 1445[label="",style="solid", color="black", weight=3]; 17.87/6.72 1272[label="primEqNat (Succ yv3000) Zero",fontsize=16,color="black",shape="box"];1272 -> 1446[label="",style="solid", color="black", weight=3]; 17.87/6.72 1273[label="primEqNat Zero (Succ yv40000)",fontsize=16,color="black",shape="box"];1273 -> 1447[label="",style="solid", color="black", weight=3]; 17.87/6.72 1274[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1274 -> 1448[label="",style="solid", color="black", weight=3]; 17.87/6.72 1275[label="yv301",fontsize=16,color="green",shape="box"];1276[label="yv4001",fontsize=16,color="green",shape="box"];1277[label="yv301",fontsize=16,color="green",shape="box"];1278[label="yv4001",fontsize=16,color="green",shape="box"];1279[label="yv300",fontsize=16,color="green",shape="box"];1280[label="yv4000",fontsize=16,color="green",shape="box"];1281[label="yv300",fontsize=16,color="green",shape="box"];1282[label="yv4000",fontsize=16,color="green",shape="box"];1283[label="False",fontsize=16,color="green",shape="box"];1284[label="yv51",fontsize=16,color="green",shape="box"];1285[label="yv300",fontsize=16,color="green",shape="box"];1286[label="yv4000",fontsize=16,color="green",shape="box"];1287[label="yv300",fontsize=16,color="green",shape="box"];1288[label="yv4000",fontsize=16,color="green",shape="box"];1289[label="yv300",fontsize=16,color="green",shape="box"];1290[label="yv4000",fontsize=16,color="green",shape="box"];1291[label="yv300",fontsize=16,color="green",shape="box"];1292[label="yv4000",fontsize=16,color="green",shape="box"];1293[label="yv300",fontsize=16,color="green",shape="box"];1294[label="yv4000",fontsize=16,color="green",shape="box"];1295[label="yv300",fontsize=16,color="green",shape="box"];1296[label="yv4000",fontsize=16,color="green",shape="box"];1297[label="yv300",fontsize=16,color="green",shape="box"];1298[label="yv4000",fontsize=16,color="green",shape="box"];1299[label="yv300",fontsize=16,color="green",shape="box"];1300[label="yv4000",fontsize=16,color="green",shape="box"];1301[label="yv300",fontsize=16,color="green",shape="box"];1302[label="yv4000",fontsize=16,color="green",shape="box"];1303[label="yv300",fontsize=16,color="green",shape="box"];1304[label="yv4000",fontsize=16,color="green",shape="box"];1305[label="yv300",fontsize=16,color="green",shape="box"];1306[label="yv4000",fontsize=16,color="green",shape="box"];1307[label="yv300",fontsize=16,color="green",shape="box"];1308[label="yv4000",fontsize=16,color="green",shape="box"];1309[label="yv300",fontsize=16,color="green",shape="box"];1310[label="yv4000",fontsize=16,color="green",shape="box"];1311[label="yv300",fontsize=16,color="green",shape="box"];1312[label="yv4000",fontsize=16,color="green",shape="box"];1313 -> 1002[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1313[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1313 -> 1449[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1313 -> 1450[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1314[label="False",fontsize=16,color="green",shape="box"];1315[label="False",fontsize=16,color="green",shape="box"];1316[label="True",fontsize=16,color="green",shape="box"];1317[label="False",fontsize=16,color="green",shape="box"];1318[label="True",fontsize=16,color="green",shape="box"];1319 -> 1002[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1319[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1319 -> 1451[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1319 -> 1452[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1320[label="False",fontsize=16,color="green",shape="box"];1321[label="False",fontsize=16,color="green",shape="box"];1322[label="True",fontsize=16,color="green",shape="box"];1323[label="False",fontsize=16,color="green",shape="box"];1324[label="True",fontsize=16,color="green",shape="box"];1325[label="yv300",fontsize=16,color="green",shape="box"];1326[label="yv4001",fontsize=16,color="green",shape="box"];1327[label="yv301",fontsize=16,color="green",shape="box"];1328[label="yv4000",fontsize=16,color="green",shape="box"];1329[label="yv301",fontsize=16,color="green",shape="box"];1330[label="yv4001",fontsize=16,color="green",shape="box"];1331[label="yv301",fontsize=16,color="green",shape="box"];1332[label="yv4001",fontsize=16,color="green",shape="box"];1333[label="yv301",fontsize=16,color="green",shape="box"];1334[label="yv4001",fontsize=16,color="green",shape="box"];1335[label="yv301",fontsize=16,color="green",shape="box"];1336[label="yv4001",fontsize=16,color="green",shape="box"];1337[label="yv301",fontsize=16,color="green",shape="box"];1338[label="yv4001",fontsize=16,color="green",shape="box"];1339[label="yv301",fontsize=16,color="green",shape="box"];1340[label="yv4001",fontsize=16,color="green",shape="box"];1341[label="yv301",fontsize=16,color="green",shape="box"];1342[label="yv4001",fontsize=16,color="green",shape="box"];1343[label="yv301",fontsize=16,color="green",shape="box"];1344[label="yv4001",fontsize=16,color="green",shape="box"];1345[label="yv301",fontsize=16,color="green",shape="box"];1346[label="yv4001",fontsize=16,color="green",shape="box"];1347[label="yv301",fontsize=16,color="green",shape="box"];1348[label="yv4001",fontsize=16,color="green",shape="box"];1349[label="yv301",fontsize=16,color="green",shape="box"];1350[label="yv4001",fontsize=16,color="green",shape="box"];1351[label="yv301",fontsize=16,color="green",shape="box"];1352[label="yv4001",fontsize=16,color="green",shape="box"];1353[label="yv301",fontsize=16,color="green",shape="box"];1354[label="yv4001",fontsize=16,color="green",shape="box"];1355[label="yv301",fontsize=16,color="green",shape="box"];1356[label="yv4001",fontsize=16,color="green",shape="box"];1357[label="yv300",fontsize=16,color="green",shape="box"];1358[label="yv4000",fontsize=16,color="green",shape="box"];1359[label="yv300",fontsize=16,color="green",shape="box"];1360[label="yv4000",fontsize=16,color="green",shape="box"];1361[label="yv300",fontsize=16,color="green",shape="box"];1362[label="yv4000",fontsize=16,color="green",shape="box"];1363[label="yv300",fontsize=16,color="green",shape="box"];1364[label="yv4000",fontsize=16,color="green",shape="box"];1365[label="yv300",fontsize=16,color="green",shape="box"];1366[label="yv4000",fontsize=16,color="green",shape="box"];1367[label="yv300",fontsize=16,color="green",shape="box"];1368[label="yv4000",fontsize=16,color="green",shape="box"];1369[label="yv300",fontsize=16,color="green",shape="box"];1370[label="yv4000",fontsize=16,color="green",shape="box"];1371[label="yv300",fontsize=16,color="green",shape="box"];1372[label="yv4000",fontsize=16,color="green",shape="box"];1373[label="yv300",fontsize=16,color="green",shape="box"];1374[label="yv4000",fontsize=16,color="green",shape="box"];1375[label="yv300",fontsize=16,color="green",shape="box"];1376[label="yv4000",fontsize=16,color="green",shape="box"];1377[label="yv300",fontsize=16,color="green",shape="box"];1378[label="yv4000",fontsize=16,color="green",shape="box"];1379[label="yv300",fontsize=16,color="green",shape="box"];1380[label="yv4000",fontsize=16,color="green",shape="box"];1381[label="yv300",fontsize=16,color="green",shape="box"];1382[label="yv4000",fontsize=16,color="green",shape="box"];1383[label="yv300",fontsize=16,color="green",shape="box"];1384[label="yv4000",fontsize=16,color="green",shape="box"];1385 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1385[label="yv302 == yv4002",fontsize=16,color="magenta"];1385 -> 1453[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1385 -> 1454[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1386 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1386[label="yv302 == yv4002",fontsize=16,color="magenta"];1386 -> 1455[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1386 -> 1456[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1387 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1387[label="yv302 == yv4002",fontsize=16,color="magenta"];1387 -> 1457[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1387 -> 1458[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1388 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1388[label="yv302 == yv4002",fontsize=16,color="magenta"];1388 -> 1459[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1388 -> 1460[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1389 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1389[label="yv302 == yv4002",fontsize=16,color="magenta"];1389 -> 1461[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1389 -> 1462[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1390 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1390[label="yv302 == yv4002",fontsize=16,color="magenta"];1390 -> 1463[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1390 -> 1464[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1391 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1391[label="yv302 == yv4002",fontsize=16,color="magenta"];1391 -> 1465[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1391 -> 1466[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1392 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1392[label="yv302 == yv4002",fontsize=16,color="magenta"];1392 -> 1467[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1392 -> 1468[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1393 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1393[label="yv302 == yv4002",fontsize=16,color="magenta"];1393 -> 1469[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1393 -> 1470[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1394 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1394[label="yv302 == yv4002",fontsize=16,color="magenta"];1394 -> 1471[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1394 -> 1472[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1395 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1395[label="yv302 == yv4002",fontsize=16,color="magenta"];1395 -> 1473[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1395 -> 1474[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1396 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1396[label="yv302 == yv4002",fontsize=16,color="magenta"];1396 -> 1475[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1396 -> 1476[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1397 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1397[label="yv302 == yv4002",fontsize=16,color="magenta"];1397 -> 1477[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1397 -> 1478[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1398 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1398[label="yv302 == yv4002",fontsize=16,color="magenta"];1398 -> 1479[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1398 -> 1480[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1399 -> 817[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1399[label="yv301 == yv4001",fontsize=16,color="magenta"];1399 -> 1481[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1399 -> 1482[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1400 -> 818[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1400[label="yv301 == yv4001",fontsize=16,color="magenta"];1400 -> 1483[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1400 -> 1484[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1401 -> 819[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1401[label="yv301 == yv4001",fontsize=16,color="magenta"];1401 -> 1485[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1401 -> 1486[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1402 -> 820[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1402[label="yv301 == yv4001",fontsize=16,color="magenta"];1402 -> 1487[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1402 -> 1488[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1403 -> 821[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1403[label="yv301 == yv4001",fontsize=16,color="magenta"];1403 -> 1489[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1403 -> 1490[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1404 -> 822[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1404[label="yv301 == yv4001",fontsize=16,color="magenta"];1404 -> 1491[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1404 -> 1492[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1405 -> 823[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1405[label="yv301 == yv4001",fontsize=16,color="magenta"];1405 -> 1493[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1405 -> 1494[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1406 -> 824[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1406[label="yv301 == yv4001",fontsize=16,color="magenta"];1406 -> 1495[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1406 -> 1496[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1407 -> 825[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1407[label="yv301 == yv4001",fontsize=16,color="magenta"];1407 -> 1497[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1407 -> 1498[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1408 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1408[label="yv301 == yv4001",fontsize=16,color="magenta"];1408 -> 1499[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1408 -> 1500[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1409 -> 827[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1409[label="yv301 == yv4001",fontsize=16,color="magenta"];1409 -> 1501[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1409 -> 1502[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1410 -> 828[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1410[label="yv301 == yv4001",fontsize=16,color="magenta"];1410 -> 1503[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1410 -> 1504[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1411 -> 829[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1411[label="yv301 == yv4001",fontsize=16,color="magenta"];1411 -> 1505[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1411 -> 1506[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1412 -> 830[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1412[label="yv301 == yv4001",fontsize=16,color="magenta"];1412 -> 1507[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1412 -> 1508[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1413[label="yv300",fontsize=16,color="green",shape="box"];1414[label="yv4000",fontsize=16,color="green",shape="box"];1415[label="yv300",fontsize=16,color="green",shape="box"];1416[label="yv4000",fontsize=16,color="green",shape="box"];1417[label="yv300",fontsize=16,color="green",shape="box"];1418[label="yv4000",fontsize=16,color="green",shape="box"];1419[label="yv300",fontsize=16,color="green",shape="box"];1420[label="yv4000",fontsize=16,color="green",shape="box"];1421[label="yv300",fontsize=16,color="green",shape="box"];1422[label="yv4000",fontsize=16,color="green",shape="box"];1423[label="yv300",fontsize=16,color="green",shape="box"];1424[label="yv4000",fontsize=16,color="green",shape="box"];1425[label="yv300",fontsize=16,color="green",shape="box"];1426[label="yv4000",fontsize=16,color="green",shape="box"];1427[label="yv300",fontsize=16,color="green",shape="box"];1428[label="yv4000",fontsize=16,color="green",shape="box"];1429[label="yv300",fontsize=16,color="green",shape="box"];1430[label="yv4000",fontsize=16,color="green",shape="box"];1431[label="yv300",fontsize=16,color="green",shape="box"];1432[label="yv4000",fontsize=16,color="green",shape="box"];1433[label="yv300",fontsize=16,color="green",shape="box"];1434[label="yv4000",fontsize=16,color="green",shape="box"];1435[label="yv300",fontsize=16,color="green",shape="box"];1436[label="yv4000",fontsize=16,color="green",shape="box"];1437[label="yv300",fontsize=16,color="green",shape="box"];1438[label="yv4000",fontsize=16,color="green",shape="box"];1439[label="yv300",fontsize=16,color="green",shape="box"];1440[label="yv4000",fontsize=16,color="green",shape="box"];1441[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (primPlusInt (Pos yv34) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv34) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1441 -> 1509[label="",style="solid", color="black", weight=3]; 17.87/6.72 1442[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (primPlusInt (Pos yv36) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv36) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1442 -> 1510[label="",style="solid", color="black", weight=3]; 17.87/6.72 1443[label="primMulInt (Pos yv3000) yv4001",fontsize=16,color="burlywood",shape="box"];1867[label="yv4001/Pos yv40010",fontsize=10,color="white",style="solid",shape="box"];1443 -> 1867[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1867 -> 1511[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1868[label="yv4001/Neg yv40010",fontsize=10,color="white",style="solid",shape="box"];1443 -> 1868[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1868 -> 1512[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1444[label="primMulInt (Neg yv3000) yv4001",fontsize=16,color="burlywood",shape="box"];1869[label="yv4001/Pos yv40010",fontsize=10,color="white",style="solid",shape="box"];1444 -> 1869[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1869 -> 1513[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1870[label="yv4001/Neg yv40010",fontsize=10,color="white",style="solid",shape="box"];1444 -> 1870[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1870 -> 1514[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1445 -> 1002[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1445[label="primEqNat yv3000 yv40000",fontsize=16,color="magenta"];1445 -> 1515[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1445 -> 1516[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1446[label="False",fontsize=16,color="green",shape="box"];1447[label="False",fontsize=16,color="green",shape="box"];1448[label="True",fontsize=16,color="green",shape="box"];1449[label="yv3000",fontsize=16,color="green",shape="box"];1450[label="yv40000",fontsize=16,color="green",shape="box"];1451[label="yv3000",fontsize=16,color="green",shape="box"];1452[label="yv40000",fontsize=16,color="green",shape="box"];1453[label="yv302",fontsize=16,color="green",shape="box"];1454[label="yv4002",fontsize=16,color="green",shape="box"];1455[label="yv302",fontsize=16,color="green",shape="box"];1456[label="yv4002",fontsize=16,color="green",shape="box"];1457[label="yv302",fontsize=16,color="green",shape="box"];1458[label="yv4002",fontsize=16,color="green",shape="box"];1459[label="yv302",fontsize=16,color="green",shape="box"];1460[label="yv4002",fontsize=16,color="green",shape="box"];1461[label="yv302",fontsize=16,color="green",shape="box"];1462[label="yv4002",fontsize=16,color="green",shape="box"];1463[label="yv302",fontsize=16,color="green",shape="box"];1464[label="yv4002",fontsize=16,color="green",shape="box"];1465[label="yv302",fontsize=16,color="green",shape="box"];1466[label="yv4002",fontsize=16,color="green",shape="box"];1467[label="yv302",fontsize=16,color="green",shape="box"];1468[label="yv4002",fontsize=16,color="green",shape="box"];1469[label="yv302",fontsize=16,color="green",shape="box"];1470[label="yv4002",fontsize=16,color="green",shape="box"];1471[label="yv302",fontsize=16,color="green",shape="box"];1472[label="yv4002",fontsize=16,color="green",shape="box"];1473[label="yv302",fontsize=16,color="green",shape="box"];1474[label="yv4002",fontsize=16,color="green",shape="box"];1475[label="yv302",fontsize=16,color="green",shape="box"];1476[label="yv4002",fontsize=16,color="green",shape="box"];1477[label="yv302",fontsize=16,color="green",shape="box"];1478[label="yv4002",fontsize=16,color="green",shape="box"];1479[label="yv302",fontsize=16,color="green",shape="box"];1480[label="yv4002",fontsize=16,color="green",shape="box"];1481[label="yv301",fontsize=16,color="green",shape="box"];1482[label="yv4001",fontsize=16,color="green",shape="box"];1483[label="yv301",fontsize=16,color="green",shape="box"];1484[label="yv4001",fontsize=16,color="green",shape="box"];1485[label="yv301",fontsize=16,color="green",shape="box"];1486[label="yv4001",fontsize=16,color="green",shape="box"];1487[label="yv301",fontsize=16,color="green",shape="box"];1488[label="yv4001",fontsize=16,color="green",shape="box"];1489[label="yv301",fontsize=16,color="green",shape="box"];1490[label="yv4001",fontsize=16,color="green",shape="box"];1491[label="yv301",fontsize=16,color="green",shape="box"];1492[label="yv4001",fontsize=16,color="green",shape="box"];1493[label="yv301",fontsize=16,color="green",shape="box"];1494[label="yv4001",fontsize=16,color="green",shape="box"];1495[label="yv301",fontsize=16,color="green",shape="box"];1496[label="yv4001",fontsize=16,color="green",shape="box"];1497[label="yv301",fontsize=16,color="green",shape="box"];1498[label="yv4001",fontsize=16,color="green",shape="box"];1499[label="yv301",fontsize=16,color="green",shape="box"];1500[label="yv4001",fontsize=16,color="green",shape="box"];1501[label="yv301",fontsize=16,color="green",shape="box"];1502[label="yv4001",fontsize=16,color="green",shape="box"];1503[label="yv301",fontsize=16,color="green",shape="box"];1504[label="yv4001",fontsize=16,color="green",shape="box"];1505[label="yv301",fontsize=16,color="green",shape="box"];1506[label="yv4001",fontsize=16,color="green",shape="box"];1507[label="yv301",fontsize=16,color="green",shape="box"];1508[label="yv4001",fontsize=16,color="green",shape="box"];1509[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (primPlusInt (Pos yv34) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv34) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1509 -> 1517[label="",style="solid", color="black", weight=3]; 17.87/6.72 1510[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (primPlusInt (Pos yv36) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv36) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1510 -> 1518[label="",style="solid", color="black", weight=3]; 17.87/6.72 1511[label="primMulInt (Pos yv3000) (Pos yv40010)",fontsize=16,color="black",shape="box"];1511 -> 1519[label="",style="solid", color="black", weight=3]; 17.87/6.72 1512[label="primMulInt (Pos yv3000) (Neg yv40010)",fontsize=16,color="black",shape="box"];1512 -> 1520[label="",style="solid", color="black", weight=3]; 17.87/6.72 1513[label="primMulInt (Neg yv3000) (Pos yv40010)",fontsize=16,color="black",shape="box"];1513 -> 1521[label="",style="solid", color="black", weight=3]; 17.87/6.72 1514[label="primMulInt (Neg yv3000) (Neg yv40010)",fontsize=16,color="black",shape="box"];1514 -> 1522[label="",style="solid", color="black", weight=3]; 17.87/6.72 1515[label="yv3000",fontsize=16,color="green",shape="box"];1516[label="yv40000",fontsize=16,color="green",shape="box"];1517[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (enforceWHNF (WHNF (Pos (primPlusNat yv34 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv34 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1517 -> 1523[label="",style="solid", color="black", weight=3]; 17.87/6.72 1518[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (enforceWHNF (WHNF (Pos (primPlusNat yv36 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv36 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1518 -> 1524[label="",style="solid", color="black", weight=3]; 17.87/6.72 1519[label="Pos (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1519 -> 1525[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1520[label="Neg (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1520 -> 1526[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1521[label="Neg (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1521 -> 1527[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1522[label="Pos (primMulNat yv3000 yv40010)",fontsize=16,color="green",shape="box"];1522 -> 1528[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1523[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (numericEnumFrom (Pos (primPlusNat yv34 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1523 -> 1529[label="",style="solid", color="black", weight=3]; 17.87/6.72 1524[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (numericEnumFrom (Pos (primPlusNat yv36 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1524 -> 1530[label="",style="solid", color="black", weight=3]; 17.87/6.72 1525[label="primMulNat yv3000 yv40010",fontsize=16,color="burlywood",shape="triangle"];1871[label="yv3000/Succ yv30000",fontsize=10,color="white",style="solid",shape="box"];1525 -> 1871[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1871 -> 1531[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1872[label="yv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1525 -> 1872[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1872 -> 1532[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1526 -> 1525[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1526[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1526 -> 1533[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1527 -> 1525[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1527[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1527 -> 1534[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1528 -> 1525[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1528[label="primMulNat yv3000 yv40010",fontsize=16,color="magenta"];1528 -> 1535[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1528 -> 1536[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1529[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 (yv1110 : yv1111) (Pos (primPlusNat yv34 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv34 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1529 -> 1537[label="",style="solid", color="black", weight=3]; 17.87/6.72 1530[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 (yv1810 : yv1811) (Pos (primPlusNat yv36 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv36 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1530 -> 1538[label="",style="solid", color="black", weight=3]; 17.87/6.72 1531[label="primMulNat (Succ yv30000) yv40010",fontsize=16,color="burlywood",shape="box"];1873[label="yv40010/Succ yv400100",fontsize=10,color="white",style="solid",shape="box"];1531 -> 1873[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1873 -> 1539[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1874[label="yv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1531 -> 1874[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1874 -> 1540[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1532[label="primMulNat Zero yv40010",fontsize=16,color="burlywood",shape="box"];1875[label="yv40010/Succ yv400100",fontsize=10,color="white",style="solid",shape="box"];1532 -> 1875[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1875 -> 1541[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1876[label="yv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1532 -> 1876[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1876 -> 1542[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1533[label="yv40010",fontsize=16,color="green",shape="box"];1534[label="yv3000",fontsize=16,color="green",shape="box"];1535[label="yv3000",fontsize=16,color="green",shape="box"];1536[label="yv40010",fontsize=16,color="green",shape="box"];1537[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zip0 yv1110 (Pos (primPlusNat yv34 (Succ Zero))) : zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv34 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1537 -> 1543[label="",style="solid", color="black", weight=3]; 17.87/6.72 1538[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zip0 yv1810 (Pos (primPlusNat yv36 (Succ Zero))) : zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv36 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1538 -> 1544[label="",style="solid", color="black", weight=3]; 17.87/6.72 1539[label="primMulNat (Succ yv30000) (Succ yv400100)",fontsize=16,color="black",shape="box"];1539 -> 1545[label="",style="solid", color="black", weight=3]; 17.87/6.72 1540[label="primMulNat (Succ yv30000) Zero",fontsize=16,color="black",shape="box"];1540 -> 1546[label="",style="solid", color="black", weight=3]; 17.87/6.72 1541[label="primMulNat Zero (Succ yv400100)",fontsize=16,color="black",shape="box"];1541 -> 1547[label="",style="solid", color="black", weight=3]; 17.87/6.72 1542[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1542 -> 1548[label="",style="solid", color="black", weight=3]; 17.87/6.72 1543[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos (primPlusNat yv34 (Succ Zero)))) : map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv34 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1543 -> 1549[label="",style="solid", color="black", weight=3]; 17.87/6.72 1544[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos (primPlusNat yv36 (Succ Zero)))) : map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv36 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1544 -> 1550[label="",style="solid", color="black", weight=3]; 17.87/6.72 1545 -> 1551[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1545[label="primPlusNat (primMulNat yv30000 (Succ yv400100)) (Succ yv400100)",fontsize=16,color="magenta"];1545 -> 1552[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1546[label="Zero",fontsize=16,color="green",shape="box"];1547[label="Zero",fontsize=16,color="green",shape="box"];1548[label="Zero",fontsize=16,color="green",shape="box"];1549 -> 1553[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1549[label="Maybe.listToMaybe ((++) List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos (primPlusNat yv34 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos (primPlusNat yv34 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1549 -> 1554[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1549 -> 1555[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1550 -> 1556[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1550[label="Maybe.listToMaybe ((++) List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos (primPlusNat yv36 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos (primPlusNat yv36 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1550 -> 1557[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1550 -> 1558[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1552 -> 1525[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1552[label="primMulNat yv30000 (Succ yv400100)",fontsize=16,color="magenta"];1552 -> 1559[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1552 -> 1560[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1551[label="primPlusNat yv52 (Succ yv400100)",fontsize=16,color="burlywood",shape="triangle"];1877[label="yv52/Succ yv520",fontsize=10,color="white",style="solid",shape="box"];1551 -> 1877[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1877 -> 1561[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1878[label="yv52/Zero",fontsize=10,color="white",style="solid",shape="box"];1551 -> 1878[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1878 -> 1562[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1554 -> 1551[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1554[label="primPlusNat yv34 (Succ Zero)",fontsize=16,color="magenta"];1554 -> 1563[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1554 -> 1564[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1555 -> 1551[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1555[label="primPlusNat yv34 (Succ Zero)",fontsize=16,color="magenta"];1555 -> 1565[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1555 -> 1566[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1553[label="Maybe.listToMaybe ((++) List.findIndices0 (Left yv10 ==) (zip0 yv1110 (Pos yv53)) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv54 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="triangle"];1553 -> 1567[label="",style="solid", color="black", weight=3]; 17.87/6.72 1557 -> 1551[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1557[label="primPlusNat yv36 (Succ Zero)",fontsize=16,color="magenta"];1557 -> 1568[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1557 -> 1569[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1558 -> 1551[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1558[label="primPlusNat yv36 (Succ Zero)",fontsize=16,color="magenta"];1558 -> 1570[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1558 -> 1571[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1556[label="Maybe.listToMaybe ((++) List.findIndices0 (Right yv17 ==) (zip0 yv1810 (Pos yv55)) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv56 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="triangle"];1556 -> 1572[label="",style="solid", color="black", weight=3]; 17.87/6.72 1559[label="yv30000",fontsize=16,color="green",shape="box"];1560[label="Succ yv400100",fontsize=16,color="green",shape="box"];1561[label="primPlusNat (Succ yv520) (Succ yv400100)",fontsize=16,color="black",shape="box"];1561 -> 1573[label="",style="solid", color="black", weight=3]; 17.87/6.72 1562[label="primPlusNat Zero (Succ yv400100)",fontsize=16,color="black",shape="box"];1562 -> 1574[label="",style="solid", color="black", weight=3]; 17.87/6.72 1563[label="Zero",fontsize=16,color="green",shape="box"];1564[label="yv34",fontsize=16,color="green",shape="box"];1565[label="Zero",fontsize=16,color="green",shape="box"];1566[label="yv34",fontsize=16,color="green",shape="box"];1567[label="Maybe.listToMaybe ((++) List.findIndices00 (Left yv10 ==) (zip0 yv1110 (Pos yv53)) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv54 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1567 -> 1575[label="",style="solid", color="black", weight=3]; 17.87/6.72 1568[label="Zero",fontsize=16,color="green",shape="box"];1569[label="yv36",fontsize=16,color="green",shape="box"];1570[label="Zero",fontsize=16,color="green",shape="box"];1571[label="yv36",fontsize=16,color="green",shape="box"];1572[label="Maybe.listToMaybe ((++) List.findIndices00 (Right yv17 ==) (zip0 yv1810 (Pos yv55)) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv56 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1572 -> 1576[label="",style="solid", color="black", weight=3]; 17.87/6.72 1573[label="Succ (Succ (primPlusNat yv520 yv400100))",fontsize=16,color="green",shape="box"];1573 -> 1577[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1574[label="Succ yv400100",fontsize=16,color="green",shape="box"];1575[label="Maybe.listToMaybe ((++) List.findIndices00 (Left yv10 ==) (yv1110,Pos yv53) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv54 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1575 -> 1578[label="",style="solid", color="black", weight=3]; 17.87/6.72 1576[label="Maybe.listToMaybe ((++) List.findIndices00 (Right yv17 ==) (yv1810,Pos yv55) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv56 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1576 -> 1579[label="",style="solid", color="black", weight=3]; 17.87/6.72 1577[label="primPlusNat yv520 yv400100",fontsize=16,color="burlywood",shape="triangle"];1879[label="yv520/Succ yv5200",fontsize=10,color="white",style="solid",shape="box"];1577 -> 1879[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1879 -> 1580[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1880[label="yv520/Zero",fontsize=10,color="white",style="solid",shape="box"];1577 -> 1880[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1880 -> 1581[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1578 -> 801[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1578[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv53) (Left yv10 == yv1110) foldr (++) [] (map (List.findIndices0 (Left yv10 ==)) (zipWith zip0 yv1111 (numericEnumFrom $! Pos yv54 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1578 -> 1582[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1578 -> 1583[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1578 -> 1584[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1578 -> 1585[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1579 -> 833[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1579[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv55) (Right yv17 == yv1810) foldr (++) [] (map (List.findIndices0 (Right yv17 ==)) (zipWith zip0 yv1811 (numericEnumFrom $! Pos yv56 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];1579 -> 1586[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1579 -> 1587[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1579 -> 1588[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1579 -> 1589[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1580[label="primPlusNat (Succ yv5200) yv400100",fontsize=16,color="burlywood",shape="box"];1881[label="yv400100/Succ yv4001000",fontsize=10,color="white",style="solid",shape="box"];1580 -> 1881[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1881 -> 1590[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1882[label="yv400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1580 -> 1882[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1882 -> 1591[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1581[label="primPlusNat Zero yv400100",fontsize=16,color="burlywood",shape="box"];1883[label="yv400100/Succ yv4001000",fontsize=10,color="white",style="solid",shape="box"];1581 -> 1883[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1883 -> 1592[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1884[label="yv400100/Zero",fontsize=10,color="white",style="solid",shape="box"];1581 -> 1884[label="",style="solid", color="burlywood", weight=9]; 17.87/6.72 1884 -> 1593[label="",style="solid", color="burlywood", weight=3]; 17.87/6.72 1582[label="yv54",fontsize=16,color="green",shape="box"];1583 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1583[label="Left yv10 == yv1110",fontsize=16,color="magenta"];1583 -> 1594[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1583 -> 1595[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1584[label="yv53",fontsize=16,color="green",shape="box"];1585[label="yv1111",fontsize=16,color="green",shape="box"];1586[label="yv55",fontsize=16,color="green",shape="box"];1587 -> 826[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1587[label="Right yv17 == yv1810",fontsize=16,color="magenta"];1587 -> 1596[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1587 -> 1597[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1588[label="yv1811",fontsize=16,color="green",shape="box"];1589[label="yv56",fontsize=16,color="green",shape="box"];1590[label="primPlusNat (Succ yv5200) (Succ yv4001000)",fontsize=16,color="black",shape="box"];1590 -> 1598[label="",style="solid", color="black", weight=3]; 17.87/6.72 1591[label="primPlusNat (Succ yv5200) Zero",fontsize=16,color="black",shape="box"];1591 -> 1599[label="",style="solid", color="black", weight=3]; 17.87/6.72 1592[label="primPlusNat Zero (Succ yv4001000)",fontsize=16,color="black",shape="box"];1592 -> 1600[label="",style="solid", color="black", weight=3]; 17.87/6.72 1593[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1593 -> 1601[label="",style="solid", color="black", weight=3]; 17.87/6.72 1594[label="Left yv10",fontsize=16,color="green",shape="box"];1595[label="yv1110",fontsize=16,color="green",shape="box"];1596[label="Right yv17",fontsize=16,color="green",shape="box"];1597[label="yv1810",fontsize=16,color="green",shape="box"];1598[label="Succ (Succ (primPlusNat yv5200 yv4001000))",fontsize=16,color="green",shape="box"];1598 -> 1602[label="",style="dashed", color="green", weight=3]; 17.87/6.72 1599[label="Succ yv5200",fontsize=16,color="green",shape="box"];1600[label="Succ yv4001000",fontsize=16,color="green",shape="box"];1601[label="Zero",fontsize=16,color="green",shape="box"];1602 -> 1577[label="",style="dashed", color="red", weight=0]; 17.87/6.72 1602[label="primPlusNat yv5200 yv4001000",fontsize=16,color="magenta"];1602 -> 1603[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1602 -> 1604[label="",style="dashed", color="magenta", weight=3]; 17.87/6.72 1603[label="yv5200",fontsize=16,color="green",shape="box"];1604[label="yv4001000",fontsize=16,color="green",shape="box"];} 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (14) 17.87/6.72 Complex Obligation (AND) 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (15) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_listToMaybe0(yv17, yv1810, yv55, yv1811, yv56, ba, bb) -> new_listToMaybe(yv55, new_esEs4(Right(yv17), yv1810, ba, bb), yv17, yv1811, yv56, ba, bb) 17.87/6.72 new_listToMaybe(yv35, False, yv17, :(yv1810, yv1811), yv36, ba, bb) -> new_listToMaybe0(yv17, yv1810, new_primPlusNat0(yv36, Zero), yv1811, new_primPlusNat0(yv36, Zero), ba, bb) 17.87/6.72 17.87/6.72 The TRS R consists of the following rules: 17.87/6.72 17.87/6.72 new_esEs22(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.87/6.72 new_esEs24(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_@0) -> new_esEs8(yv302, yv4002) 17.87/6.72 new_esEs15(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Ordering) -> new_esEs10(yv301, yv4001) 17.87/6.72 new_esEs12(:%(yv300, yv301), :%(yv4000, yv4001), cf) -> new_asAs(new_esEs19(yv300, yv4000, cf), new_esEs18(yv301, yv4001, cf)) 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_[], bcc)) -> new_esEs13(yv301, yv4001, bcc) 17.87/6.72 new_esEs4(Left(yv300), Right(yv4000), bae, hb) -> False 17.87/6.72 new_esEs4(Right(yv300), Left(yv4000), bae, hb) -> False 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_[], beh)) -> new_esEs13(yv300, yv4000, beh) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_esEs25(yv300, yv4000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs17(yv300, yv4000, bff, bfg, bfh) 17.87/6.72 new_esEs22(yv300, yv4000, app(app(ty_Either, gb), gc)) -> new_esEs4(yv300, yv4000, gb, gc) 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_Ratio, fh)) -> new_esEs12(yv300, yv4000, fh) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Bool) -> new_esEs14(yv302, yv4002) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Double) -> new_esEs15(yv302, yv4002) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(app(ty_@3, bab), bac), bad), hb) -> new_esEs17(yv300, yv4000, bab, bac, bad) 17.87/6.72 new_asAs(True, yv51) -> yv51 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Integer, hb) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_esEs22(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_[], ef)) -> new_esEs13(yv301, yv4001, ef) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False 17.87/6.72 new_esEs25(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Float) -> new_esEs6(yv302, yv4002) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs17(yv301, yv4001, bda, bdb, bdc) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(ty_Either, he), hf), hb) -> new_esEs4(yv300, yv4000, he, hf) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_Ratio, bdd)) -> new_esEs12(yv300, yv4000, bdd) 17.87/6.72 new_esEs24(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs16(@2(yv300, yv301), @2(yv4000, yv4001), bbh, bca) -> new_asAs(new_esEs24(yv300, yv4000, bbh), new_esEs23(yv301, yv4001, bca)) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs10(GT, GT) -> True 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs17(yv302, yv4002, eb, ec, ed) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(ty_Either, de), df)) -> new_esEs4(yv302, yv4002, de, df) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_primMulNat0(Zero, Zero) -> Zero 17.87/6.72 new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_Maybe, gd)) -> new_esEs9(yv300, yv4000, gd) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_Ratio, baf)) -> new_esEs12(yv300, yv4000, baf) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Int, hb) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(ty_@2, bcg), bch)) -> new_esEs16(yv301, yv4001, bcg, bch) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs17(yv301, yv4001, fd, ff, fg) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, app(app(ty_Either, bfa), bfb)) -> new_esEs4(yv300, yv4000, bfa, bfb) 17.87/6.72 new_esEs8(@0, @0) -> True 17.87/6.72 new_primEqNat0(Succ(yv3000), Zero) -> False 17.87/6.72 new_primEqNat0(Zero, Succ(yv40000)) -> False 17.87/6.72 new_esEs13([], [], bef) -> True 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_Maybe, bcf)) -> new_esEs9(yv301, yv4001, bcf) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Integer) -> new_esEs5(yv302, yv4002) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(ty_Either, bah), bba)) -> new_esEs4(yv300, yv4000, bah, bba) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, app(app(ty_@2, ge), gf)) -> new_esEs16(yv300, yv4000, ge, gf) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Bool, hb) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Char) -> new_esEs11(yv301, yv4001) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Bool) -> new_esEs14(yv301, yv4001) 17.87/6.72 new_esEs14(False, True) -> False 17.87/6.72 new_esEs14(True, False) -> False 17.87/6.72 new_esEs22(yv300, yv4000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs17(yv300, yv4000, gg, gh, ha) 17.87/6.72 new_esEs10(EQ, EQ) -> True 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs17(yv300, yv4000, bbe, bbf, bbg) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False 17.87/6.72 new_esEs19(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_[], bag)) -> new_esEs13(yv300, yv4000, bag) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Double) -> new_esEs15(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs7(yv30, yv400) -> new_primEqInt(yv30, yv400) 17.87/6.72 new_sr(Pos(yv3000), Neg(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_sr(Neg(yv3000), Pos(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Succ(yv5200), Succ(yv4001000)) -> Succ(Succ(new_primPlusNat1(yv5200, yv4001000))) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_Ratio, hc), hb) -> new_esEs12(yv300, yv4000, hc) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(ty_@2, hh), baa), hb) -> new_esEs16(yv300, yv4000, hh, baa) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs14(False, False) -> True 17.87/6.72 new_esEs9(Nothing, Just(yv4000), bc) -> False 17.87/6.72 new_esEs9(Just(yv300), Nothing, bc) -> False 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_@0, hb) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_[], hd), hb) -> new_esEs13(yv300, yv4000, hd) 17.87/6.72 new_esEs10(LT, EQ) -> False 17.87/6.72 new_esEs10(EQ, LT) -> False 17.87/6.72 new_esEs22(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Ordering) -> new_esEs10(yv302, yv4002) 17.87/6.72 new_esEs9(Nothing, Nothing, bc) -> True 17.87/6.72 new_esEs24(yv300, yv4000, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yv300, yv4000, bdf, bdg) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_Maybe, bbb)) -> new_esEs9(yv300, yv4000, bbb) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_[], bde)) -> new_esEs13(yv300, yv4000, bde) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs16(yv300, yv4000, bbc, bbd) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Float, hb) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(ty_@2, ca), cb)) -> new_esEs16(yv300, yv4000, ca, cb) 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_Ratio, bcb)) -> new_esEs12(yv301, yv4001, bcb) 17.87/6.72 new_esEs10(LT, GT) -> False 17.87/6.72 new_esEs10(GT, LT) -> False 17.87/6.72 new_esEs24(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_Maybe, bh)) -> new_esEs9(yv300, yv4000, bh) 17.87/6.72 new_sr(Neg(yv3000), Neg(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_esEs17(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), cg, da, db) -> new_asAs(new_esEs22(yv300, yv4000, cg), new_asAs(new_esEs21(yv301, yv4001, da), new_esEs20(yv302, yv4002, db))) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(ty_Either, eg), eh)) -> new_esEs4(yv301, yv4001, eg, eh) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Float) -> new_esEs6(yv301, yv4001) 17.87/6.72 new_esEs19(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs18(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_Maybe, hg), hb) -> new_esEs9(yv300, yv4000, hg) 17.87/6.72 new_esEs11(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_[], ga)) -> new_esEs13(yv300, yv4000, ga) 17.87/6.72 new_esEs5(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Int) -> new_esEs7(yv302, yv4002) 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_Ratio, ee)) -> new_esEs12(yv301, yv4001, ee) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(ty_Either, bf), bg)) -> new_esEs4(yv300, yv4000, bf, bg) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs17(yv300, yv4000, cc, cd, ce) 17.87/6.72 new_primPlusNat0(Succ(yv520), yv400100) -> Succ(Succ(new_primPlusNat1(yv520, yv400100))) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_Maybe, bdh)) -> new_esEs9(yv300, yv4000, bdh) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(ty_Either, bcd), bce)) -> new_esEs4(yv301, yv4001, bcd, bce) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(ty_@2, fb), fc)) -> new_esEs16(yv301, yv4001, fb, fc) 17.87/6.72 new_esEs13(:(yv300, yv301), [], bef) -> False 17.87/6.72 new_esEs13([], :(yv4000, yv4001), bef) -> False 17.87/6.72 new_esEs24(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Zero, Zero) -> Zero 17.87/6.72 new_primMulNat0(Succ(yv30000), Zero) -> Zero 17.87/6.72 new_primMulNat0(Zero, Succ(yv400100)) -> Zero 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Char, hb) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_sr(Pos(yv3000), Pos(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_primPlusNat0(Zero, yv400100) -> Succ(yv400100) 17.87/6.72 new_esEs24(yv300, yv4000, app(app(ty_@2, bea), beb)) -> new_esEs16(yv300, yv4000, bea, beb) 17.87/6.72 new_esEs13(:(yv300, yv301), :(yv4000, yv4001), bef) -> new_asAs(new_esEs25(yv300, yv4000, bef), new_esEs13(yv301, yv4001, bef)) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_Maybe, fa)) -> new_esEs9(yv301, yv4001, fa) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Char) -> new_esEs11(yv301, yv4001) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs6(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.87/6.72 new_esEs25(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs10(EQ, GT) -> False 17.87/6.72 new_esEs10(GT, EQ) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.87/6.72 new_primMulNat0(Succ(yv30000), Succ(yv400100)) -> new_primPlusNat0(new_primMulNat0(yv30000, Succ(yv400100)), yv400100) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Double, hb) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Char) -> new_esEs11(yv302, yv4002) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Double) -> new_esEs15(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Succ(yv5200), Zero) -> Succ(yv5200) 17.87/6.72 new_primPlusNat1(Zero, Succ(yv4001000)) -> Succ(yv4001000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_[], be)) -> new_esEs13(yv300, yv4000, be) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_Ratio, bd)) -> new_esEs12(yv300, yv4000, bd) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs18(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs17(yv300, yv4000, bec, bed, bee) 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_Ratio, beg)) -> new_esEs12(yv300, yv4000, beg) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_Maybe, bfc)) -> new_esEs9(yv300, yv4000, bfc) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_primEqNat0(Zero, Zero) -> True 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_Ratio, dc)) -> new_esEs12(yv302, yv4002, dc) 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_Maybe, dg)) -> new_esEs9(yv302, yv4002, dg) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Ordering) -> new_esEs10(yv301, yv4001) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs14(True, True) -> True 17.87/6.72 new_asAs(False, yv51) -> False 17.87/6.72 new_esEs25(yv300, yv4000, app(app(ty_@2, bfd), bfe)) -> new_esEs16(yv300, yv4000, bfd, bfe) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(ty_@2, dh), ea)) -> new_esEs16(yv302, yv4002, dh, ea) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Bool) -> new_esEs14(yv301, yv4001) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Ordering, hb) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs10(LT, LT) -> True 17.87/6.72 new_esEs24(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_[], dd)) -> new_esEs13(yv302, yv4002, dd) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Float) -> new_esEs6(yv301, yv4001) 17.87/6.72 17.87/6.72 The set Q consists of the following terms: 17.87/6.72 17.87/6.72 new_primPlusNat1(Zero, Succ(x0)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 17.87/6.72 new_esEs23(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs21(x0, x1, ty_Bool) 17.87/6.72 new_esEs23(x0, x1, ty_@0) 17.87/6.72 new_esEs24(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs25(x0, x1, ty_Char) 17.87/6.72 new_primMulNat0(Zero, Zero) 17.87/6.72 new_esEs20(x0, x1, ty_Integer) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Float) 17.87/6.72 new_primPlusNat1(Zero, Zero) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Ordering) 17.87/6.72 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs4(Left(x0), Right(x1), x2, x3) 17.87/6.72 new_esEs4(Right(x0), Left(x1), x2, x3) 17.87/6.72 new_esEs9(Just(x0), Nothing, x1) 17.87/6.72 new_asAs(True, x0) 17.87/6.72 new_esEs10(EQ, EQ) 17.87/6.72 new_esEs18(x0, x1, ty_Int) 17.87/6.72 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs21(x0, x1, ty_Integer) 17.87/6.72 new_esEs22(x0, x1, ty_Char) 17.87/6.72 new_primPlusNat0(Zero, x0) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Zero)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.87/6.72 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs6(Float(x0, x1), Float(x2, x3)) 17.87/6.72 new_esEs24(x0, x1, ty_@0) 17.87/6.72 new_esEs15(Double(x0, x1), Double(x2, x3)) 17.87/6.72 new_primMulNat0(Succ(x0), Zero) 17.87/6.72 new_esEs14(True, True) 17.87/6.72 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Zero)) 17.87/6.72 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.87/6.72 new_esEs22(x0, x1, ty_Bool) 17.87/6.72 new_esEs23(x0, x1, ty_Bool) 17.87/6.72 new_esEs21(x0, x1, ty_@0) 17.87/6.72 new_esEs10(LT, LT) 17.87/6.72 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.87/6.72 new_esEs25(x0, x1, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, ty_Float) 17.87/6.72 new_esEs20(x0, x1, ty_Double) 17.87/6.72 new_esEs19(x0, x1, ty_Int) 17.87/6.72 new_primPlusNat1(Succ(x0), Zero) 17.87/6.72 new_esEs23(x0, x1, ty_Char) 17.87/6.72 new_esEs20(x0, x1, ty_@0) 17.87/6.72 new_esEs20(x0, x1, ty_Bool) 17.87/6.72 new_esEs24(x0, x1, ty_Bool) 17.87/6.72 new_esEs14(False, True) 17.87/6.72 new_esEs14(True, False) 17.87/6.72 new_sr(Pos(x0), Pos(x1)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.87/6.72 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs21(x0, x1, ty_Char) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 17.87/6.72 new_primEqNat0(Succ(x0), Zero) 17.87/6.72 new_esEs22(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs24(x0, x1, ty_Int) 17.87/6.72 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs22(x0, x1, app(ty_[], x2)) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Zero)) 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Zero)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.87/6.72 new_primPlusNat0(Succ(x0), x1) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_@0) 17.87/6.72 new_esEs25(x0, x1, ty_Integer) 17.87/6.72 new_primPlusNat1(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs23(x0, x1, ty_Int) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.87/6.72 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_primMulNat0(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 17.87/6.72 new_esEs24(x0, x1, ty_Char) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Int) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_[], x2)) 17.87/6.72 new_esEs22(x0, x1, ty_Integer) 17.87/6.72 new_esEs24(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Double) 17.87/6.72 new_esEs22(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_primEqNat0(Zero, Succ(x0)) 17.87/6.72 new_esEs22(x0, x1, ty_Ordering) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Char) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 17.87/6.72 new_esEs20(x0, x1, ty_Int) 17.87/6.72 new_esEs23(x0, x1, ty_Float) 17.87/6.72 new_esEs10(GT, GT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.87/6.72 new_esEs23(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Nothing, Nothing, x0) 17.87/6.72 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 17.87/6.72 new_esEs23(x0, x1, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs21(x0, x1, ty_Float) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs20(x0, x1, ty_Char) 17.87/6.72 new_esEs10(LT, EQ) 17.87/6.72 new_esEs10(EQ, LT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 17.87/6.72 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Bool) 17.87/6.72 new_esEs25(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.87/6.72 new_esEs7(x0, x1) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 17.87/6.72 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs24(x0, x1, ty_Integer) 17.87/6.72 new_esEs22(x0, x1, ty_Double) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 17.87/6.72 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, ty_Int) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.87/6.72 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_asAs(False, x0) 17.87/6.72 new_esEs5(Integer(x0), Integer(x1)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Integer) 17.87/6.72 new_esEs23(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs11(Char(x0), Char(x1)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 17.87/6.72 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs24(x0, x1, ty_Float) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 17.87/6.72 new_primMulNat0(Zero, Succ(x0)) 17.87/6.72 new_esEs24(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.87/6.72 new_esEs8(@0, @0) 17.87/6.72 new_esEs21(x0, x1, ty_Ordering) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.87/6.72 new_primEqNat0(Zero, Zero) 17.87/6.72 new_esEs19(x0, x1, ty_Integer) 17.87/6.72 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_sr(Neg(x0), Neg(x1)) 17.87/6.72 new_esEs24(x0, x1, ty_Ordering) 17.87/6.72 new_esEs21(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs22(x0, x1, ty_Int) 17.87/6.72 new_esEs25(x0, x1, ty_Float) 17.87/6.72 new_esEs9(Nothing, Just(x0), x1) 17.87/6.72 new_esEs25(x0, x1, ty_Bool) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 17.87/6.72 new_esEs23(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs13([], [], x0) 17.87/6.72 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 17.87/6.72 new_esEs10(LT, GT) 17.87/6.72 new_esEs10(GT, LT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.87/6.72 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs14(False, False) 17.87/6.72 new_esEs13([], :(x0, x1), x2) 17.87/6.72 new_esEs25(x0, x1, ty_Double) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.87/6.72 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.87/6.72 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_sr(Pos(x0), Neg(x1)) 17.87/6.72 new_sr(Neg(x0), Pos(x1)) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.87/6.72 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs22(x0, x1, ty_@0) 17.87/6.72 new_esEs25(x0, x1, ty_Int) 17.87/6.72 new_esEs22(x0, x1, ty_Float) 17.87/6.72 new_esEs13(:(x0, x1), :(x2, x3), x4) 17.87/6.72 new_esEs13(:(x0, x1), [], x2) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs24(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.87/6.72 new_esEs18(x0, x1, ty_Integer) 17.87/6.72 new_esEs25(x0, x1, ty_@0) 17.87/6.72 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs23(x0, x1, ty_Integer) 17.87/6.72 new_esEs21(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs20(x0, x1, ty_Ordering) 17.87/6.72 new_esEs10(EQ, GT) 17.87/6.72 new_esEs10(GT, EQ) 17.87/6.72 new_primEqNat0(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 17.87/6.72 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (16) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_listToMaybe(yv35, False, yv17, :(yv1810, yv1811), yv36, ba, bb) -> new_listToMaybe0(yv17, yv1810, new_primPlusNat0(yv36, Zero), yv1811, new_primPlusNat0(yv36, Zero), ba, bb) 17.87/6.72 The graph contains the following edges 3 >= 1, 4 > 2, 4 > 4, 6 >= 6, 7 >= 7 17.87/6.72 17.87/6.72 17.87/6.72 *new_listToMaybe0(yv17, yv1810, yv55, yv1811, yv56, ba, bb) -> new_listToMaybe(yv55, new_esEs4(Right(yv17), yv1810, ba, bb), yv17, yv1811, yv56, ba, bb) 17.87/6.72 The graph contains the following edges 3 >= 1, 1 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (17) 17.87/6.72 YES 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (18) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_esEs0(Left(yv300), Left(yv4000), app(ty_Maybe, cg), cd) -> new_esEs1(yv300, yv4000, cg) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_@2, bf), bg)) -> new_esEs2(yv300, yv4000, bf, bg) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, bac), bad), bae), he) -> new_esEs3(yv300, yv4000, bac, bad, bae) 17.87/6.72 new_esEs1(Just(yv300), Just(yv4000), app(app(ty_Either, fa), fb)) -> new_esEs0(yv300, yv4000, fa, fb) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, bdd), bde), bag, bcb) -> new_esEs0(yv300, yv4000, bdd, bde) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(ty_Either, bcc), bcd), bcb) -> new_esEs0(yv301, yv4001, bcc, bcd) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(ty_Either, bba), bbb)) -> new_esEs0(yv302, yv4002, bba, bbb) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, bea), beb), bec), bag, bcb) -> new_esEs3(yv300, yv4000, bea, beb, bec) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(yv300, yv4000, bh, ca, cb) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(ty_@2, gg), gh)) -> new_esEs2(yv301, yv4001, gg, gh) 17.87/6.72 new_esEs0(Left(yv300), Left(yv4000), app(app(ty_@2, da), db), cd) -> new_esEs2(yv300, yv4000, da, db) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(ty_[], gc)) -> new_esEs(yv301, yv4001, gc) 17.87/6.72 new_esEs0(Right(yv300), Right(yv4000), df, app(app(ty_Either, dh), ea)) -> new_esEs0(yv300, yv4000, dh, ea) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), ba) -> new_esEs(yv301, yv4001, ba) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(ty_Maybe, be)) -> new_esEs1(yv300, yv4000, be) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(ty_[], bb)) -> new_esEs(yv300, yv4000, bb) 17.87/6.72 new_esEs0(Right(yv300), Right(yv4000), df, app(ty_[], dg)) -> new_esEs(yv300, yv4000, dg) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(yv302, yv4002, bbf, bbg, bbh) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, baa), bab), he) -> new_esEs2(yv300, yv4000, baa, bab) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(ty_@2, bcf), bcg), bcb) -> new_esEs2(yv301, yv4001, bcf, bcg) 17.87/6.72 new_esEs0(Left(yv300), Left(yv4000), app(app(ty_Either, ce), cf), cd) -> new_esEs0(yv300, yv4000, ce, cf) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, hf), hg), he) -> new_esEs0(yv300, yv4000, hf, hg) 17.87/6.72 new_esEs0(Left(yv300), Left(yv4000), app(app(app(ty_@3, dc), dd), de), cd) -> new_esEs3(yv300, yv4000, dc, dd, de) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(ty_@2, bbd), bbe)) -> new_esEs2(yv302, yv4002, bbd, bbe) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(yv301, yv4001, gd, ge) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(yv301, yv4001, ha, hb, hc) 17.87/6.72 new_esEs0(Right(yv300), Right(yv4000), df, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs3(yv300, yv4000, ee, ef, eg) 17.87/6.72 new_esEs1(Just(yv300), Just(yv4000), app(app(ty_@2, fd), ff)) -> new_esEs2(yv300, yv4000, fd, ff) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcb) -> new_esEs3(yv301, yv4001, bch, bda, bdb) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(ty_[], bca), bcb) -> new_esEs(yv301, yv4001, bca) 17.87/6.72 new_esEs1(Just(yv300), Just(yv4000), app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(yv300, yv4000, fg, fh, ga) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, bdg), bdh), bag, bcb) -> new_esEs2(yv300, yv4000, bdg, bdh) 17.87/6.72 new_esEs0(Right(yv300), Right(yv4000), df, app(ty_Maybe, eb)) -> new_esEs1(yv300, yv4000, eb) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(ty_[], bah)) -> new_esEs(yv302, yv4002, bah) 17.87/6.72 new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_Either, bc), bd)) -> new_esEs0(yv300, yv4000, bc, bd) 17.87/6.72 new_esEs1(Just(yv300), Just(yv4000), app(ty_[], eh)) -> new_esEs(yv300, yv4000, eh) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, bdf), bag, bcb) -> new_esEs1(yv300, yv4000, bdf) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], hd), he) -> new_esEs(yv300, yv4000, hd) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(ty_Maybe, gf)) -> new_esEs1(yv301, yv4001, gf) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(ty_Maybe, bce), bcb) -> new_esEs1(yv301, yv4001, bce) 17.87/6.72 new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, hh), he) -> new_esEs1(yv300, yv4000, hh) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], bdc), bag, bcb) -> new_esEs(yv300, yv4000, bdc) 17.87/6.72 new_esEs1(Just(yv300), Just(yv4000), app(ty_Maybe, fc)) -> new_esEs1(yv300, yv4000, fc) 17.87/6.72 new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(ty_Maybe, bbc)) -> new_esEs1(yv302, yv4002, bbc) 17.87/6.72 new_esEs0(Left(yv300), Left(yv4000), app(ty_[], cc), cd) -> new_esEs(yv300, yv4000, cc) 17.87/6.72 new_esEs0(Right(yv300), Right(yv4000), df, app(app(ty_@2, ec), ed)) -> new_esEs2(yv300, yv4000, ec, ed) 17.87/6.72 17.87/6.72 R is empty. 17.87/6.72 Q is empty. 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (19) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_esEs1(Just(yv300), Just(yv4000), app(app(ty_Either, fa), fb)) -> new_esEs0(yv300, yv4000, fa, fb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs1(Just(yv300), Just(yv4000), app(ty_[], eh)) -> new_esEs(yv300, yv4000, eh) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs1(Just(yv300), Just(yv4000), app(app(ty_@2, fd), ff)) -> new_esEs2(yv300, yv4000, fd, ff) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs1(Just(yv300), Just(yv4000), app(ty_Maybe, fc)) -> new_esEs1(yv300, yv4000, fc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs1(Just(yv300), Just(yv4000), app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(yv300, yv4000, fg, fh, ga) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_Either, bc), bd)) -> new_esEs0(yv300, yv4000, bc, bd) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(ty_@2, bf), bg)) -> new_esEs2(yv300, yv4000, bf, bg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(ty_Maybe, be)) -> new_esEs1(yv300, yv4000, be) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(yv300, yv4000, bh, ca, cb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_Either, hf), hg), he) -> new_esEs0(yv300, yv4000, hf, hg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(yv301, yv4001, gd, ge) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_Either, bdd), bde), bag, bcb) -> new_esEs0(yv300, yv4000, bdd, bde) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(ty_Either, bcc), bcd), bcb) -> new_esEs0(yv301, yv4001, bcc, bcd) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(ty_Either, bba), bbb)) -> new_esEs0(yv302, yv4002, bba, bbb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Right(yv300), Right(yv4000), df, app(app(ty_Either, dh), ea)) -> new_esEs0(yv300, yv4000, dh, ea) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Left(yv300), Left(yv4000), app(app(ty_Either, ce), cf), cd) -> new_esEs0(yv300, yv4000, ce, cf) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(ty_[], gc)) -> new_esEs(yv301, yv4001, gc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_[], hd), he) -> new_esEs(yv300, yv4000, hd) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(ty_@2, gg), gh)) -> new_esEs2(yv301, yv4001, gg, gh) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(ty_@2, baa), bab), he) -> new_esEs2(yv300, yv4000, baa, bab) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(ty_Maybe, gf)) -> new_esEs1(yv301, yv4001, gf) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(ty_Maybe, hh), he) -> new_esEs1(yv300, yv4000, hh) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), app(app(app(ty_@3, bac), bad), bae), he) -> new_esEs3(yv300, yv4000, bac, bad, bae) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs2(@2(yv300, yv301), @2(yv4000, yv4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(yv301, yv4001, ha, hb, hc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(ty_[], bca), bcb) -> new_esEs(yv301, yv4001, bca) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(ty_[], bah)) -> new_esEs(yv302, yv4002, bah) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_[], bdc), bag, bcb) -> new_esEs(yv300, yv4000, bdc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Right(yv300), Right(yv4000), df, app(ty_[], dg)) -> new_esEs(yv300, yv4000, dg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Left(yv300), Left(yv4000), app(ty_[], cc), cd) -> new_esEs(yv300, yv4000, cc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), ba) -> new_esEs(yv301, yv4001, ba) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs(:(yv300, yv301), :(yv4000, yv4001), app(ty_[], bb)) -> new_esEs(yv300, yv4000, bb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(ty_@2, bcf), bcg), bcb) -> new_esEs2(yv301, yv4001, bcf, bcg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(ty_@2, bbd), bbe)) -> new_esEs2(yv302, yv4002, bbd, bbe) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(ty_@2, bdg), bdh), bag, bcb) -> new_esEs2(yv300, yv4000, bdg, bdh) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(ty_Maybe, bdf), bag, bcb) -> new_esEs1(yv300, yv4000, bdf) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(ty_Maybe, bce), bcb) -> new_esEs1(yv301, yv4001, bce) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(ty_Maybe, bbc)) -> new_esEs1(yv302, yv4002, bbc) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), app(app(app(ty_@3, bea), beb), bec), bag, bcb) -> new_esEs3(yv300, yv4000, bea, beb, bec) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(yv302, yv4002, bbf, bbg, bbh) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs3(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcb) -> new_esEs3(yv301, yv4001, bch, bda, bdb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Left(yv300), Left(yv4000), app(app(ty_@2, da), db), cd) -> new_esEs2(yv300, yv4000, da, db) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Right(yv300), Right(yv4000), df, app(app(ty_@2, ec), ed)) -> new_esEs2(yv300, yv4000, ec, ed) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Left(yv300), Left(yv4000), app(ty_Maybe, cg), cd) -> new_esEs1(yv300, yv4000, cg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Right(yv300), Right(yv4000), df, app(ty_Maybe, eb)) -> new_esEs1(yv300, yv4000, eb) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Left(yv300), Left(yv4000), app(app(app(ty_@3, dc), dd), de), cd) -> new_esEs3(yv300, yv4000, dc, dd, de) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.87/6.72 17.87/6.72 17.87/6.72 *new_esEs0(Right(yv300), Right(yv4000), df, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs3(yv300, yv4000, ee, ef, eg) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (20) 17.87/6.72 YES 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (21) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_primMulNat(Succ(yv30000), Succ(yv400100)) -> new_primMulNat(yv30000, Succ(yv400100)) 17.87/6.72 17.87/6.72 R is empty. 17.87/6.72 Q is empty. 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (22) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_primMulNat(Succ(yv30000), Succ(yv400100)) -> new_primMulNat(yv30000, Succ(yv400100)) 17.87/6.72 The graph contains the following edges 1 > 1, 2 >= 2 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (23) 17.87/6.72 YES 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (24) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_listToMaybe1(yv10, yv1110, yv53, yv1111, yv54, ba, bb) -> new_listToMaybe2(yv53, new_esEs4(Left(yv10), yv1110, ba, bb), yv10, yv1111, yv54, ba, bb) 17.87/6.72 new_listToMaybe2(yv33, False, yv10, :(yv1110, yv1111), yv34, ba, bb) -> new_listToMaybe1(yv10, yv1110, new_primPlusNat0(yv34, Zero), yv1111, new_primPlusNat0(yv34, Zero), ba, bb) 17.87/6.72 17.87/6.72 The TRS R consists of the following rules: 17.87/6.72 17.87/6.72 new_esEs22(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.87/6.72 new_esEs24(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_@0) -> new_esEs8(yv302, yv4002) 17.87/6.72 new_esEs15(Double(yv300, yv301), Double(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Ordering) -> new_esEs10(yv301, yv4001) 17.87/6.72 new_esEs12(:%(yv300, yv301), :%(yv4000, yv4001), cf) -> new_asAs(new_esEs19(yv300, yv4000, cf), new_esEs18(yv301, yv4001, cf)) 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_[], bcc)) -> new_esEs13(yv301, yv4001, bcc) 17.87/6.72 new_esEs4(Left(yv300), Right(yv4000), bae, hb) -> False 17.87/6.72 new_esEs4(Right(yv300), Left(yv4000), bae, hb) -> False 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_[], beh)) -> new_esEs13(yv300, yv4000, beh) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_esEs25(yv300, yv4000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs17(yv300, yv4000, bff, bfg, bfh) 17.87/6.72 new_esEs22(yv300, yv4000, app(app(ty_Either, gb), gc)) -> new_esEs4(yv300, yv4000, gb, gc) 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_Ratio, fh)) -> new_esEs12(yv300, yv4000, fh) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Bool) -> new_esEs14(yv302, yv4002) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Double) -> new_esEs15(yv302, yv4002) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(app(ty_@3, bab), bac), bad), hb) -> new_esEs17(yv300, yv4000, bab, bac, bad) 17.87/6.72 new_asAs(True, yv51) -> yv51 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Integer, hb) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_esEs22(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_[], ef)) -> new_esEs13(yv301, yv4001, ef) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Pos(Zero)) -> False 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Succ(yv40000))) -> False 17.87/6.72 new_esEs25(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Float) -> new_esEs6(yv302, yv4002) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs17(yv301, yv4001, bda, bdb, bdc) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(ty_Either, he), hf), hb) -> new_esEs4(yv300, yv4000, he, hf) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_Ratio, bdd)) -> new_esEs12(yv300, yv4000, bdd) 17.87/6.72 new_esEs24(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_primEqNat0(Succ(yv3000), Succ(yv40000)) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs16(@2(yv300, yv301), @2(yv4000, yv4001), bbh, bca) -> new_asAs(new_esEs24(yv300, yv4000, bbh), new_esEs23(yv301, yv4001, bca)) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs10(GT, GT) -> True 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs17(yv302, yv4002, eb, ec, ed) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(ty_Either, de), df)) -> new_esEs4(yv302, yv4002, de, df) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_primMulNat0(Zero, Zero) -> Zero 17.87/6.72 new_esEs25(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_Maybe, gd)) -> new_esEs9(yv300, yv4000, gd) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_Ratio, baf)) -> new_esEs12(yv300, yv4000, baf) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Int, hb) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(ty_@2, bcg), bch)) -> new_esEs16(yv301, yv4001, bcg, bch) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs17(yv301, yv4001, fd, ff, fg) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, app(app(ty_Either, bfa), bfb)) -> new_esEs4(yv300, yv4000, bfa, bfb) 17.87/6.72 new_esEs8(@0, @0) -> True 17.87/6.72 new_primEqNat0(Succ(yv3000), Zero) -> False 17.87/6.72 new_primEqNat0(Zero, Succ(yv40000)) -> False 17.87/6.72 new_esEs13([], [], bef) -> True 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_Maybe, bcf)) -> new_esEs9(yv301, yv4001, bcf) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Integer) -> new_esEs5(yv302, yv4002) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(ty_Either, bah), bba)) -> new_esEs4(yv300, yv4000, bah, bba) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, app(app(ty_@2, ge), gf)) -> new_esEs16(yv300, yv4000, ge, gf) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Bool, hb) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Char) -> new_esEs11(yv301, yv4001) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Bool) -> new_esEs14(yv301, yv4001) 17.87/6.72 new_esEs14(False, True) -> False 17.87/6.72 new_esEs14(True, False) -> False 17.87/6.72 new_esEs22(yv300, yv4000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs17(yv300, yv4000, gg, gh, ha) 17.87/6.72 new_esEs10(EQ, EQ) -> True 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs17(yv300, yv4000, bbe, bbf, bbg) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs23(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Neg(Zero)) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Succ(yv40000))) -> False 17.87/6.72 new_esEs19(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Pos(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_[], bag)) -> new_esEs13(yv300, yv4000, bag) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Double) -> new_esEs15(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs7(yv30, yv400) -> new_primEqInt(yv30, yv400) 17.87/6.72 new_sr(Pos(yv3000), Neg(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_sr(Neg(yv3000), Pos(yv40010)) -> Neg(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Succ(yv5200), Succ(yv4001000)) -> Succ(Succ(new_primPlusNat1(yv5200, yv4001000))) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_Ratio, hc), hb) -> new_esEs12(yv300, yv4000, hc) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(app(ty_@2, hh), baa), hb) -> new_esEs16(yv300, yv4000, hh, baa) 17.87/6.72 new_primEqInt(Pos(Succ(yv3000)), Neg(yv4000)) -> False 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Pos(yv4000)) -> False 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs14(False, False) -> True 17.87/6.72 new_esEs9(Nothing, Just(yv4000), bc) -> False 17.87/6.72 new_esEs9(Just(yv300), Nothing, bc) -> False 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_@0, hb) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_[], hd), hb) -> new_esEs13(yv300, yv4000, hd) 17.87/6.72 new_esEs10(LT, EQ) -> False 17.87/6.72 new_esEs10(EQ, LT) -> False 17.87/6.72 new_esEs22(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Ordering) -> new_esEs10(yv302, yv4002) 17.87/6.72 new_esEs9(Nothing, Nothing, bc) -> True 17.87/6.72 new_esEs24(yv300, yv4000, app(app(ty_Either, bdf), bdg)) -> new_esEs4(yv300, yv4000, bdf, bdg) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(ty_Maybe, bbb)) -> new_esEs9(yv300, yv4000, bbb) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_[], bde)) -> new_esEs13(yv300, yv4000, bde) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs16(yv300, yv4000, bbc, bbd) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Float, hb) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(ty_@2, ca), cb)) -> new_esEs16(yv300, yv4000, ca, cb) 17.87/6.72 new_esEs23(yv301, yv4001, app(ty_Ratio, bcb)) -> new_esEs12(yv301, yv4001, bcb) 17.87/6.72 new_esEs10(LT, GT) -> False 17.87/6.72 new_esEs10(GT, LT) -> False 17.87/6.72 new_esEs24(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_Maybe, bh)) -> new_esEs9(yv300, yv4000, bh) 17.87/6.72 new_sr(Neg(yv3000), Neg(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_esEs17(@3(yv300, yv301, yv302), @3(yv4000, yv4001, yv4002), cg, da, db) -> new_asAs(new_esEs22(yv300, yv4000, cg), new_asAs(new_esEs21(yv301, yv4001, da), new_esEs20(yv302, yv4002, db))) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(ty_Either, eg), eh)) -> new_esEs4(yv301, yv4001, eg, eh) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Float) -> new_esEs6(yv301, yv4001) 17.87/6.72 new_esEs19(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Char) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_esEs18(yv301, yv4001, ty_Integer) -> new_esEs5(yv301, yv4001) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), app(ty_Maybe, hg), hb) -> new_esEs9(yv300, yv4000, hg) 17.87/6.72 new_esEs11(Char(yv300), Char(yv4000)) -> new_primEqNat0(yv300, yv4000) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs21(yv301, yv4001, ty_@0) -> new_esEs8(yv301, yv4001) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Succ(yv40000))) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Succ(yv40000))) -> False 17.87/6.72 new_esEs22(yv300, yv4000, app(ty_[], ga)) -> new_esEs13(yv300, yv4000, ga) 17.87/6.72 new_esEs5(Integer(yv300), Integer(yv4000)) -> new_primEqInt(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Int) -> new_esEs7(yv302, yv4002) 17.87/6.72 new_primEqInt(Neg(Succ(yv3000)), Neg(Succ(yv40000))) -> new_primEqNat0(yv3000, yv40000) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_Ratio, ee)) -> new_esEs12(yv301, yv4001, ee) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(ty_Either, bf), bg)) -> new_esEs4(yv300, yv4000, bf, bg) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs17(yv300, yv4000, cc, cd, ce) 17.87/6.72 new_primPlusNat0(Succ(yv520), yv400100) -> Succ(Succ(new_primPlusNat1(yv520, yv400100))) 17.87/6.72 new_esEs24(yv300, yv4000, app(ty_Maybe, bdh)) -> new_esEs9(yv300, yv4000, bdh) 17.87/6.72 new_esEs23(yv301, yv4001, app(app(ty_Either, bcd), bce)) -> new_esEs4(yv301, yv4001, bcd, bce) 17.87/6.72 new_esEs21(yv301, yv4001, app(app(ty_@2, fb), fc)) -> new_esEs16(yv301, yv4001, fb, fc) 17.87/6.72 new_esEs13(:(yv300, yv301), [], bef) -> False 17.87/6.72 new_esEs13([], :(yv4000, yv4001), bef) -> False 17.87/6.72 new_esEs24(yv300, yv4000, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Zero, Zero) -> Zero 17.87/6.72 new_primMulNat0(Succ(yv30000), Zero) -> Zero 17.87/6.72 new_primMulNat0(Zero, Succ(yv400100)) -> Zero 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Char, hb) -> new_esEs11(yv300, yv4000) 17.87/6.72 new_sr(Pos(yv3000), Pos(yv40010)) -> Pos(new_primMulNat0(yv3000, yv40010)) 17.87/6.72 new_primPlusNat0(Zero, yv400100) -> Succ(yv400100) 17.87/6.72 new_esEs24(yv300, yv4000, app(app(ty_@2, bea), beb)) -> new_esEs16(yv300, yv4000, bea, beb) 17.87/6.72 new_esEs13(:(yv300, yv301), :(yv4000, yv4001), bef) -> new_asAs(new_esEs25(yv300, yv4000, bef), new_esEs13(yv301, yv4001, bef)) 17.87/6.72 new_esEs21(yv301, yv4001, app(ty_Maybe, fa)) -> new_esEs9(yv301, yv4001, fa) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Char) -> new_esEs11(yv301, yv4001) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs6(Float(yv300, yv301), Float(yv4000, yv4001)) -> new_esEs7(new_sr(yv300, yv4001), new_sr(yv301, yv4000)) 17.87/6.72 new_esEs25(yv300, yv4000, ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs10(EQ, GT) -> False 17.87/6.72 new_esEs10(GT, EQ) -> False 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.87/6.72 new_primMulNat0(Succ(yv30000), Succ(yv400100)) -> new_primPlusNat0(new_primMulNat0(yv30000, Succ(yv400100)), yv400100) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Bool) -> new_esEs14(yv300, yv4000) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Double, hb) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, ty_Char) -> new_esEs11(yv302, yv4002) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Double) -> new_esEs15(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_primPlusNat1(Succ(yv5200), Zero) -> Succ(yv5200) 17.87/6.72 new_primPlusNat1(Zero, Succ(yv4001000)) -> Succ(yv4001000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_[], be)) -> new_esEs13(yv300, yv4000, be) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), app(ty_Ratio, bd)) -> new_esEs12(yv300, yv4000, bd) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_Float) -> new_esEs6(yv300, yv4000) 17.87/6.72 new_esEs4(Right(yv300), Right(yv4000), bae, ty_Ordering) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs18(yv301, yv4001, ty_Int) -> new_esEs7(yv301, yv4001) 17.87/6.72 new_esEs24(yv300, yv4000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs17(yv300, yv4000, bec, bed, bee) 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_Ratio, beg)) -> new_esEs12(yv300, yv4000, beg) 17.87/6.72 new_esEs25(yv300, yv4000, ty_Int) -> new_esEs7(yv300, yv4000) 17.87/6.72 new_esEs25(yv300, yv4000, app(ty_Maybe, bfc)) -> new_esEs9(yv300, yv4000, bfc) 17.87/6.72 new_esEs22(yv300, yv4000, ty_Integer) -> new_esEs5(yv300, yv4000) 17.87/6.72 new_primEqNat0(Zero, Zero) -> True 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_Ratio, dc)) -> new_esEs12(yv302, yv4002, dc) 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_Maybe, dg)) -> new_esEs9(yv302, yv4002, dg) 17.87/6.72 new_esEs23(yv301, yv4001, ty_Ordering) -> new_esEs10(yv301, yv4001) 17.87/6.72 new_esEs9(Just(yv300), Just(yv4000), ty_@0) -> new_esEs8(yv300, yv4000) 17.87/6.72 new_esEs14(True, True) -> True 17.87/6.72 new_asAs(False, yv51) -> False 17.87/6.72 new_esEs25(yv300, yv4000, app(app(ty_@2, bfd), bfe)) -> new_esEs16(yv300, yv4000, bfd, bfe) 17.87/6.72 new_esEs20(yv302, yv4002, app(app(ty_@2, dh), ea)) -> new_esEs16(yv302, yv4002, dh, ea) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Bool) -> new_esEs14(yv301, yv4001) 17.87/6.72 new_esEs4(Left(yv300), Left(yv4000), ty_Ordering, hb) -> new_esEs10(yv300, yv4000) 17.87/6.72 new_esEs10(LT, LT) -> True 17.87/6.72 new_esEs24(yv300, yv4000, ty_Double) -> new_esEs15(yv300, yv4000) 17.87/6.72 new_esEs20(yv302, yv4002, app(ty_[], dd)) -> new_esEs13(yv302, yv4002, dd) 17.87/6.72 new_esEs21(yv301, yv4001, ty_Float) -> new_esEs6(yv301, yv4001) 17.87/6.72 17.87/6.72 The set Q consists of the following terms: 17.87/6.72 17.87/6.72 new_primPlusNat1(Zero, Succ(x0)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Integer, x2) 17.87/6.72 new_esEs23(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs21(x0, x1, ty_Bool) 17.87/6.72 new_esEs23(x0, x1, ty_@0) 17.87/6.72 new_esEs24(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs25(x0, x1, ty_Char) 17.87/6.72 new_primMulNat0(Zero, Zero) 17.87/6.72 new_esEs20(x0, x1, ty_Integer) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Float) 17.87/6.72 new_primPlusNat1(Zero, Zero) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Ordering) 17.87/6.72 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs4(Left(x0), Right(x1), x2, x3) 17.87/6.72 new_esEs4(Right(x0), Left(x1), x2, x3) 17.87/6.72 new_esEs9(Just(x0), Nothing, x1) 17.87/6.72 new_asAs(True, x0) 17.87/6.72 new_esEs10(EQ, EQ) 17.87/6.72 new_esEs18(x0, x1, ty_Int) 17.87/6.72 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs21(x0, x1, ty_Integer) 17.87/6.72 new_esEs22(x0, x1, ty_Char) 17.87/6.72 new_primPlusNat0(Zero, x0) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Bool) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Zero)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.87/6.72 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs6(Float(x0, x1), Float(x2, x3)) 17.87/6.72 new_esEs24(x0, x1, ty_@0) 17.87/6.72 new_esEs15(Double(x0, x1), Double(x2, x3)) 17.87/6.72 new_primMulNat0(Succ(x0), Zero) 17.87/6.72 new_esEs14(True, True) 17.87/6.72 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Zero)) 17.87/6.72 new_esEs12(:%(x0, x1), :%(x2, x3), x4) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.87/6.72 new_esEs22(x0, x1, ty_Bool) 17.87/6.72 new_esEs23(x0, x1, ty_Bool) 17.87/6.72 new_esEs21(x0, x1, ty_@0) 17.87/6.72 new_esEs10(LT, LT) 17.87/6.72 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.87/6.72 new_esEs25(x0, x1, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, ty_Float) 17.87/6.72 new_esEs20(x0, x1, ty_Double) 17.87/6.72 new_esEs19(x0, x1, ty_Int) 17.87/6.72 new_primPlusNat1(Succ(x0), Zero) 17.87/6.72 new_esEs23(x0, x1, ty_Char) 17.87/6.72 new_esEs20(x0, x1, ty_@0) 17.87/6.72 new_esEs20(x0, x1, ty_Bool) 17.87/6.72 new_esEs24(x0, x1, ty_Bool) 17.87/6.72 new_esEs14(False, True) 17.87/6.72 new_esEs14(True, False) 17.87/6.72 new_sr(Pos(x0), Pos(x1)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.87/6.72 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs21(x0, x1, ty_Char) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_@0, x2) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 17.87/6.72 new_primEqNat0(Succ(x0), Zero) 17.87/6.72 new_esEs22(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs24(x0, x1, ty_Int) 17.87/6.72 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs22(x0, x1, app(ty_[], x2)) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Zero)) 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Zero)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.87/6.72 new_primPlusNat0(Succ(x0), x1) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_@0) 17.87/6.72 new_esEs25(x0, x1, ty_Integer) 17.87/6.72 new_primPlusNat1(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs23(x0, x1, ty_Int) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.87/6.72 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_primMulNat0(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Bool, x2) 17.87/6.72 new_esEs24(x0, x1, ty_Char) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Int) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(ty_[], x2)) 17.87/6.72 new_esEs22(x0, x1, ty_Integer) 17.87/6.72 new_esEs24(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Double) 17.87/6.72 new_esEs22(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_primEqNat0(Zero, Succ(x0)) 17.87/6.72 new_esEs22(x0, x1, ty_Ordering) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Double, x2) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.87/6.72 new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Char) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Integer) 17.87/6.72 new_esEs20(x0, x1, ty_Int) 17.87/6.72 new_esEs23(x0, x1, ty_Float) 17.87/6.72 new_esEs10(GT, GT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.87/6.72 new_esEs23(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Nothing, Nothing, x0) 17.87/6.72 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Char, x2) 17.87/6.72 new_esEs23(x0, x1, ty_Ordering) 17.87/6.72 new_esEs20(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs21(x0, x1, ty_Float) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs20(x0, x1, ty_Char) 17.87/6.72 new_esEs10(LT, EQ) 17.87/6.72 new_esEs10(EQ, LT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Char) 17.87/6.72 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, ty_Double) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Bool) 17.87/6.72 new_esEs25(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Int, x2) 17.87/6.72 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.87/6.72 new_esEs7(x0, x1) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Int) 17.87/6.72 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs24(x0, x1, ty_Integer) 17.87/6.72 new_esEs22(x0, x1, ty_Double) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) 17.87/6.72 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, ty_Int) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.87/6.72 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 17.87/6.72 new_asAs(False, x0) 17.87/6.72 new_esEs5(Integer(x0), Integer(x1)) 17.87/6.72 new_esEs9(Just(x0), Just(x1), ty_Integer) 17.87/6.72 new_esEs23(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs11(Char(x0), Char(x1)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Double) 17.87/6.72 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs24(x0, x1, ty_Float) 17.87/6.72 new_esEs4(Left(x0), Left(x1), ty_Float, x2) 17.87/6.72 new_primMulNat0(Zero, Succ(x0)) 17.87/6.72 new_esEs24(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.87/6.72 new_esEs8(@0, @0) 17.87/6.72 new_esEs21(x0, x1, ty_Ordering) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.87/6.72 new_primEqNat0(Zero, Zero) 17.87/6.72 new_esEs19(x0, x1, ty_Integer) 17.87/6.72 new_esEs25(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_sr(Neg(x0), Neg(x1)) 17.87/6.72 new_esEs24(x0, x1, ty_Ordering) 17.87/6.72 new_esEs21(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs22(x0, x1, ty_Int) 17.87/6.72 new_esEs25(x0, x1, ty_Float) 17.87/6.72 new_esEs9(Nothing, Just(x0), x1) 17.87/6.72 new_esEs25(x0, x1, ty_Bool) 17.87/6.72 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_@0) 17.87/6.72 new_esEs23(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs13([], [], x0) 17.87/6.72 new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) 17.87/6.72 new_esEs10(LT, GT) 17.87/6.72 new_esEs10(GT, LT) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.87/6.72 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs14(False, False) 17.87/6.72 new_esEs13([], :(x0, x1), x2) 17.87/6.72 new_esEs25(x0, x1, ty_Double) 17.87/6.72 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.87/6.72 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.87/6.72 new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.87/6.72 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_sr(Pos(x0), Neg(x1)) 17.87/6.72 new_sr(Neg(x0), Pos(x1)) 17.87/6.72 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.87/6.72 new_esEs25(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs22(x0, x1, ty_@0) 17.87/6.72 new_esEs25(x0, x1, ty_Int) 17.87/6.72 new_esEs22(x0, x1, ty_Float) 17.87/6.72 new_esEs13(:(x0, x1), :(x2, x3), x4) 17.87/6.72 new_esEs13(:(x0, x1), [], x2) 17.87/6.72 new_esEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.87/6.72 new_esEs21(x0, x1, app(ty_Maybe, x2)) 17.87/6.72 new_esEs24(x0, x1, app(ty_Ratio, x2)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.87/6.72 new_esEs18(x0, x1, ty_Integer) 17.87/6.72 new_esEs25(x0, x1, ty_@0) 17.87/6.72 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 new_esEs23(x0, x1, ty_Integer) 17.87/6.72 new_esEs21(x0, x1, app(ty_[], x2)) 17.87/6.72 new_esEs20(x0, x1, ty_Ordering) 17.87/6.72 new_esEs10(EQ, GT) 17.87/6.72 new_esEs10(GT, EQ) 17.87/6.72 new_primEqNat0(Succ(x0), Succ(x1)) 17.87/6.72 new_esEs4(Right(x0), Right(x1), x2, ty_Float) 17.87/6.72 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 17.87/6.72 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (25) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_listToMaybe2(yv33, False, yv10, :(yv1110, yv1111), yv34, ba, bb) -> new_listToMaybe1(yv10, yv1110, new_primPlusNat0(yv34, Zero), yv1111, new_primPlusNat0(yv34, Zero), ba, bb) 17.87/6.72 The graph contains the following edges 3 >= 1, 4 > 2, 4 > 4, 6 >= 6, 7 >= 7 17.87/6.72 17.87/6.72 17.87/6.72 *new_listToMaybe1(yv10, yv1110, yv53, yv1111, yv54, ba, bb) -> new_listToMaybe2(yv53, new_esEs4(Left(yv10), yv1110, ba, bb), yv10, yv1111, yv54, ba, bb) 17.87/6.72 The graph contains the following edges 3 >= 1, 1 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (26) 17.87/6.72 YES 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (27) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_primPlusNat(Succ(yv5200), Succ(yv4001000)) -> new_primPlusNat(yv5200, yv4001000) 17.87/6.72 17.87/6.72 R is empty. 17.87/6.72 Q is empty. 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (28) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_primPlusNat(Succ(yv5200), Succ(yv4001000)) -> new_primPlusNat(yv5200, yv4001000) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (29) 17.87/6.72 YES 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (30) 17.87/6.72 Obligation: 17.87/6.72 Q DP problem: 17.87/6.72 The TRS P consists of the following rules: 17.87/6.72 17.87/6.72 new_primEqNat(Succ(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) 17.87/6.72 17.87/6.72 R is empty. 17.87/6.72 Q is empty. 17.87/6.72 We have to consider all minimal (P,Q,R)-chains. 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (31) QDPSizeChangeProof (EQUIVALENT) 17.87/6.72 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. 17.87/6.72 17.87/6.72 From the DPs we obtained the following set of size-change graphs: 17.87/6.72 *new_primEqNat(Succ(yv3000), Succ(yv40000)) -> new_primEqNat(yv3000, yv40000) 17.87/6.72 The graph contains the following edges 1 > 1, 2 > 2 17.87/6.72 17.87/6.72 17.87/6.72 ---------------------------------------- 17.87/6.72 17.87/6.72 (32) 17.87/6.72 YES 17.93/6.78 EOF