14.41/5.51 YES 17.46/6.31 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 17.46/6.31 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 17.46/6.31 17.46/6.31 17.46/6.31 H-Termination with start terms of the given HASKELL could be proven: 17.46/6.31 17.46/6.31 (0) HASKELL 17.46/6.31 (1) LR [EQUIVALENT, 0 ms] 17.46/6.31 (2) HASKELL 17.46/6.31 (3) CR [EQUIVALENT, 0 ms] 17.46/6.31 (4) HASKELL 17.46/6.31 (5) IFR [EQUIVALENT, 0 ms] 17.46/6.31 (6) HASKELL 17.46/6.31 (7) BR [EQUIVALENT, 0 ms] 17.46/6.31 (8) HASKELL 17.46/6.31 (9) COR [EQUIVALENT, 5 ms] 17.46/6.31 (10) HASKELL 17.46/6.31 (11) NumRed [SOUND, 0 ms] 17.46/6.31 (12) HASKELL 17.46/6.31 (13) Narrow [SOUND, 0 ms] 17.46/6.31 (14) AND 17.46/6.31 (15) QDP 17.46/6.31 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.46/6.31 (17) YES 17.46/6.31 (18) QDP 17.46/6.31 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.46/6.31 (20) YES 17.46/6.31 (21) QDP 17.46/6.31 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.46/6.31 (23) YES 17.46/6.31 (24) QDP 17.46/6.31 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.46/6.31 (26) YES 17.46/6.31 (27) QDP 17.46/6.31 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 17.46/6.31 (29) YES 17.46/6.31 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (0) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : _) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (\vv1 ->case vv1 of { 17.46/6.31 (x,i)-> if p x then i : [] else []; 17.46/6.31 _-> []; 17.46/6.31 } ) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (1) LR (EQUIVALENT) 17.46/6.31 Lambda Reductions: 17.46/6.31 The following Lambda expression 17.46/6.31 "\ab->(a,b)" 17.46/6.31 is transformed to 17.46/6.31 "zip0 a b = (a,b); 17.46/6.31 " 17.46/6.31 The following Lambda expression 17.46/6.31 "\vv1->case vv1 of { 17.46/6.31 (x,i) -> if p x then i : [] else []; 17.46/6.31 _ -> []} 17.46/6.31 " 17.46/6.31 is transformed to 17.46/6.31 "findIndices0 p vv1 = case vv1 of { 17.46/6.31 (x,i) -> if p x then i : [] else []; 17.46/6.31 _ -> []} 17.46/6.31 ; 17.46/6.31 " 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (2) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : _) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = case vv1 of { 17.46/6.31 (x,i)-> if p x then i : [] else []; 17.46/6.31 _-> []; 17.46/6.31 } ; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (3) CR (EQUIVALENT) 17.46/6.31 Case Reductions: 17.46/6.31 The following Case expression 17.46/6.31 "case vv1 of { 17.46/6.31 (x,i) -> if p x then i : [] else []; 17.46/6.31 _ -> []} 17.46/6.31 " 17.46/6.31 is transformed to 17.46/6.31 "findIndices00 p (x,i) = if p x then i : [] else []; 17.46/6.31 findIndices00 p _ = []; 17.46/6.31 " 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (4) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : _) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = findIndices00 p vv1; 17.46/6.31 17.46/6.31 findIndices00 p (x,i) = if p x then i : [] else []; 17.46/6.31 findIndices00 p _ = []; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (5) IFR (EQUIVALENT) 17.46/6.31 If Reductions: 17.46/6.31 The following If expression 17.46/6.31 "if p x then i : [] else []" 17.46/6.31 is transformed to 17.46/6.31 "findIndices000 i True = i : []; 17.46/6.31 findIndices000 i False = []; 17.46/6.31 " 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (6) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : _) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = findIndices00 p vv1; 17.46/6.31 17.46/6.31 findIndices00 p (x,i) = findIndices000 i (p x); 17.46/6.31 findIndices00 p _ = []; 17.46/6.31 17.46/6.31 findIndices000 i True = i : []; 17.46/6.31 findIndices000 i False = []; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (7) BR (EQUIVALENT) 17.46/6.31 Replaced joker patterns by fresh variables and removed binding patterns. 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (8) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : xz) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = findIndices00 p vv1; 17.46/6.31 17.46/6.31 findIndices00 p (x,i) = findIndices000 i (p x); 17.46/6.31 findIndices00 p yu = []; 17.46/6.31 17.46/6.31 findIndices000 i True = i : []; 17.46/6.31 findIndices000 i False = []; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (9) COR (EQUIVALENT) 17.46/6.31 Cond Reductions: 17.46/6.31 The following Function with conditions 17.46/6.31 "undefined |Falseundefined; 17.46/6.31 " 17.46/6.31 is transformed to 17.46/6.31 "undefined = undefined1; 17.46/6.31 " 17.46/6.31 "undefined0 True = undefined; 17.46/6.31 " 17.46/6.31 "undefined1 = undefined0 False; 17.46/6.31 " 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (10) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : xz) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom 0)); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = findIndices00 p vv1; 17.46/6.31 17.46/6.31 findIndices00 p (x,i) = findIndices000 i (p x); 17.46/6.31 findIndices00 p yu = []; 17.46/6.31 17.46/6.31 findIndices000 i True = i : []; 17.46/6.31 findIndices000 i False = []; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (11) NumRed (SOUND) 17.46/6.31 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (12) 17.46/6.31 Obligation: 17.46/6.31 mainModule Main 17.46/6.31 module Maybe where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Prelude; 17.46/6.31 listToMaybe :: [a] -> Maybe a; 17.46/6.31 listToMaybe [] = Nothing; 17.46/6.31 listToMaybe (a : xz) = Just a; 17.46/6.31 17.46/6.31 } 17.46/6.31 module List where { 17.46/6.31 import qualified Main; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 elemIndex :: Eq a => a -> [a] -> Maybe Int; 17.46/6.31 elemIndex x = findIndex (== x); 17.46/6.31 17.46/6.31 findIndex :: (a -> Bool) -> [a] -> Maybe Int; 17.46/6.31 findIndex p = Maybe.listToMaybe . findIndices p; 17.46/6.31 17.46/6.31 findIndices :: (a -> Bool) -> [a] -> [Int]; 17.46/6.31 findIndices p xs = concatMap (findIndices0 p) (zip xs (enumFrom (Pos Zero))); 17.46/6.31 17.46/6.31 findIndices0 p vv1 = findIndices00 p vv1; 17.46/6.31 17.46/6.31 findIndices00 p (x,i) = findIndices000 i (p x); 17.46/6.31 findIndices00 p yu = []; 17.46/6.31 17.46/6.31 findIndices000 i True = i : []; 17.46/6.31 findIndices000 i False = []; 17.46/6.31 17.46/6.31 } 17.46/6.31 module Main where { 17.46/6.31 import qualified List; 17.46/6.31 import qualified Maybe; 17.46/6.31 import qualified Prelude; 17.46/6.31 } 17.46/6.31 17.46/6.31 ---------------------------------------- 17.46/6.31 17.46/6.31 (13) Narrow (SOUND) 17.46/6.31 Haskell To QDPs 17.46/6.31 17.46/6.31 digraph dp_graph { 17.46/6.31 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.46/6.31 3[label="List.elemIndex yv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 17.46/6.31 4[label="List.elemIndex yv3 yv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 17.46/6.31 5[label="List.findIndex (yv3 ==) yv4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 17.46/6.31 6[label="Maybe.listToMaybe . List.findIndices (yv3 ==)",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 17.46/6.31 7[label="Maybe.listToMaybe (List.findIndices (yv3 ==) yv4)",fontsize=16,color="black",shape="box"];7 -> 8[label="",style="solid", color="black", weight=3]; 17.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 12[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 (yv3 ==)) (zipWith zip0 yv4 (enumFrom (Pos Zero)))))",fontsize=16,color="burlywood",shape="box"];2049[label="yv4/yv40 : yv41",fontsize=10,color="white",style="solid",shape="box"];12 -> 2049[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2049 -> 13[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2050[label="yv4/[]",fontsize=10,color="white",style="solid",shape="box"];12 -> 2050[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2050 -> 14[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 18[label="Maybe.listToMaybe (foldr (++) [] [])",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 17.46/6.31 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.46/6.31 20[label="Maybe.listToMaybe []",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 17.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 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.46/6.31 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"];2051[label="yv3/(yv30,yv31)",fontsize=10,color="white",style="solid",shape="box"];26 -> 2051[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2051 -> 27[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 27[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) ((yv30,yv31) == yv40) foldr (++) [] (map (List.findIndices0 ((yv30,yv31) ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];2052[label="yv40/(yv400,yv401)",fontsize=10,color="white",style="solid",shape="box"];27 -> 2052[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2052 -> 28[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 28[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) ((yv30,yv31) == (yv400,yv401)) foldr (++) [] (map (List.findIndices0 ((yv30,yv31) ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];28 -> 29[label="",style="solid", color="black", weight=3]; 17.46/6.31 29 -> 1097[label="",style="dashed", color="red", weight=0]; 17.46/6.31 29[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos Zero) (yv30 == yv400 && yv31 == yv401) foldr (++) [] (map (List.findIndices0 ((yv30,yv31) ==)) (zipWith zip0 yv41 (numericEnumFrom $! Pos Zero + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];29 -> 1098[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 29 -> 1099[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 29 -> 1100[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 29 -> 1101[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 29 -> 1102[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1098[label="Zero",fontsize=16,color="green",shape="box"];1099 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1099[label="yv30 == yv400 && yv31 == yv401",fontsize=16,color="magenta"];1099 -> 1353[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1099 -> 1354[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1100[label="yv31",fontsize=16,color="green",shape="box"];1101[label="yv30",fontsize=16,color="green",shape="box"];1102[label="yv41",fontsize=16,color="green",shape="box"];1097[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) yv43 foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="triangle"];2053[label="yv43/False",fontsize=10,color="white",style="solid",shape="box"];1097 -> 2053[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2053 -> 1111[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2054[label="yv43/True",fontsize=10,color="white",style="solid",shape="box"];1097 -> 2054[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2054 -> 1112[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1353[label="yv31 == yv401",fontsize=16,color="blue",shape="box"];2055[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2055[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2055 -> 1357[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2056[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2056[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2056 -> 1358[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2057[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2057[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2057 -> 1359[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2058[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2058[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2058 -> 1360[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2059[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2059[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2059 -> 1361[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2060[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2060[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2060 -> 1362[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2061[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2061[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2061 -> 1363[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2062[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2062[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2062 -> 1364[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2063[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2063[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2063 -> 1365[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2064[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2064[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2064 -> 1366[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2065[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2065[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2065 -> 1367[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2066[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2066[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2066 -> 1368[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2067[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2067[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2067 -> 1369[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2068[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2068[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2068 -> 1370[label="",style="solid", color="blue", weight=3]; 17.46/6.31 1354[label="yv30 == yv400",fontsize=16,color="blue",shape="box"];2069[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2069[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2069 -> 1371[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2070[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2070[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2070 -> 1372[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2071[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2071[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2071 -> 1373[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2072[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2072[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2072 -> 1374[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2073[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2073[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2073 -> 1375[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2074[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2074[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2074 -> 1376[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2075[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2075[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2075 -> 1377[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2076[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2076[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2076 -> 1378[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2077[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2077[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2077 -> 1379[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2078[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2078[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2078 -> 1380[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2079[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2079[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2079 -> 1381[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2080[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2080[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2080 -> 1382[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2081[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2081[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2081 -> 1383[label="",style="solid", color="blue", weight=3]; 17.46/6.31 2082[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2082[label="",style="solid", color="blue", weight=9]; 17.46/6.31 2082 -> 1384[label="",style="solid", color="blue", weight=3]; 17.46/6.31 1352[label="yv55 && yv56",fontsize=16,color="burlywood",shape="triangle"];2083[label="yv55/False",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2083[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2083 -> 1385[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2084[label="yv55/True",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2084[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2084 -> 1386[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1111[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) False foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1111 -> 1129[label="",style="solid", color="black", weight=3]; 17.46/6.31 1112[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos yv41) True foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1112 -> 1130[label="",style="solid", color="black", weight=3]; 17.46/6.31 1357[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2085[label="yv31/Nothing",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2085[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2085 -> 1389[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2086[label="yv31/Just yv310",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2086[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2086 -> 1390[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1358[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2087[label="yv31/False",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2087[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2087 -> 1391[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2088[label="yv31/True",fontsize=10,color="white",style="solid",shape="box"];1358 -> 2088[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2088 -> 1392[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1359[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2089[label="yv31/Left yv310",fontsize=10,color="white",style="solid",shape="box"];1359 -> 2089[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2089 -> 1393[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2090[label="yv31/Right yv310",fontsize=10,color="white",style="solid",shape="box"];1359 -> 2090[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2090 -> 1394[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1360[label="yv31 == yv401",fontsize=16,color="black",shape="triangle"];1360 -> 1395[label="",style="solid", color="black", weight=3]; 17.46/6.31 1361[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2091[label="yv31/(yv310,yv311,yv312)",fontsize=10,color="white",style="solid",shape="box"];1361 -> 2091[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2091 -> 1396[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1362[label="yv31 == yv401",fontsize=16,color="black",shape="triangle"];1362 -> 1397[label="",style="solid", color="black", weight=3]; 17.46/6.31 1363[label="yv31 == yv401",fontsize=16,color="black",shape="triangle"];1363 -> 1398[label="",style="solid", color="black", weight=3]; 17.46/6.31 1364[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2092[label="yv31/yv310 :% yv311",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2092[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2092 -> 1399[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1365[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2093[label="yv31/LT",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2093[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2093 -> 1400[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2094[label="yv31/EQ",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2094[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2094 -> 1401[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2095[label="yv31/GT",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2095[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2095 -> 1402[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1366[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2096[label="yv31/yv310 : yv311",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2096[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2096 -> 1403[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 2097[label="yv31/[]",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2097[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2097 -> 1404[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1367[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2098[label="yv31/()",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2098[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2098 -> 1405[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1368[label="yv31 == yv401",fontsize=16,color="black",shape="triangle"];1368 -> 1406[label="",style="solid", color="black", weight=3]; 17.46/6.31 1369[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2099[label="yv31/Integer yv310",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2099[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2099 -> 1407[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1370[label="yv31 == yv401",fontsize=16,color="burlywood",shape="triangle"];2100[label="yv31/(yv310,yv311)",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2100[label="",style="solid", color="burlywood", weight=9]; 17.46/6.31 2100 -> 1408[label="",style="solid", color="burlywood", weight=3]; 17.46/6.31 1371 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1371[label="yv30 == yv400",fontsize=16,color="magenta"];1371 -> 1409[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1371 -> 1410[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1372 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1372[label="yv30 == yv400",fontsize=16,color="magenta"];1372 -> 1411[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1372 -> 1412[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1373 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1373[label="yv30 == yv400",fontsize=16,color="magenta"];1373 -> 1413[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1373 -> 1414[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1374 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1374[label="yv30 == yv400",fontsize=16,color="magenta"];1374 -> 1415[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1374 -> 1416[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1375 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1375[label="yv30 == yv400",fontsize=16,color="magenta"];1375 -> 1417[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1375 -> 1418[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1376 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.31 1376[label="yv30 == yv400",fontsize=16,color="magenta"];1376 -> 1419[label="",style="dashed", color="magenta", weight=3]; 17.46/6.31 1376 -> 1420[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1377 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1377[label="yv30 == yv400",fontsize=16,color="magenta"];1377 -> 1421[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1377 -> 1422[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1378 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1378[label="yv30 == yv400",fontsize=16,color="magenta"];1378 -> 1423[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1378 -> 1424[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1379 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1379[label="yv30 == yv400",fontsize=16,color="magenta"];1379 -> 1425[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1379 -> 1426[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1380 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1380[label="yv30 == yv400",fontsize=16,color="magenta"];1380 -> 1427[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1380 -> 1428[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1381 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1381[label="yv30 == yv400",fontsize=16,color="magenta"];1381 -> 1429[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1381 -> 1430[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1382 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1382[label="yv30 == yv400",fontsize=16,color="magenta"];1382 -> 1431[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1382 -> 1432[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1383 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1383[label="yv30 == yv400",fontsize=16,color="magenta"];1383 -> 1433[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1383 -> 1434[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1384 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1384[label="yv30 == yv400",fontsize=16,color="magenta"];1384 -> 1435[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1384 -> 1436[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1385[label="False && yv56",fontsize=16,color="black",shape="box"];1385 -> 1437[label="",style="solid", color="black", weight=3]; 17.46/6.32 1386[label="True && yv56",fontsize=16,color="black",shape="box"];1386 -> 1438[label="",style="solid", color="black", weight=3]; 17.46/6.32 1129[label="Maybe.listToMaybe ((++) [] foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1129 -> 1153[label="",style="solid", color="black", weight=3]; 17.46/6.32 1130[label="Maybe.listToMaybe ((++) (Pos yv41 : []) foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1130 -> 1154[label="",style="solid", color="black", weight=3]; 17.46/6.32 1389[label="Nothing == yv401",fontsize=16,color="burlywood",shape="box"];2101[label="yv401/Nothing",fontsize=10,color="white",style="solid",shape="box"];1389 -> 2101[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2101 -> 1440[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2102[label="yv401/Just yv4010",fontsize=10,color="white",style="solid",shape="box"];1389 -> 2102[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2102 -> 1441[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1390[label="Just yv310 == yv401",fontsize=16,color="burlywood",shape="box"];2103[label="yv401/Nothing",fontsize=10,color="white",style="solid",shape="box"];1390 -> 2103[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2103 -> 1442[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2104[label="yv401/Just yv4010",fontsize=10,color="white",style="solid",shape="box"];1390 -> 2104[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2104 -> 1443[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1391[label="False == yv401",fontsize=16,color="burlywood",shape="box"];2105[label="yv401/False",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2105[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2105 -> 1444[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2106[label="yv401/True",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2106[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2106 -> 1445[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1392[label="True == yv401",fontsize=16,color="burlywood",shape="box"];2107[label="yv401/False",fontsize=10,color="white",style="solid",shape="box"];1392 -> 2107[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2107 -> 1446[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2108[label="yv401/True",fontsize=10,color="white",style="solid",shape="box"];1392 -> 2108[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2108 -> 1447[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1393[label="Left yv310 == yv401",fontsize=16,color="burlywood",shape="box"];2109[label="yv401/Left yv4010",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2109[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2109 -> 1448[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2110[label="yv401/Right yv4010",fontsize=10,color="white",style="solid",shape="box"];1393 -> 2110[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2110 -> 1449[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1394[label="Right yv310 == yv401",fontsize=16,color="burlywood",shape="box"];2111[label="yv401/Left yv4010",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2111[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2111 -> 1450[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2112[label="yv401/Right yv4010",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2112[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2112 -> 1451[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1395[label="primEqInt yv31 yv401",fontsize=16,color="burlywood",shape="triangle"];2113[label="yv31/Pos yv310",fontsize=10,color="white",style="solid",shape="box"];1395 -> 2113[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2113 -> 1452[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2114[label="yv31/Neg yv310",fontsize=10,color="white",style="solid",shape="box"];1395 -> 2114[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2114 -> 1453[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1396[label="(yv310,yv311,yv312) == yv401",fontsize=16,color="burlywood",shape="box"];2115[label="yv401/(yv4010,yv4011,yv4012)",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2115[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2115 -> 1454[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1397[label="primEqFloat yv31 yv401",fontsize=16,color="burlywood",shape="box"];2116[label="yv31/Float yv310 yv311",fontsize=10,color="white",style="solid",shape="box"];1397 -> 2116[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2116 -> 1455[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1398[label="primEqDouble yv31 yv401",fontsize=16,color="burlywood",shape="box"];2117[label="yv31/Double yv310 yv311",fontsize=10,color="white",style="solid",shape="box"];1398 -> 2117[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2117 -> 1456[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1399[label="yv310 :% yv311 == yv401",fontsize=16,color="burlywood",shape="box"];2118[label="yv401/yv4010 :% yv4011",fontsize=10,color="white",style="solid",shape="box"];1399 -> 2118[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2118 -> 1457[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1400[label="LT == yv401",fontsize=16,color="burlywood",shape="box"];2119[label="yv401/LT",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2119[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2119 -> 1458[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2120[label="yv401/EQ",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2120[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2120 -> 1459[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2121[label="yv401/GT",fontsize=10,color="white",style="solid",shape="box"];1400 -> 2121[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2121 -> 1460[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1401[label="EQ == yv401",fontsize=16,color="burlywood",shape="box"];2122[label="yv401/LT",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2122[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2122 -> 1461[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2123[label="yv401/EQ",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2123[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2123 -> 1462[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2124[label="yv401/GT",fontsize=10,color="white",style="solid",shape="box"];1401 -> 2124[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2124 -> 1463[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1402[label="GT == yv401",fontsize=16,color="burlywood",shape="box"];2125[label="yv401/LT",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2125[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2125 -> 1464[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2126[label="yv401/EQ",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2126[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2126 -> 1465[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2127[label="yv401/GT",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2127[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2127 -> 1466[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1403[label="yv310 : yv311 == yv401",fontsize=16,color="burlywood",shape="box"];2128[label="yv401/yv4010 : yv4011",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2128[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2128 -> 1467[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2129[label="yv401/[]",fontsize=10,color="white",style="solid",shape="box"];1403 -> 2129[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2129 -> 1468[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1404[label="[] == yv401",fontsize=16,color="burlywood",shape="box"];2130[label="yv401/yv4010 : yv4011",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2130[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2130 -> 1469[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2131[label="yv401/[]",fontsize=10,color="white",style="solid",shape="box"];1404 -> 2131[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2131 -> 1470[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1405[label="() == yv401",fontsize=16,color="burlywood",shape="box"];2132[label="yv401/()",fontsize=10,color="white",style="solid",shape="box"];1405 -> 2132[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2132 -> 1471[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1406[label="primEqChar yv31 yv401",fontsize=16,color="burlywood",shape="box"];2133[label="yv31/Char yv310",fontsize=10,color="white",style="solid",shape="box"];1406 -> 2133[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2133 -> 1472[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1407[label="Integer yv310 == yv401",fontsize=16,color="burlywood",shape="box"];2134[label="yv401/Integer yv4010",fontsize=10,color="white",style="solid",shape="box"];1407 -> 2134[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2134 -> 1473[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1408[label="(yv310,yv311) == yv401",fontsize=16,color="burlywood",shape="box"];2135[label="yv401/(yv4010,yv4011)",fontsize=10,color="white",style="solid",shape="box"];1408 -> 2135[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2135 -> 1474[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1409[label="yv400",fontsize=16,color="green",shape="box"];1410[label="yv30",fontsize=16,color="green",shape="box"];1411[label="yv400",fontsize=16,color="green",shape="box"];1412[label="yv30",fontsize=16,color="green",shape="box"];1413[label="yv400",fontsize=16,color="green",shape="box"];1414[label="yv30",fontsize=16,color="green",shape="box"];1415[label="yv400",fontsize=16,color="green",shape="box"];1416[label="yv30",fontsize=16,color="green",shape="box"];1417[label="yv400",fontsize=16,color="green",shape="box"];1418[label="yv30",fontsize=16,color="green",shape="box"];1419[label="yv400",fontsize=16,color="green",shape="box"];1420[label="yv30",fontsize=16,color="green",shape="box"];1421[label="yv400",fontsize=16,color="green",shape="box"];1422[label="yv30",fontsize=16,color="green",shape="box"];1423[label="yv400",fontsize=16,color="green",shape="box"];1424[label="yv30",fontsize=16,color="green",shape="box"];1425[label="yv400",fontsize=16,color="green",shape="box"];1426[label="yv30",fontsize=16,color="green",shape="box"];1427[label="yv400",fontsize=16,color="green",shape="box"];1428[label="yv30",fontsize=16,color="green",shape="box"];1429[label="yv400",fontsize=16,color="green",shape="box"];1430[label="yv30",fontsize=16,color="green",shape="box"];1431[label="yv400",fontsize=16,color="green",shape="box"];1432[label="yv30",fontsize=16,color="green",shape="box"];1433[label="yv400",fontsize=16,color="green",shape="box"];1434[label="yv30",fontsize=16,color="green",shape="box"];1435[label="yv400",fontsize=16,color="green",shape="box"];1436[label="yv30",fontsize=16,color="green",shape="box"];1437[label="False",fontsize=16,color="green",shape="box"];1438[label="yv56",fontsize=16,color="green",shape="box"];1153[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="burlywood",shape="box"];2136[label="yv2411/yv24110 : yv24111",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2136[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2136 -> 1204[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2137[label="yv2411/[]",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2137[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2137 -> 1205[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1154[label="Maybe.listToMaybe (Pos yv41 : [] ++ foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv2411 (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1154 -> 1206[label="",style="solid", color="black", weight=3]; 17.46/6.32 1440[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1440 -> 1476[label="",style="solid", color="black", weight=3]; 17.46/6.32 1441[label="Nothing == Just yv4010",fontsize=16,color="black",shape="box"];1441 -> 1477[label="",style="solid", color="black", weight=3]; 17.46/6.32 1442[label="Just yv310 == Nothing",fontsize=16,color="black",shape="box"];1442 -> 1478[label="",style="solid", color="black", weight=3]; 17.46/6.32 1443[label="Just yv310 == Just yv4010",fontsize=16,color="black",shape="box"];1443 -> 1479[label="",style="solid", color="black", weight=3]; 17.46/6.32 1444[label="False == False",fontsize=16,color="black",shape="box"];1444 -> 1480[label="",style="solid", color="black", weight=3]; 17.46/6.32 1445[label="False == True",fontsize=16,color="black",shape="box"];1445 -> 1481[label="",style="solid", color="black", weight=3]; 17.46/6.32 1446[label="True == False",fontsize=16,color="black",shape="box"];1446 -> 1482[label="",style="solid", color="black", weight=3]; 17.46/6.32 1447[label="True == True",fontsize=16,color="black",shape="box"];1447 -> 1483[label="",style="solid", color="black", weight=3]; 17.46/6.32 1448[label="Left yv310 == Left yv4010",fontsize=16,color="black",shape="box"];1448 -> 1484[label="",style="solid", color="black", weight=3]; 17.46/6.32 1449[label="Left yv310 == Right yv4010",fontsize=16,color="black",shape="box"];1449 -> 1485[label="",style="solid", color="black", weight=3]; 17.46/6.32 1450[label="Right yv310 == Left yv4010",fontsize=16,color="black",shape="box"];1450 -> 1486[label="",style="solid", color="black", weight=3]; 17.46/6.32 1451[label="Right yv310 == Right yv4010",fontsize=16,color="black",shape="box"];1451 -> 1487[label="",style="solid", color="black", weight=3]; 17.46/6.32 1452[label="primEqInt (Pos yv310) yv401",fontsize=16,color="burlywood",shape="box"];2138[label="yv310/Succ yv3100",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2138[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2138 -> 1488[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2139[label="yv310/Zero",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2139[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2139 -> 1489[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1453[label="primEqInt (Neg yv310) yv401",fontsize=16,color="burlywood",shape="box"];2140[label="yv310/Succ yv3100",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2140[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2140 -> 1490[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2141[label="yv310/Zero",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2141[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2141 -> 1491[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1454[label="(yv310,yv311,yv312) == (yv4010,yv4011,yv4012)",fontsize=16,color="black",shape="box"];1454 -> 1492[label="",style="solid", color="black", weight=3]; 17.46/6.32 1455[label="primEqFloat (Float yv310 yv311) yv401",fontsize=16,color="burlywood",shape="box"];2142[label="yv401/Float yv4010 yv4011",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2142[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2142 -> 1493[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1456[label="primEqDouble (Double yv310 yv311) yv401",fontsize=16,color="burlywood",shape="box"];2143[label="yv401/Double yv4010 yv4011",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2143[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2143 -> 1494[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1457[label="yv310 :% yv311 == yv4010 :% yv4011",fontsize=16,color="black",shape="box"];1457 -> 1495[label="",style="solid", color="black", weight=3]; 17.46/6.32 1458[label="LT == LT",fontsize=16,color="black",shape="box"];1458 -> 1496[label="",style="solid", color="black", weight=3]; 17.46/6.32 1459[label="LT == EQ",fontsize=16,color="black",shape="box"];1459 -> 1497[label="",style="solid", color="black", weight=3]; 17.46/6.32 1460[label="LT == GT",fontsize=16,color="black",shape="box"];1460 -> 1498[label="",style="solid", color="black", weight=3]; 17.46/6.32 1461[label="EQ == LT",fontsize=16,color="black",shape="box"];1461 -> 1499[label="",style="solid", color="black", weight=3]; 17.46/6.32 1462[label="EQ == EQ",fontsize=16,color="black",shape="box"];1462 -> 1500[label="",style="solid", color="black", weight=3]; 17.46/6.32 1463[label="EQ == GT",fontsize=16,color="black",shape="box"];1463 -> 1501[label="",style="solid", color="black", weight=3]; 17.46/6.32 1464[label="GT == LT",fontsize=16,color="black",shape="box"];1464 -> 1502[label="",style="solid", color="black", weight=3]; 17.46/6.32 1465[label="GT == EQ",fontsize=16,color="black",shape="box"];1465 -> 1503[label="",style="solid", color="black", weight=3]; 17.46/6.32 1466[label="GT == GT",fontsize=16,color="black",shape="box"];1466 -> 1504[label="",style="solid", color="black", weight=3]; 17.46/6.32 1467[label="yv310 : yv311 == yv4010 : yv4011",fontsize=16,color="black",shape="box"];1467 -> 1505[label="",style="solid", color="black", weight=3]; 17.46/6.32 1468[label="yv310 : yv311 == []",fontsize=16,color="black",shape="box"];1468 -> 1506[label="",style="solid", color="black", weight=3]; 17.46/6.32 1469[label="[] == yv4010 : yv4011",fontsize=16,color="black",shape="box"];1469 -> 1507[label="",style="solid", color="black", weight=3]; 17.46/6.32 1470[label="[] == []",fontsize=16,color="black",shape="box"];1470 -> 1508[label="",style="solid", color="black", weight=3]; 17.46/6.32 1471[label="() == ()",fontsize=16,color="black",shape="box"];1471 -> 1509[label="",style="solid", color="black", weight=3]; 17.46/6.32 1472[label="primEqChar (Char yv310) yv401",fontsize=16,color="burlywood",shape="box"];2144[label="yv401/Char yv4010",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2144[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2144 -> 1510[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1473[label="Integer yv310 == Integer yv4010",fontsize=16,color="black",shape="box"];1473 -> 1511[label="",style="solid", color="black", weight=3]; 17.46/6.32 1474[label="(yv310,yv311) == (yv4010,yv4011)",fontsize=16,color="black",shape="box"];1474 -> 1512[label="",style="solid", color="black", weight=3]; 17.46/6.32 1204[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1204 -> 1272[label="",style="solid", color="black", weight=3]; 17.46/6.32 1205[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 [] (numericEnumFrom $! Pos yv41 + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1205 -> 1273[label="",style="solid", color="black", weight=3]; 17.46/6.32 1206[label="Just (Pos yv41)",fontsize=16,color="green",shape="box"];1476[label="True",fontsize=16,color="green",shape="box"];1477[label="False",fontsize=16,color="green",shape="box"];1478[label="False",fontsize=16,color="green",shape="box"];1479[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2145[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2145[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2145 -> 1514[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2146[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2146[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2146 -> 1515[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2147[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2147[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2147 -> 1516[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2148[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2148[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2148 -> 1517[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2149[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2149[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2149 -> 1518[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2150[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2150[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2150 -> 1519[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2151[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2151[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2151 -> 1520[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2152[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2152[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2152 -> 1521[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2153[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2153[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2153 -> 1522[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2154[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2154[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2154 -> 1523[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2155[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2155[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2155 -> 1524[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2156[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2156[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2156 -> 1525[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2157[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2157[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2157 -> 1526[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2158[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2158[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2158 -> 1527[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1480[label="True",fontsize=16,color="green",shape="box"];1481[label="False",fontsize=16,color="green",shape="box"];1482[label="False",fontsize=16,color="green",shape="box"];1483[label="True",fontsize=16,color="green",shape="box"];1484[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2159[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2159[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2159 -> 1528[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2160[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2160[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2160 -> 1529[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2161[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2161[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2161 -> 1530[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2162[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2162 -> 1531[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2163[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2163[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2163 -> 1532[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2164[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2164[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2164 -> 1533[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2165[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2165[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2165 -> 1534[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2166[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2166[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2166 -> 1535[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2167[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2167[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2167 -> 1536[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2168[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2168[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2168 -> 1537[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2169[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2169[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2169 -> 1538[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2170[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2170[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2170 -> 1539[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2171[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2171[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2171 -> 1540[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2172[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2172[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2172 -> 1541[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1485[label="False",fontsize=16,color="green",shape="box"];1486[label="False",fontsize=16,color="green",shape="box"];1487[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2173[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2173[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2173 -> 1542[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2174[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2174[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2174 -> 1543[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2175[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2175[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2175 -> 1544[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2176[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2176 -> 1545[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2177[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2177[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2177 -> 1546[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2178[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2178[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2178 -> 1547[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2179[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2179[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2179 -> 1548[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2180[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2180[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2180 -> 1549[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2181[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2181[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2181 -> 1550[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2182[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2182 -> 1551[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2183[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2183[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2183 -> 1552[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2184[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2184[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2184 -> 1553[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2185[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2185[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2185 -> 1554[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2186[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1487 -> 2186[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2186 -> 1555[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1488[label="primEqInt (Pos (Succ yv3100)) yv401",fontsize=16,color="burlywood",shape="box"];2187[label="yv401/Pos yv4010",fontsize=10,color="white",style="solid",shape="box"];1488 -> 2187[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2187 -> 1556[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2188[label="yv401/Neg yv4010",fontsize=10,color="white",style="solid",shape="box"];1488 -> 2188[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2188 -> 1557[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1489[label="primEqInt (Pos Zero) yv401",fontsize=16,color="burlywood",shape="box"];2189[label="yv401/Pos yv4010",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2189[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2189 -> 1558[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2190[label="yv401/Neg yv4010",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2190[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2190 -> 1559[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1490[label="primEqInt (Neg (Succ yv3100)) yv401",fontsize=16,color="burlywood",shape="box"];2191[label="yv401/Pos yv4010",fontsize=10,color="white",style="solid",shape="box"];1490 -> 2191[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2191 -> 1560[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2192[label="yv401/Neg yv4010",fontsize=10,color="white",style="solid",shape="box"];1490 -> 2192[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2192 -> 1561[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1491[label="primEqInt (Neg Zero) yv401",fontsize=16,color="burlywood",shape="box"];2193[label="yv401/Pos yv4010",fontsize=10,color="white",style="solid",shape="box"];1491 -> 2193[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2193 -> 1562[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2194[label="yv401/Neg yv4010",fontsize=10,color="white",style="solid",shape="box"];1491 -> 2194[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2194 -> 1563[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1492 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1492[label="yv310 == yv4010 && yv311 == yv4011 && yv312 == yv4012",fontsize=16,color="magenta"];1492 -> 1564[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1492 -> 1565[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1493[label="primEqFloat (Float yv310 yv311) (Float yv4010 yv4011)",fontsize=16,color="black",shape="box"];1493 -> 1566[label="",style="solid", color="black", weight=3]; 17.46/6.32 1494[label="primEqDouble (Double yv310 yv311) (Double yv4010 yv4011)",fontsize=16,color="black",shape="box"];1494 -> 1567[label="",style="solid", color="black", weight=3]; 17.46/6.32 1495 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1495[label="yv310 == yv4010 && yv311 == yv4011",fontsize=16,color="magenta"];1495 -> 1568[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1495 -> 1569[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1496[label="True",fontsize=16,color="green",shape="box"];1497[label="False",fontsize=16,color="green",shape="box"];1498[label="False",fontsize=16,color="green",shape="box"];1499[label="False",fontsize=16,color="green",shape="box"];1500[label="True",fontsize=16,color="green",shape="box"];1501[label="False",fontsize=16,color="green",shape="box"];1502[label="False",fontsize=16,color="green",shape="box"];1503[label="False",fontsize=16,color="green",shape="box"];1504[label="True",fontsize=16,color="green",shape="box"];1505 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1505[label="yv310 == yv4010 && yv311 == yv4011",fontsize=16,color="magenta"];1505 -> 1570[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1505 -> 1571[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1506[label="False",fontsize=16,color="green",shape="box"];1507[label="False",fontsize=16,color="green",shape="box"];1508[label="True",fontsize=16,color="green",shape="box"];1509[label="True",fontsize=16,color="green",shape="box"];1510[label="primEqChar (Char yv310) (Char yv4010)",fontsize=16,color="black",shape="box"];1510 -> 1572[label="",style="solid", color="black", weight=3]; 17.46/6.32 1511 -> 1395[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1511[label="primEqInt yv310 yv4010",fontsize=16,color="magenta"];1511 -> 1573[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1511 -> 1574[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1512 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1512[label="yv310 == yv4010 && yv311 == yv4011",fontsize=16,color="magenta"];1512 -> 1575[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1512 -> 1576[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1272[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (Pos yv41 + fromInt (Pos (Succ Zero)) `seq` numericEnumFrom (Pos yv41 + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1272 -> 1387[label="",style="solid", color="black", weight=3]; 17.46/6.32 1273 -> 16[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1273[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) []))",fontsize=16,color="magenta"];1273 -> 1388[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1514 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1514[label="yv310 == yv4010",fontsize=16,color="magenta"];1514 -> 1578[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1514 -> 1579[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1515 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1515[label="yv310 == yv4010",fontsize=16,color="magenta"];1515 -> 1580[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1515 -> 1581[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1516 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1516[label="yv310 == yv4010",fontsize=16,color="magenta"];1516 -> 1582[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1516 -> 1583[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1517 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1517[label="yv310 == yv4010",fontsize=16,color="magenta"];1517 -> 1584[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1517 -> 1585[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1518 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1518[label="yv310 == yv4010",fontsize=16,color="magenta"];1518 -> 1586[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1518 -> 1587[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1519 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1519[label="yv310 == yv4010",fontsize=16,color="magenta"];1519 -> 1588[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1519 -> 1589[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1520 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1520[label="yv310 == yv4010",fontsize=16,color="magenta"];1520 -> 1590[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1520 -> 1591[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1521 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1521[label="yv310 == yv4010",fontsize=16,color="magenta"];1521 -> 1592[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1521 -> 1593[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1522 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1522[label="yv310 == yv4010",fontsize=16,color="magenta"];1522 -> 1594[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1522 -> 1595[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1523 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1523[label="yv310 == yv4010",fontsize=16,color="magenta"];1523 -> 1596[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1523 -> 1597[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1524 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1524[label="yv310 == yv4010",fontsize=16,color="magenta"];1524 -> 1598[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1524 -> 1599[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1525 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1525[label="yv310 == yv4010",fontsize=16,color="magenta"];1525 -> 1600[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1525 -> 1601[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1526 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1526[label="yv310 == yv4010",fontsize=16,color="magenta"];1526 -> 1602[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1526 -> 1603[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1527 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1527[label="yv310 == yv4010",fontsize=16,color="magenta"];1527 -> 1604[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1527 -> 1605[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1528 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1528[label="yv310 == yv4010",fontsize=16,color="magenta"];1528 -> 1606[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1528 -> 1607[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1529 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1529[label="yv310 == yv4010",fontsize=16,color="magenta"];1529 -> 1608[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1529 -> 1609[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1530 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1530[label="yv310 == yv4010",fontsize=16,color="magenta"];1530 -> 1610[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1530 -> 1611[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1531 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1531[label="yv310 == yv4010",fontsize=16,color="magenta"];1531 -> 1612[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1531 -> 1613[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1532 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1532[label="yv310 == yv4010",fontsize=16,color="magenta"];1532 -> 1614[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1532 -> 1615[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1533 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1533[label="yv310 == yv4010",fontsize=16,color="magenta"];1533 -> 1616[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1533 -> 1617[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1534 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1534[label="yv310 == yv4010",fontsize=16,color="magenta"];1534 -> 1618[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1534 -> 1619[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1535 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1535[label="yv310 == yv4010",fontsize=16,color="magenta"];1535 -> 1620[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1535 -> 1621[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1536 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1536[label="yv310 == yv4010",fontsize=16,color="magenta"];1536 -> 1622[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1536 -> 1623[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1537 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1537[label="yv310 == yv4010",fontsize=16,color="magenta"];1537 -> 1624[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1537 -> 1625[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1538 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1538[label="yv310 == yv4010",fontsize=16,color="magenta"];1538 -> 1626[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1538 -> 1627[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1539 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1539[label="yv310 == yv4010",fontsize=16,color="magenta"];1539 -> 1628[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1539 -> 1629[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1540 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1540[label="yv310 == yv4010",fontsize=16,color="magenta"];1540 -> 1630[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1540 -> 1631[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1541 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1541[label="yv310 == yv4010",fontsize=16,color="magenta"];1541 -> 1632[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1541 -> 1633[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1542 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1542[label="yv310 == yv4010",fontsize=16,color="magenta"];1542 -> 1634[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1542 -> 1635[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1543 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1543[label="yv310 == yv4010",fontsize=16,color="magenta"];1543 -> 1636[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1543 -> 1637[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1544 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1544[label="yv310 == yv4010",fontsize=16,color="magenta"];1544 -> 1638[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1544 -> 1639[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1545 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1545[label="yv310 == yv4010",fontsize=16,color="magenta"];1545 -> 1640[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1545 -> 1641[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1546 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1546[label="yv310 == yv4010",fontsize=16,color="magenta"];1546 -> 1642[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1546 -> 1643[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1547 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1547[label="yv310 == yv4010",fontsize=16,color="magenta"];1547 -> 1644[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1547 -> 1645[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1548 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1548[label="yv310 == yv4010",fontsize=16,color="magenta"];1548 -> 1646[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1548 -> 1647[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1549 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1549[label="yv310 == yv4010",fontsize=16,color="magenta"];1549 -> 1648[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1549 -> 1649[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1550 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1550[label="yv310 == yv4010",fontsize=16,color="magenta"];1550 -> 1650[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1550 -> 1651[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1551 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1551[label="yv310 == yv4010",fontsize=16,color="magenta"];1551 -> 1652[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1551 -> 1653[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1552 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1552[label="yv310 == yv4010",fontsize=16,color="magenta"];1552 -> 1654[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1552 -> 1655[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1553 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1553[label="yv310 == yv4010",fontsize=16,color="magenta"];1553 -> 1656[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1553 -> 1657[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1554 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1554[label="yv310 == yv4010",fontsize=16,color="magenta"];1554 -> 1658[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1554 -> 1659[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1555 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1555[label="yv310 == yv4010",fontsize=16,color="magenta"];1555 -> 1660[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1555 -> 1661[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1556[label="primEqInt (Pos (Succ yv3100)) (Pos yv4010)",fontsize=16,color="burlywood",shape="box"];2195[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2195[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2195 -> 1662[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2196[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1556 -> 2196[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2196 -> 1663[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1557[label="primEqInt (Pos (Succ yv3100)) (Neg yv4010)",fontsize=16,color="black",shape="box"];1557 -> 1664[label="",style="solid", color="black", weight=3]; 17.46/6.32 1558[label="primEqInt (Pos Zero) (Pos yv4010)",fontsize=16,color="burlywood",shape="box"];2197[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2197[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2197 -> 1665[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2198[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1558 -> 2198[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2198 -> 1666[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1559[label="primEqInt (Pos Zero) (Neg yv4010)",fontsize=16,color="burlywood",shape="box"];2199[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2199[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2199 -> 1667[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2200[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1559 -> 2200[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2200 -> 1668[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1560[label="primEqInt (Neg (Succ yv3100)) (Pos yv4010)",fontsize=16,color="black",shape="box"];1560 -> 1669[label="",style="solid", color="black", weight=3]; 17.46/6.32 1561[label="primEqInt (Neg (Succ yv3100)) (Neg yv4010)",fontsize=16,color="burlywood",shape="box"];2201[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1561 -> 2201[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2201 -> 1670[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2202[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1561 -> 2202[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2202 -> 1671[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1562[label="primEqInt (Neg Zero) (Pos yv4010)",fontsize=16,color="burlywood",shape="box"];2203[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2203[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2203 -> 1672[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2204[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2204[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2204 -> 1673[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1563[label="primEqInt (Neg Zero) (Neg yv4010)",fontsize=16,color="burlywood",shape="box"];2205[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1563 -> 2205[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2205 -> 1674[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2206[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1563 -> 2206[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2206 -> 1675[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1564 -> 1352[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1564[label="yv311 == yv4011 && yv312 == yv4012",fontsize=16,color="magenta"];1564 -> 1676[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1564 -> 1677[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1565[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2207[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2207[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2207 -> 1678[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2208[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2208 -> 1679[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2209[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2209[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2209 -> 1680[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2210[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2210[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2210 -> 1681[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2211[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2211[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2211 -> 1682[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2212[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2212[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2212 -> 1683[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2213[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2213[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2213 -> 1684[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2214[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2214[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2214 -> 1685[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2215[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2215[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2215 -> 1686[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2216[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2216[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2216 -> 1687[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2217[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2217[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2217 -> 1688[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2218[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2218[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2218 -> 1689[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2219[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2219[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2219 -> 1690[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2220[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2220[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2220 -> 1691[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1566 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1566[label="yv310 * yv4011 == yv311 * yv4010",fontsize=16,color="magenta"];1566 -> 1692[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1566 -> 1693[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1567 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1567[label="yv310 * yv4011 == yv311 * yv4010",fontsize=16,color="magenta"];1567 -> 1694[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1567 -> 1695[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1568[label="yv311 == yv4011",fontsize=16,color="blue",shape="box"];2221[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2221[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2221 -> 1696[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2222[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2222[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2222 -> 1697[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1569[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 2223[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2223 -> 1698[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2224[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1569 -> 2224[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2224 -> 1699[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1570 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1570[label="yv311 == yv4011",fontsize=16,color="magenta"];1570 -> 1700[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1570 -> 1701[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1571[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2225[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2225[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2225 -> 1702[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2226[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2226[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2226 -> 1703[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2227[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2227[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2227 -> 1704[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2228[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2228[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2228 -> 1705[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2229[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2229[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2229 -> 1706[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2230[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2230[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2230 -> 1707[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2231[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2231[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2231 -> 1708[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2232[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2232[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2232 -> 1709[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2233[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2233[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2233 -> 1710[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2234[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2234[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2234 -> 1711[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2235[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2235 -> 1712[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2236[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2236[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2236 -> 1713[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2237[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2237[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2237 -> 1714[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2238[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2238[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2238 -> 1715[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1572[label="primEqNat yv310 yv4010",fontsize=16,color="burlywood",shape="triangle"];2239[label="yv310/Succ yv3100",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2239[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2239 -> 1716[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2240[label="yv310/Zero",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2240[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2240 -> 1717[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1573[label="yv4010",fontsize=16,color="green",shape="box"];1574[label="yv310",fontsize=16,color="green",shape="box"];1575[label="yv311 == yv4011",fontsize=16,color="blue",shape="box"];2241[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2241[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2241 -> 1718[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2242[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2242[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2242 -> 1719[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2243[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2243[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2243 -> 1720[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2244[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2244[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2244 -> 1721[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2245[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2245[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2245 -> 1722[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2246[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2246[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2246 -> 1723[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2247[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2247[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2247 -> 1724[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2248[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2248[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2248 -> 1725[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2249[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2249[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2249 -> 1726[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2250[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2250[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2250 -> 1727[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2251[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2251[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2251 -> 1728[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2252[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2252 -> 1729[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2253[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2253[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2253 -> 1730[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2254[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2254[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2254 -> 1731[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1576[label="yv310 == yv4010",fontsize=16,color="blue",shape="box"];2255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2255[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2255 -> 1732[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2256[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2256[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2256 -> 1733[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2257[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2257[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2257 -> 1734[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2258[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2258[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2258 -> 1735[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2259[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2259[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2259 -> 1736[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2260[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2260[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2260 -> 1737[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2261[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2261[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2261 -> 1738[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2262[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2262[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2262 -> 1739[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2263[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2263[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2263 -> 1740[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2264[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2264[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2264 -> 1741[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2265[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2265[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2265 -> 1742[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2266[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2266[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2266 -> 1743[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2267[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2267[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2267 -> 1744[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2268[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2268[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2268 -> 1745[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1387[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (enforceWHNF (WHNF (Pos yv41 + fromInt (Pos (Succ Zero)))) (numericEnumFrom (Pos yv41 + fromInt (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1387 -> 1439[label="",style="solid", color="black", weight=3]; 17.46/6.32 1388[label="(yv22,yv23)",fontsize=16,color="green",shape="box"];1578[label="yv4010",fontsize=16,color="green",shape="box"];1579[label="yv310",fontsize=16,color="green",shape="box"];1580[label="yv4010",fontsize=16,color="green",shape="box"];1581[label="yv310",fontsize=16,color="green",shape="box"];1582[label="yv4010",fontsize=16,color="green",shape="box"];1583[label="yv310",fontsize=16,color="green",shape="box"];1584[label="yv4010",fontsize=16,color="green",shape="box"];1585[label="yv310",fontsize=16,color="green",shape="box"];1586[label="yv4010",fontsize=16,color="green",shape="box"];1587[label="yv310",fontsize=16,color="green",shape="box"];1588[label="yv4010",fontsize=16,color="green",shape="box"];1589[label="yv310",fontsize=16,color="green",shape="box"];1590[label="yv4010",fontsize=16,color="green",shape="box"];1591[label="yv310",fontsize=16,color="green",shape="box"];1592[label="yv4010",fontsize=16,color="green",shape="box"];1593[label="yv310",fontsize=16,color="green",shape="box"];1594[label="yv4010",fontsize=16,color="green",shape="box"];1595[label="yv310",fontsize=16,color="green",shape="box"];1596[label="yv4010",fontsize=16,color="green",shape="box"];1597[label="yv310",fontsize=16,color="green",shape="box"];1598[label="yv4010",fontsize=16,color="green",shape="box"];1599[label="yv310",fontsize=16,color="green",shape="box"];1600[label="yv4010",fontsize=16,color="green",shape="box"];1601[label="yv310",fontsize=16,color="green",shape="box"];1602[label="yv4010",fontsize=16,color="green",shape="box"];1603[label="yv310",fontsize=16,color="green",shape="box"];1604[label="yv4010",fontsize=16,color="green",shape="box"];1605[label="yv310",fontsize=16,color="green",shape="box"];1606[label="yv4010",fontsize=16,color="green",shape="box"];1607[label="yv310",fontsize=16,color="green",shape="box"];1608[label="yv4010",fontsize=16,color="green",shape="box"];1609[label="yv310",fontsize=16,color="green",shape="box"];1610[label="yv4010",fontsize=16,color="green",shape="box"];1611[label="yv310",fontsize=16,color="green",shape="box"];1612[label="yv4010",fontsize=16,color="green",shape="box"];1613[label="yv310",fontsize=16,color="green",shape="box"];1614[label="yv4010",fontsize=16,color="green",shape="box"];1615[label="yv310",fontsize=16,color="green",shape="box"];1616[label="yv4010",fontsize=16,color="green",shape="box"];1617[label="yv310",fontsize=16,color="green",shape="box"];1618[label="yv4010",fontsize=16,color="green",shape="box"];1619[label="yv310",fontsize=16,color="green",shape="box"];1620[label="yv4010",fontsize=16,color="green",shape="box"];1621[label="yv310",fontsize=16,color="green",shape="box"];1622[label="yv4010",fontsize=16,color="green",shape="box"];1623[label="yv310",fontsize=16,color="green",shape="box"];1624[label="yv4010",fontsize=16,color="green",shape="box"];1625[label="yv310",fontsize=16,color="green",shape="box"];1626[label="yv4010",fontsize=16,color="green",shape="box"];1627[label="yv310",fontsize=16,color="green",shape="box"];1628[label="yv4010",fontsize=16,color="green",shape="box"];1629[label="yv310",fontsize=16,color="green",shape="box"];1630[label="yv4010",fontsize=16,color="green",shape="box"];1631[label="yv310",fontsize=16,color="green",shape="box"];1632[label="yv4010",fontsize=16,color="green",shape="box"];1633[label="yv310",fontsize=16,color="green",shape="box"];1634[label="yv4010",fontsize=16,color="green",shape="box"];1635[label="yv310",fontsize=16,color="green",shape="box"];1636[label="yv4010",fontsize=16,color="green",shape="box"];1637[label="yv310",fontsize=16,color="green",shape="box"];1638[label="yv4010",fontsize=16,color="green",shape="box"];1639[label="yv310",fontsize=16,color="green",shape="box"];1640[label="yv4010",fontsize=16,color="green",shape="box"];1641[label="yv310",fontsize=16,color="green",shape="box"];1642[label="yv4010",fontsize=16,color="green",shape="box"];1643[label="yv310",fontsize=16,color="green",shape="box"];1644[label="yv4010",fontsize=16,color="green",shape="box"];1645[label="yv310",fontsize=16,color="green",shape="box"];1646[label="yv4010",fontsize=16,color="green",shape="box"];1647[label="yv310",fontsize=16,color="green",shape="box"];1648[label="yv4010",fontsize=16,color="green",shape="box"];1649[label="yv310",fontsize=16,color="green",shape="box"];1650[label="yv4010",fontsize=16,color="green",shape="box"];1651[label="yv310",fontsize=16,color="green",shape="box"];1652[label="yv4010",fontsize=16,color="green",shape="box"];1653[label="yv310",fontsize=16,color="green",shape="box"];1654[label="yv4010",fontsize=16,color="green",shape="box"];1655[label="yv310",fontsize=16,color="green",shape="box"];1656[label="yv4010",fontsize=16,color="green",shape="box"];1657[label="yv310",fontsize=16,color="green",shape="box"];1658[label="yv4010",fontsize=16,color="green",shape="box"];1659[label="yv310",fontsize=16,color="green",shape="box"];1660[label="yv4010",fontsize=16,color="green",shape="box"];1661[label="yv310",fontsize=16,color="green",shape="box"];1662[label="primEqInt (Pos (Succ yv3100)) (Pos (Succ yv40100))",fontsize=16,color="black",shape="box"];1662 -> 1747[label="",style="solid", color="black", weight=3]; 17.46/6.32 1663[label="primEqInt (Pos (Succ yv3100)) (Pos Zero)",fontsize=16,color="black",shape="box"];1663 -> 1748[label="",style="solid", color="black", weight=3]; 17.46/6.32 1664[label="False",fontsize=16,color="green",shape="box"];1665[label="primEqInt (Pos Zero) (Pos (Succ yv40100))",fontsize=16,color="black",shape="box"];1665 -> 1749[label="",style="solid", color="black", weight=3]; 17.46/6.32 1666[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1666 -> 1750[label="",style="solid", color="black", weight=3]; 17.46/6.32 1667[label="primEqInt (Pos Zero) (Neg (Succ yv40100))",fontsize=16,color="black",shape="box"];1667 -> 1751[label="",style="solid", color="black", weight=3]; 17.46/6.32 1668[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1668 -> 1752[label="",style="solid", color="black", weight=3]; 17.46/6.32 1669[label="False",fontsize=16,color="green",shape="box"];1670[label="primEqInt (Neg (Succ yv3100)) (Neg (Succ yv40100))",fontsize=16,color="black",shape="box"];1670 -> 1753[label="",style="solid", color="black", weight=3]; 17.46/6.32 1671[label="primEqInt (Neg (Succ yv3100)) (Neg Zero)",fontsize=16,color="black",shape="box"];1671 -> 1754[label="",style="solid", color="black", weight=3]; 17.46/6.32 1672[label="primEqInt (Neg Zero) (Pos (Succ yv40100))",fontsize=16,color="black",shape="box"];1672 -> 1755[label="",style="solid", color="black", weight=3]; 17.46/6.32 1673[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1673 -> 1756[label="",style="solid", color="black", weight=3]; 17.46/6.32 1674[label="primEqInt (Neg Zero) (Neg (Succ yv40100))",fontsize=16,color="black",shape="box"];1674 -> 1757[label="",style="solid", color="black", weight=3]; 17.46/6.32 1675[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1675 -> 1758[label="",style="solid", color="black", weight=3]; 17.46/6.32 1676[label="yv312 == yv4012",fontsize=16,color="blue",shape="box"];2269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2269[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2269 -> 1759[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2270[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2270 -> 1760[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2271[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2271[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2271 -> 1761[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2272[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2272[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2272 -> 1762[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2273[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2273[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2273 -> 1763[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2274[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2274[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2274 -> 1764[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2275[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2275[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2275 -> 1765[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2276[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2276 -> 1766[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2277[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2277[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2277 -> 1767[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2278[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2278[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2278 -> 1768[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2279[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2279[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2279 -> 1769[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2280[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2280[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2280 -> 1770[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2281[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2281[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2281 -> 1771[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2282[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1676 -> 2282[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2282 -> 1772[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1677[label="yv311 == yv4011",fontsize=16,color="blue",shape="box"];2283[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2283[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2283 -> 1773[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2284[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2284[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2284 -> 1774[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2285[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2285[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2285 -> 1775[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2286[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2286[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2286 -> 1776[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2287[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2287[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2287 -> 1777[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2288[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2288[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2288 -> 1778[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2289[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2289 -> 1779[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2290[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2290 -> 1780[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2291[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2291[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2291 -> 1781[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2292[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2292[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2292 -> 1782[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2293[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2293[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2293 -> 1783[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2294[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2294[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2294 -> 1784[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2295[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2295[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2295 -> 1785[label="",style="solid", color="blue", weight=3]; 17.46/6.32 2296[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 2296[label="",style="solid", color="blue", weight=9]; 17.46/6.32 2296 -> 1786[label="",style="solid", color="blue", weight=3]; 17.46/6.32 1678 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1678[label="yv310 == yv4010",fontsize=16,color="magenta"];1678 -> 1787[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1678 -> 1788[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1679 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1679[label="yv310 == yv4010",fontsize=16,color="magenta"];1679 -> 1789[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1679 -> 1790[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1680 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1680[label="yv310 == yv4010",fontsize=16,color="magenta"];1680 -> 1791[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1680 -> 1792[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1681 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1681[label="yv310 == yv4010",fontsize=16,color="magenta"];1681 -> 1793[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1681 -> 1794[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1682 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1682[label="yv310 == yv4010",fontsize=16,color="magenta"];1682 -> 1795[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1682 -> 1796[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1683 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1683[label="yv310 == yv4010",fontsize=16,color="magenta"];1683 -> 1797[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1683 -> 1798[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1684 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1684[label="yv310 == yv4010",fontsize=16,color="magenta"];1684 -> 1799[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1684 -> 1800[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1685 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1685[label="yv310 == yv4010",fontsize=16,color="magenta"];1685 -> 1801[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1685 -> 1802[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1686 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1686[label="yv310 == yv4010",fontsize=16,color="magenta"];1686 -> 1803[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1686 -> 1804[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1687 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1687[label="yv310 == yv4010",fontsize=16,color="magenta"];1687 -> 1805[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1687 -> 1806[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1688 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1688[label="yv310 == yv4010",fontsize=16,color="magenta"];1688 -> 1807[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1688 -> 1808[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1689 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1689[label="yv310 == yv4010",fontsize=16,color="magenta"];1689 -> 1809[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1689 -> 1810[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1690 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1690[label="yv310 == yv4010",fontsize=16,color="magenta"];1690 -> 1811[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1690 -> 1812[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1691 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1691[label="yv310 == yv4010",fontsize=16,color="magenta"];1691 -> 1813[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1691 -> 1814[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1692[label="yv311 * yv4010",fontsize=16,color="black",shape="triangle"];1692 -> 1815[label="",style="solid", color="black", weight=3]; 17.46/6.32 1693 -> 1692[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1693[label="yv310 * yv4011",fontsize=16,color="magenta"];1693 -> 1816[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1693 -> 1817[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1694 -> 1692[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1694[label="yv311 * yv4010",fontsize=16,color="magenta"];1694 -> 1818[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1694 -> 1819[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1695 -> 1692[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1695[label="yv310 * yv4011",fontsize=16,color="magenta"];1695 -> 1820[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1695 -> 1821[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1696 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1696[label="yv311 == yv4011",fontsize=16,color="magenta"];1696 -> 1822[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1696 -> 1823[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1697 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1697[label="yv311 == yv4011",fontsize=16,color="magenta"];1697 -> 1824[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1697 -> 1825[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1698 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1698[label="yv310 == yv4010",fontsize=16,color="magenta"];1698 -> 1826[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1698 -> 1827[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1699 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1699[label="yv310 == yv4010",fontsize=16,color="magenta"];1699 -> 1828[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1699 -> 1829[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1700[label="yv4011",fontsize=16,color="green",shape="box"];1701[label="yv311",fontsize=16,color="green",shape="box"];1702 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1702[label="yv310 == yv4010",fontsize=16,color="magenta"];1702 -> 1830[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1702 -> 1831[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1703 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1703[label="yv310 == yv4010",fontsize=16,color="magenta"];1703 -> 1832[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1703 -> 1833[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1704 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1704[label="yv310 == yv4010",fontsize=16,color="magenta"];1704 -> 1834[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1704 -> 1835[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1705 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1705[label="yv310 == yv4010",fontsize=16,color="magenta"];1705 -> 1836[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1705 -> 1837[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1706 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1706[label="yv310 == yv4010",fontsize=16,color="magenta"];1706 -> 1838[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1706 -> 1839[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1707 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1707[label="yv310 == yv4010",fontsize=16,color="magenta"];1707 -> 1840[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1707 -> 1841[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1708 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1708[label="yv310 == yv4010",fontsize=16,color="magenta"];1708 -> 1842[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1708 -> 1843[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1709 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1709[label="yv310 == yv4010",fontsize=16,color="magenta"];1709 -> 1844[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1709 -> 1845[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1710 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1710[label="yv310 == yv4010",fontsize=16,color="magenta"];1710 -> 1846[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1710 -> 1847[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1711 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1711[label="yv310 == yv4010",fontsize=16,color="magenta"];1711 -> 1848[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1711 -> 1849[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1712 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1712[label="yv310 == yv4010",fontsize=16,color="magenta"];1712 -> 1850[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1712 -> 1851[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1713 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1713[label="yv310 == yv4010",fontsize=16,color="magenta"];1713 -> 1852[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1713 -> 1853[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1714 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1714[label="yv310 == yv4010",fontsize=16,color="magenta"];1714 -> 1854[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1714 -> 1855[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1715 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1715[label="yv310 == yv4010",fontsize=16,color="magenta"];1715 -> 1856[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1715 -> 1857[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1716[label="primEqNat (Succ yv3100) yv4010",fontsize=16,color="burlywood",shape="box"];2297[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1716 -> 2297[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2297 -> 1858[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2298[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1716 -> 2298[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2298 -> 1859[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1717[label="primEqNat Zero yv4010",fontsize=16,color="burlywood",shape="box"];2299[label="yv4010/Succ yv40100",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2299[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2299 -> 1860[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2300[label="yv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1717 -> 2300[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2300 -> 1861[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1718 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1718[label="yv311 == yv4011",fontsize=16,color="magenta"];1718 -> 1862[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1718 -> 1863[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1719 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1719[label="yv311 == yv4011",fontsize=16,color="magenta"];1719 -> 1864[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1719 -> 1865[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1720 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1720[label="yv311 == yv4011",fontsize=16,color="magenta"];1720 -> 1866[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1720 -> 1867[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1721 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1721[label="yv311 == yv4011",fontsize=16,color="magenta"];1721 -> 1868[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1721 -> 1869[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1722 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1722[label="yv311 == yv4011",fontsize=16,color="magenta"];1722 -> 1870[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1722 -> 1871[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1723 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1723[label="yv311 == yv4011",fontsize=16,color="magenta"];1723 -> 1872[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1723 -> 1873[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1724 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1724[label="yv311 == yv4011",fontsize=16,color="magenta"];1724 -> 1874[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1724 -> 1875[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1725 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1725[label="yv311 == yv4011",fontsize=16,color="magenta"];1725 -> 1876[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1725 -> 1877[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1726 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1726[label="yv311 == yv4011",fontsize=16,color="magenta"];1726 -> 1878[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1726 -> 1879[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1727 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1727[label="yv311 == yv4011",fontsize=16,color="magenta"];1727 -> 1880[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1727 -> 1881[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1728 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1728[label="yv311 == yv4011",fontsize=16,color="magenta"];1728 -> 1882[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1728 -> 1883[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1729 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1729[label="yv311 == yv4011",fontsize=16,color="magenta"];1729 -> 1884[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1729 -> 1885[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1730 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1730[label="yv311 == yv4011",fontsize=16,color="magenta"];1730 -> 1886[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1730 -> 1887[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1731 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1731[label="yv311 == yv4011",fontsize=16,color="magenta"];1731 -> 1888[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1731 -> 1889[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1732 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1732[label="yv310 == yv4010",fontsize=16,color="magenta"];1732 -> 1890[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1732 -> 1891[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1733 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1733[label="yv310 == yv4010",fontsize=16,color="magenta"];1733 -> 1892[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1733 -> 1893[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1734 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1734[label="yv310 == yv4010",fontsize=16,color="magenta"];1734 -> 1894[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1734 -> 1895[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1735 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1735[label="yv310 == yv4010",fontsize=16,color="magenta"];1735 -> 1896[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1735 -> 1897[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1736 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1736[label="yv310 == yv4010",fontsize=16,color="magenta"];1736 -> 1898[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1736 -> 1899[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1737 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1737[label="yv310 == yv4010",fontsize=16,color="magenta"];1737 -> 1900[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1737 -> 1901[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1738 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1738[label="yv310 == yv4010",fontsize=16,color="magenta"];1738 -> 1902[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1738 -> 1903[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1739 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1739[label="yv310 == yv4010",fontsize=16,color="magenta"];1739 -> 1904[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1739 -> 1905[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1740 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1740[label="yv310 == yv4010",fontsize=16,color="magenta"];1740 -> 1906[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1740 -> 1907[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1741 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1741[label="yv310 == yv4010",fontsize=16,color="magenta"];1741 -> 1908[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1741 -> 1909[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1742 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1742[label="yv310 == yv4010",fontsize=16,color="magenta"];1742 -> 1910[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1742 -> 1911[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1743 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1743[label="yv310 == yv4010",fontsize=16,color="magenta"];1743 -> 1912[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1743 -> 1913[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1744 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1744[label="yv310 == yv4010",fontsize=16,color="magenta"];1744 -> 1914[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1744 -> 1915[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1745 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1745[label="yv310 == yv4010",fontsize=16,color="magenta"];1745 -> 1916[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1745 -> 1917[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1439[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (enforceWHNF (WHNF (primPlusInt (Pos yv41) (fromInt (Pos (Succ Zero))))) (numericEnumFrom (primPlusInt (Pos yv41) (fromInt (Pos (Succ Zero)))))))))",fontsize=16,color="black",shape="box"];1439 -> 1475[label="",style="solid", color="black", weight=3]; 17.46/6.32 1747 -> 1572[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1747[label="primEqNat yv3100 yv40100",fontsize=16,color="magenta"];1747 -> 1919[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1747 -> 1920[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1748[label="False",fontsize=16,color="green",shape="box"];1749[label="False",fontsize=16,color="green",shape="box"];1750[label="True",fontsize=16,color="green",shape="box"];1751[label="False",fontsize=16,color="green",shape="box"];1752[label="True",fontsize=16,color="green",shape="box"];1753 -> 1572[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1753[label="primEqNat yv3100 yv40100",fontsize=16,color="magenta"];1753 -> 1921[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1753 -> 1922[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1754[label="False",fontsize=16,color="green",shape="box"];1755[label="False",fontsize=16,color="green",shape="box"];1756[label="True",fontsize=16,color="green",shape="box"];1757[label="False",fontsize=16,color="green",shape="box"];1758[label="True",fontsize=16,color="green",shape="box"];1759 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1759[label="yv312 == yv4012",fontsize=16,color="magenta"];1759 -> 1923[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1759 -> 1924[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1760 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1760[label="yv312 == yv4012",fontsize=16,color="magenta"];1760 -> 1925[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1760 -> 1926[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1761 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1761[label="yv312 == yv4012",fontsize=16,color="magenta"];1761 -> 1927[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1761 -> 1928[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1762 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1762[label="yv312 == yv4012",fontsize=16,color="magenta"];1762 -> 1929[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1762 -> 1930[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1763 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1763[label="yv312 == yv4012",fontsize=16,color="magenta"];1763 -> 1931[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1763 -> 1932[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1764 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1764[label="yv312 == yv4012",fontsize=16,color="magenta"];1764 -> 1933[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1764 -> 1934[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1765 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1765[label="yv312 == yv4012",fontsize=16,color="magenta"];1765 -> 1935[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1765 -> 1936[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1766 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1766[label="yv312 == yv4012",fontsize=16,color="magenta"];1766 -> 1937[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1766 -> 1938[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1767 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1767[label="yv312 == yv4012",fontsize=16,color="magenta"];1767 -> 1939[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1767 -> 1940[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1768 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1768[label="yv312 == yv4012",fontsize=16,color="magenta"];1768 -> 1941[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1768 -> 1942[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1769 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1769[label="yv312 == yv4012",fontsize=16,color="magenta"];1769 -> 1943[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1769 -> 1944[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1770 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1770[label="yv312 == yv4012",fontsize=16,color="magenta"];1770 -> 1945[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1770 -> 1946[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1771 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1771[label="yv312 == yv4012",fontsize=16,color="magenta"];1771 -> 1947[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1771 -> 1948[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1772 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1772[label="yv312 == yv4012",fontsize=16,color="magenta"];1772 -> 1949[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1772 -> 1950[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1773 -> 1357[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1773[label="yv311 == yv4011",fontsize=16,color="magenta"];1773 -> 1951[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1773 -> 1952[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1774 -> 1358[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1774[label="yv311 == yv4011",fontsize=16,color="magenta"];1774 -> 1953[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1774 -> 1954[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1775 -> 1359[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1775[label="yv311 == yv4011",fontsize=16,color="magenta"];1775 -> 1955[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1775 -> 1956[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1776 -> 1360[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1776[label="yv311 == yv4011",fontsize=16,color="magenta"];1776 -> 1957[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1776 -> 1958[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1777 -> 1361[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1777[label="yv311 == yv4011",fontsize=16,color="magenta"];1777 -> 1959[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1777 -> 1960[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1778 -> 1362[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1778[label="yv311 == yv4011",fontsize=16,color="magenta"];1778 -> 1961[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1778 -> 1962[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1779 -> 1363[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1779[label="yv311 == yv4011",fontsize=16,color="magenta"];1779 -> 1963[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1779 -> 1964[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1780 -> 1364[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1780[label="yv311 == yv4011",fontsize=16,color="magenta"];1780 -> 1965[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1780 -> 1966[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1781 -> 1365[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1781[label="yv311 == yv4011",fontsize=16,color="magenta"];1781 -> 1967[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1781 -> 1968[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1782 -> 1366[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1782[label="yv311 == yv4011",fontsize=16,color="magenta"];1782 -> 1969[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1782 -> 1970[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1783 -> 1367[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1783[label="yv311 == yv4011",fontsize=16,color="magenta"];1783 -> 1971[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1783 -> 1972[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1784 -> 1368[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1784[label="yv311 == yv4011",fontsize=16,color="magenta"];1784 -> 1973[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1784 -> 1974[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1785 -> 1369[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1785[label="yv311 == yv4011",fontsize=16,color="magenta"];1785 -> 1975[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1785 -> 1976[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1786 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1786[label="yv311 == yv4011",fontsize=16,color="magenta"];1786 -> 1977[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1786 -> 1978[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1787[label="yv4010",fontsize=16,color="green",shape="box"];1788[label="yv310",fontsize=16,color="green",shape="box"];1789[label="yv4010",fontsize=16,color="green",shape="box"];1790[label="yv310",fontsize=16,color="green",shape="box"];1791[label="yv4010",fontsize=16,color="green",shape="box"];1792[label="yv310",fontsize=16,color="green",shape="box"];1793[label="yv4010",fontsize=16,color="green",shape="box"];1794[label="yv310",fontsize=16,color="green",shape="box"];1795[label="yv4010",fontsize=16,color="green",shape="box"];1796[label="yv310",fontsize=16,color="green",shape="box"];1797[label="yv4010",fontsize=16,color="green",shape="box"];1798[label="yv310",fontsize=16,color="green",shape="box"];1799[label="yv4010",fontsize=16,color="green",shape="box"];1800[label="yv310",fontsize=16,color="green",shape="box"];1801[label="yv4010",fontsize=16,color="green",shape="box"];1802[label="yv310",fontsize=16,color="green",shape="box"];1803[label="yv4010",fontsize=16,color="green",shape="box"];1804[label="yv310",fontsize=16,color="green",shape="box"];1805[label="yv4010",fontsize=16,color="green",shape="box"];1806[label="yv310",fontsize=16,color="green",shape="box"];1807[label="yv4010",fontsize=16,color="green",shape="box"];1808[label="yv310",fontsize=16,color="green",shape="box"];1809[label="yv4010",fontsize=16,color="green",shape="box"];1810[label="yv310",fontsize=16,color="green",shape="box"];1811[label="yv4010",fontsize=16,color="green",shape="box"];1812[label="yv310",fontsize=16,color="green",shape="box"];1813[label="yv4010",fontsize=16,color="green",shape="box"];1814[label="yv310",fontsize=16,color="green",shape="box"];1815[label="primMulInt yv311 yv4010",fontsize=16,color="burlywood",shape="box"];2301[label="yv311/Pos yv3110",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2301[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2301 -> 1979[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2302[label="yv311/Neg yv3110",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2302[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2302 -> 1980[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1816[label="yv310",fontsize=16,color="green",shape="box"];1817[label="yv4011",fontsize=16,color="green",shape="box"];1818[label="yv311",fontsize=16,color="green",shape="box"];1819[label="yv4010",fontsize=16,color="green",shape="box"];1820[label="yv310",fontsize=16,color="green",shape="box"];1821[label="yv4011",fontsize=16,color="green",shape="box"];1822[label="yv4011",fontsize=16,color="green",shape="box"];1823[label="yv311",fontsize=16,color="green",shape="box"];1824[label="yv4011",fontsize=16,color="green",shape="box"];1825[label="yv311",fontsize=16,color="green",shape="box"];1826[label="yv4010",fontsize=16,color="green",shape="box"];1827[label="yv310",fontsize=16,color="green",shape="box"];1828[label="yv4010",fontsize=16,color="green",shape="box"];1829[label="yv310",fontsize=16,color="green",shape="box"];1830[label="yv4010",fontsize=16,color="green",shape="box"];1831[label="yv310",fontsize=16,color="green",shape="box"];1832[label="yv4010",fontsize=16,color="green",shape="box"];1833[label="yv310",fontsize=16,color="green",shape="box"];1834[label="yv4010",fontsize=16,color="green",shape="box"];1835[label="yv310",fontsize=16,color="green",shape="box"];1836[label="yv4010",fontsize=16,color="green",shape="box"];1837[label="yv310",fontsize=16,color="green",shape="box"];1838[label="yv4010",fontsize=16,color="green",shape="box"];1839[label="yv310",fontsize=16,color="green",shape="box"];1840[label="yv4010",fontsize=16,color="green",shape="box"];1841[label="yv310",fontsize=16,color="green",shape="box"];1842[label="yv4010",fontsize=16,color="green",shape="box"];1843[label="yv310",fontsize=16,color="green",shape="box"];1844[label="yv4010",fontsize=16,color="green",shape="box"];1845[label="yv310",fontsize=16,color="green",shape="box"];1846[label="yv4010",fontsize=16,color="green",shape="box"];1847[label="yv310",fontsize=16,color="green",shape="box"];1848[label="yv4010",fontsize=16,color="green",shape="box"];1849[label="yv310",fontsize=16,color="green",shape="box"];1850[label="yv4010",fontsize=16,color="green",shape="box"];1851[label="yv310",fontsize=16,color="green",shape="box"];1852[label="yv4010",fontsize=16,color="green",shape="box"];1853[label="yv310",fontsize=16,color="green",shape="box"];1854[label="yv4010",fontsize=16,color="green",shape="box"];1855[label="yv310",fontsize=16,color="green",shape="box"];1856[label="yv4010",fontsize=16,color="green",shape="box"];1857[label="yv310",fontsize=16,color="green",shape="box"];1858[label="primEqNat (Succ yv3100) (Succ yv40100)",fontsize=16,color="black",shape="box"];1858 -> 1981[label="",style="solid", color="black", weight=3]; 17.46/6.32 1859[label="primEqNat (Succ yv3100) Zero",fontsize=16,color="black",shape="box"];1859 -> 1982[label="",style="solid", color="black", weight=3]; 17.46/6.32 1860[label="primEqNat Zero (Succ yv40100)",fontsize=16,color="black",shape="box"];1860 -> 1983[label="",style="solid", color="black", weight=3]; 17.46/6.32 1861[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1861 -> 1984[label="",style="solid", color="black", weight=3]; 17.46/6.32 1862[label="yv4011",fontsize=16,color="green",shape="box"];1863[label="yv311",fontsize=16,color="green",shape="box"];1864[label="yv4011",fontsize=16,color="green",shape="box"];1865[label="yv311",fontsize=16,color="green",shape="box"];1866[label="yv4011",fontsize=16,color="green",shape="box"];1867[label="yv311",fontsize=16,color="green",shape="box"];1868[label="yv4011",fontsize=16,color="green",shape="box"];1869[label="yv311",fontsize=16,color="green",shape="box"];1870[label="yv4011",fontsize=16,color="green",shape="box"];1871[label="yv311",fontsize=16,color="green",shape="box"];1872[label="yv4011",fontsize=16,color="green",shape="box"];1873[label="yv311",fontsize=16,color="green",shape="box"];1874[label="yv4011",fontsize=16,color="green",shape="box"];1875[label="yv311",fontsize=16,color="green",shape="box"];1876[label="yv4011",fontsize=16,color="green",shape="box"];1877[label="yv311",fontsize=16,color="green",shape="box"];1878[label="yv4011",fontsize=16,color="green",shape="box"];1879[label="yv311",fontsize=16,color="green",shape="box"];1880[label="yv4011",fontsize=16,color="green",shape="box"];1881[label="yv311",fontsize=16,color="green",shape="box"];1882[label="yv4011",fontsize=16,color="green",shape="box"];1883[label="yv311",fontsize=16,color="green",shape="box"];1884[label="yv4011",fontsize=16,color="green",shape="box"];1885[label="yv311",fontsize=16,color="green",shape="box"];1886[label="yv4011",fontsize=16,color="green",shape="box"];1887[label="yv311",fontsize=16,color="green",shape="box"];1888[label="yv4011",fontsize=16,color="green",shape="box"];1889[label="yv311",fontsize=16,color="green",shape="box"];1890[label="yv4010",fontsize=16,color="green",shape="box"];1891[label="yv310",fontsize=16,color="green",shape="box"];1892[label="yv4010",fontsize=16,color="green",shape="box"];1893[label="yv310",fontsize=16,color="green",shape="box"];1894[label="yv4010",fontsize=16,color="green",shape="box"];1895[label="yv310",fontsize=16,color="green",shape="box"];1896[label="yv4010",fontsize=16,color="green",shape="box"];1897[label="yv310",fontsize=16,color="green",shape="box"];1898[label="yv4010",fontsize=16,color="green",shape="box"];1899[label="yv310",fontsize=16,color="green",shape="box"];1900[label="yv4010",fontsize=16,color="green",shape="box"];1901[label="yv310",fontsize=16,color="green",shape="box"];1902[label="yv4010",fontsize=16,color="green",shape="box"];1903[label="yv310",fontsize=16,color="green",shape="box"];1904[label="yv4010",fontsize=16,color="green",shape="box"];1905[label="yv310",fontsize=16,color="green",shape="box"];1906[label="yv4010",fontsize=16,color="green",shape="box"];1907[label="yv310",fontsize=16,color="green",shape="box"];1908[label="yv4010",fontsize=16,color="green",shape="box"];1909[label="yv310",fontsize=16,color="green",shape="box"];1910[label="yv4010",fontsize=16,color="green",shape="box"];1911[label="yv310",fontsize=16,color="green",shape="box"];1912[label="yv4010",fontsize=16,color="green",shape="box"];1913[label="yv310",fontsize=16,color="green",shape="box"];1914[label="yv4010",fontsize=16,color="green",shape="box"];1915[label="yv310",fontsize=16,color="green",shape="box"];1916[label="yv4010",fontsize=16,color="green",shape="box"];1917[label="yv310",fontsize=16,color="green",shape="box"];1475[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (enforceWHNF (WHNF (primPlusInt (Pos yv41) (Pos (Succ Zero)))) (numericEnumFrom (primPlusInt (Pos yv41) (Pos (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1475 -> 1513[label="",style="solid", color="black", weight=3]; 17.46/6.32 1919[label="yv3100",fontsize=16,color="green",shape="box"];1920[label="yv40100",fontsize=16,color="green",shape="box"];1921[label="yv3100",fontsize=16,color="green",shape="box"];1922[label="yv40100",fontsize=16,color="green",shape="box"];1923[label="yv4012",fontsize=16,color="green",shape="box"];1924[label="yv312",fontsize=16,color="green",shape="box"];1925[label="yv4012",fontsize=16,color="green",shape="box"];1926[label="yv312",fontsize=16,color="green",shape="box"];1927[label="yv4012",fontsize=16,color="green",shape="box"];1928[label="yv312",fontsize=16,color="green",shape="box"];1929[label="yv4012",fontsize=16,color="green",shape="box"];1930[label="yv312",fontsize=16,color="green",shape="box"];1931[label="yv4012",fontsize=16,color="green",shape="box"];1932[label="yv312",fontsize=16,color="green",shape="box"];1933[label="yv4012",fontsize=16,color="green",shape="box"];1934[label="yv312",fontsize=16,color="green",shape="box"];1935[label="yv4012",fontsize=16,color="green",shape="box"];1936[label="yv312",fontsize=16,color="green",shape="box"];1937[label="yv4012",fontsize=16,color="green",shape="box"];1938[label="yv312",fontsize=16,color="green",shape="box"];1939[label="yv4012",fontsize=16,color="green",shape="box"];1940[label="yv312",fontsize=16,color="green",shape="box"];1941[label="yv4012",fontsize=16,color="green",shape="box"];1942[label="yv312",fontsize=16,color="green",shape="box"];1943[label="yv4012",fontsize=16,color="green",shape="box"];1944[label="yv312",fontsize=16,color="green",shape="box"];1945[label="yv4012",fontsize=16,color="green",shape="box"];1946[label="yv312",fontsize=16,color="green",shape="box"];1947[label="yv4012",fontsize=16,color="green",shape="box"];1948[label="yv312",fontsize=16,color="green",shape="box"];1949[label="yv4012",fontsize=16,color="green",shape="box"];1950[label="yv312",fontsize=16,color="green",shape="box"];1951[label="yv4011",fontsize=16,color="green",shape="box"];1952[label="yv311",fontsize=16,color="green",shape="box"];1953[label="yv4011",fontsize=16,color="green",shape="box"];1954[label="yv311",fontsize=16,color="green",shape="box"];1955[label="yv4011",fontsize=16,color="green",shape="box"];1956[label="yv311",fontsize=16,color="green",shape="box"];1957[label="yv4011",fontsize=16,color="green",shape="box"];1958[label="yv311",fontsize=16,color="green",shape="box"];1959[label="yv4011",fontsize=16,color="green",shape="box"];1960[label="yv311",fontsize=16,color="green",shape="box"];1961[label="yv4011",fontsize=16,color="green",shape="box"];1962[label="yv311",fontsize=16,color="green",shape="box"];1963[label="yv4011",fontsize=16,color="green",shape="box"];1964[label="yv311",fontsize=16,color="green",shape="box"];1965[label="yv4011",fontsize=16,color="green",shape="box"];1966[label="yv311",fontsize=16,color="green",shape="box"];1967[label="yv4011",fontsize=16,color="green",shape="box"];1968[label="yv311",fontsize=16,color="green",shape="box"];1969[label="yv4011",fontsize=16,color="green",shape="box"];1970[label="yv311",fontsize=16,color="green",shape="box"];1971[label="yv4011",fontsize=16,color="green",shape="box"];1972[label="yv311",fontsize=16,color="green",shape="box"];1973[label="yv4011",fontsize=16,color="green",shape="box"];1974[label="yv311",fontsize=16,color="green",shape="box"];1975[label="yv4011",fontsize=16,color="green",shape="box"];1976[label="yv311",fontsize=16,color="green",shape="box"];1977[label="yv4011",fontsize=16,color="green",shape="box"];1978[label="yv311",fontsize=16,color="green",shape="box"];1979[label="primMulInt (Pos yv3110) yv4010",fontsize=16,color="burlywood",shape="box"];2303[label="yv4010/Pos yv40100",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2303[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2303 -> 1986[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2304[label="yv4010/Neg yv40100",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2304[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2304 -> 1987[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1980[label="primMulInt (Neg yv3110) yv4010",fontsize=16,color="burlywood",shape="box"];2305[label="yv4010/Pos yv40100",fontsize=10,color="white",style="solid",shape="box"];1980 -> 2305[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2305 -> 1988[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2306[label="yv4010/Neg yv40100",fontsize=10,color="white",style="solid",shape="box"];1980 -> 2306[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2306 -> 1989[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1981 -> 1572[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1981[label="primEqNat yv3100 yv40100",fontsize=16,color="magenta"];1981 -> 1990[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1981 -> 1991[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1982[label="False",fontsize=16,color="green",shape="box"];1983[label="False",fontsize=16,color="green",shape="box"];1984[label="True",fontsize=16,color="green",shape="box"];1513[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (enforceWHNF (WHNF (Pos (primPlusNat yv41 (Succ Zero)))) (numericEnumFrom (Pos (primPlusNat yv41 (Succ Zero))))))))",fontsize=16,color="black",shape="box"];1513 -> 1577[label="",style="solid", color="black", weight=3]; 17.46/6.32 1986[label="primMulInt (Pos yv3110) (Pos yv40100)",fontsize=16,color="black",shape="box"];1986 -> 1993[label="",style="solid", color="black", weight=3]; 17.46/6.32 1987[label="primMulInt (Pos yv3110) (Neg yv40100)",fontsize=16,color="black",shape="box"];1987 -> 1994[label="",style="solid", color="black", weight=3]; 17.46/6.32 1988[label="primMulInt (Neg yv3110) (Pos yv40100)",fontsize=16,color="black",shape="box"];1988 -> 1995[label="",style="solid", color="black", weight=3]; 17.46/6.32 1989[label="primMulInt (Neg yv3110) (Neg yv40100)",fontsize=16,color="black",shape="box"];1989 -> 1996[label="",style="solid", color="black", weight=3]; 17.46/6.32 1990[label="yv3100",fontsize=16,color="green",shape="box"];1991[label="yv40100",fontsize=16,color="green",shape="box"];1577[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (numericEnumFrom (Pos (primPlusNat yv41 (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1577 -> 1746[label="",style="solid", color="black", weight=3]; 17.46/6.32 1993[label="Pos (primMulNat yv3110 yv40100)",fontsize=16,color="green",shape="box"];1993 -> 1998[label="",style="dashed", color="green", weight=3]; 17.46/6.32 1994[label="Neg (primMulNat yv3110 yv40100)",fontsize=16,color="green",shape="box"];1994 -> 1999[label="",style="dashed", color="green", weight=3]; 17.46/6.32 1995[label="Neg (primMulNat yv3110 yv40100)",fontsize=16,color="green",shape="box"];1995 -> 2000[label="",style="dashed", color="green", weight=3]; 17.46/6.32 1996[label="Pos (primMulNat yv3110 yv40100)",fontsize=16,color="green",shape="box"];1996 -> 2001[label="",style="dashed", color="green", weight=3]; 17.46/6.32 1746[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 (yv24110 : yv24111) (Pos (primPlusNat yv41 (Succ Zero)) : (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero)))))))",fontsize=16,color="black",shape="box"];1746 -> 1918[label="",style="solid", color="black", weight=3]; 17.46/6.32 1998[label="primMulNat yv3110 yv40100",fontsize=16,color="burlywood",shape="triangle"];2307[label="yv3110/Succ yv31100",fontsize=10,color="white",style="solid",shape="box"];1998 -> 2307[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2307 -> 2003[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2308[label="yv3110/Zero",fontsize=10,color="white",style="solid",shape="box"];1998 -> 2308[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2308 -> 2004[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 1999 -> 1998[label="",style="dashed", color="red", weight=0]; 17.46/6.32 1999[label="primMulNat yv3110 yv40100",fontsize=16,color="magenta"];1999 -> 2005[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2000 -> 1998[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2000[label="primMulNat yv3110 yv40100",fontsize=16,color="magenta"];2000 -> 2006[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2001 -> 1998[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2001[label="primMulNat yv3110 yv40100",fontsize=16,color="magenta"];2001 -> 2007[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2001 -> 2008[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 1918[label="Maybe.listToMaybe (foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zip0 yv24110 (Pos (primPlusNat yv41 (Succ Zero))) : zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1918 -> 1985[label="",style="solid", color="black", weight=3]; 17.46/6.32 2003[label="primMulNat (Succ yv31100) yv40100",fontsize=16,color="burlywood",shape="box"];2309[label="yv40100/Succ yv401000",fontsize=10,color="white",style="solid",shape="box"];2003 -> 2309[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2309 -> 2010[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2310[label="yv40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2003 -> 2310[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2310 -> 2011[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2004[label="primMulNat Zero yv40100",fontsize=16,color="burlywood",shape="box"];2311[label="yv40100/Succ yv401000",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2311[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2311 -> 2012[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2312[label="yv40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2004 -> 2312[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2312 -> 2013[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2005[label="yv40100",fontsize=16,color="green",shape="box"];2006[label="yv3110",fontsize=16,color="green",shape="box"];2007[label="yv3110",fontsize=16,color="green",shape="box"];2008[label="yv40100",fontsize=16,color="green",shape="box"];1985[label="Maybe.listToMaybe (foldr (++) [] (List.findIndices0 ((yv22,yv23) ==) (zip0 yv24110 (Pos (primPlusNat yv41 (Succ Zero)))) : map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1985 -> 1992[label="",style="solid", color="black", weight=3]; 17.46/6.32 2010[label="primMulNat (Succ yv31100) (Succ yv401000)",fontsize=16,color="black",shape="box"];2010 -> 2017[label="",style="solid", color="black", weight=3]; 17.46/6.32 2011[label="primMulNat (Succ yv31100) Zero",fontsize=16,color="black",shape="box"];2011 -> 2018[label="",style="solid", color="black", weight=3]; 17.46/6.32 2012[label="primMulNat Zero (Succ yv401000)",fontsize=16,color="black",shape="box"];2012 -> 2019[label="",style="solid", color="black", weight=3]; 17.46/6.32 2013[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2013 -> 2020[label="",style="solid", color="black", weight=3]; 17.46/6.32 1992[label="Maybe.listToMaybe ((++) List.findIndices0 ((yv22,yv23) ==) (zip0 yv24110 (Pos (primPlusNat yv41 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1992 -> 1997[label="",style="solid", color="black", weight=3]; 17.46/6.32 2017 -> 2025[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2017[label="primPlusNat (primMulNat yv31100 (Succ yv401000)) (Succ yv401000)",fontsize=16,color="magenta"];2017 -> 2026[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2018[label="Zero",fontsize=16,color="green",shape="box"];2019[label="Zero",fontsize=16,color="green",shape="box"];2020[label="Zero",fontsize=16,color="green",shape="box"];1997[label="Maybe.listToMaybe ((++) List.findIndices00 ((yv22,yv23) ==) (zip0 yv24110 (Pos (primPlusNat yv41 (Succ Zero)))) foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];1997 -> 2002[label="",style="solid", color="black", weight=3]; 17.46/6.32 2026 -> 1998[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2026[label="primMulNat yv31100 (Succ yv401000)",fontsize=16,color="magenta"];2026 -> 2029[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2026 -> 2030[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2025[label="primPlusNat yv57 (Succ yv401000)",fontsize=16,color="burlywood",shape="triangle"];2313[label="yv57/Succ yv570",fontsize=10,color="white",style="solid",shape="box"];2025 -> 2313[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2313 -> 2031[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2314[label="yv57/Zero",fontsize=10,color="white",style="solid",shape="box"];2025 -> 2314[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2314 -> 2032[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2002[label="Maybe.listToMaybe ((++) List.findIndices00 ((yv22,yv23) ==) (yv24110,Pos (primPlusNat yv41 (Succ Zero))) foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="black",shape="box"];2002 -> 2009[label="",style="solid", color="black", weight=3]; 17.46/6.32 2029[label="yv31100",fontsize=16,color="green",shape="box"];2030[label="Succ yv401000",fontsize=16,color="green",shape="box"];2031[label="primPlusNat (Succ yv570) (Succ yv401000)",fontsize=16,color="black",shape="box"];2031 -> 2033[label="",style="solid", color="black", weight=3]; 17.46/6.32 2032[label="primPlusNat Zero (Succ yv401000)",fontsize=16,color="black",shape="box"];2032 -> 2034[label="",style="solid", color="black", weight=3]; 17.46/6.32 2009 -> 1097[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2009[label="Maybe.listToMaybe ((++) List.findIndices000 (Pos (primPlusNat yv41 (Succ Zero))) ((yv22,yv23) == yv24110) foldr (++) [] (map (List.findIndices0 ((yv22,yv23) ==)) (zipWith zip0 yv24111 (numericEnumFrom $! Pos (primPlusNat yv41 (Succ Zero)) + fromInt (Pos (Succ Zero))))))",fontsize=16,color="magenta"];2009 -> 2014[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2009 -> 2015[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2009 -> 2016[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2033[label="Succ (Succ (primPlusNat yv570 yv401000))",fontsize=16,color="green",shape="box"];2033 -> 2035[label="",style="dashed", color="green", weight=3]; 17.46/6.32 2034[label="Succ yv401000",fontsize=16,color="green",shape="box"];2014 -> 2025[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2014[label="primPlusNat yv41 (Succ Zero)",fontsize=16,color="magenta"];2014 -> 2027[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2014 -> 2028[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2015 -> 1370[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2015[label="(yv22,yv23) == yv24110",fontsize=16,color="magenta"];2015 -> 2023[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2015 -> 2024[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2016[label="yv24111",fontsize=16,color="green",shape="box"];2035[label="primPlusNat yv570 yv401000",fontsize=16,color="burlywood",shape="triangle"];2315[label="yv570/Succ yv5700",fontsize=10,color="white",style="solid",shape="box"];2035 -> 2315[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2315 -> 2036[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2316[label="yv570/Zero",fontsize=10,color="white",style="solid",shape="box"];2035 -> 2316[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2316 -> 2037[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2027[label="Zero",fontsize=16,color="green",shape="box"];2028[label="yv41",fontsize=16,color="green",shape="box"];2023[label="yv24110",fontsize=16,color="green",shape="box"];2024[label="(yv22,yv23)",fontsize=16,color="green",shape="box"];2036[label="primPlusNat (Succ yv5700) yv401000",fontsize=16,color="burlywood",shape="box"];2317[label="yv401000/Succ yv4010000",fontsize=10,color="white",style="solid",shape="box"];2036 -> 2317[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2317 -> 2038[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2318[label="yv401000/Zero",fontsize=10,color="white",style="solid",shape="box"];2036 -> 2318[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2318 -> 2039[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2037[label="primPlusNat Zero yv401000",fontsize=16,color="burlywood",shape="box"];2319[label="yv401000/Succ yv4010000",fontsize=10,color="white",style="solid",shape="box"];2037 -> 2319[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2319 -> 2040[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2320[label="yv401000/Zero",fontsize=10,color="white",style="solid",shape="box"];2037 -> 2320[label="",style="solid", color="burlywood", weight=9]; 17.46/6.32 2320 -> 2041[label="",style="solid", color="burlywood", weight=3]; 17.46/6.32 2038[label="primPlusNat (Succ yv5700) (Succ yv4010000)",fontsize=16,color="black",shape="box"];2038 -> 2042[label="",style="solid", color="black", weight=3]; 17.46/6.32 2039[label="primPlusNat (Succ yv5700) Zero",fontsize=16,color="black",shape="box"];2039 -> 2043[label="",style="solid", color="black", weight=3]; 17.46/6.32 2040[label="primPlusNat Zero (Succ yv4010000)",fontsize=16,color="black",shape="box"];2040 -> 2044[label="",style="solid", color="black", weight=3]; 17.46/6.32 2041[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2041 -> 2045[label="",style="solid", color="black", weight=3]; 17.46/6.32 2042[label="Succ (Succ (primPlusNat yv5700 yv4010000))",fontsize=16,color="green",shape="box"];2042 -> 2046[label="",style="dashed", color="green", weight=3]; 17.46/6.32 2043[label="Succ yv5700",fontsize=16,color="green",shape="box"];2044[label="Succ yv4010000",fontsize=16,color="green",shape="box"];2045[label="Zero",fontsize=16,color="green",shape="box"];2046 -> 2035[label="",style="dashed", color="red", weight=0]; 17.46/6.32 2046[label="primPlusNat yv5700 yv4010000",fontsize=16,color="magenta"];2046 -> 2047[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2046 -> 2048[label="",style="dashed", color="magenta", weight=3]; 17.46/6.32 2047[label="yv4010000",fontsize=16,color="green",shape="box"];2048[label="yv5700",fontsize=16,color="green",shape="box"];} 17.46/6.32 17.46/6.32 ---------------------------------------- 17.46/6.32 17.46/6.32 (14) 17.46/6.32 Complex Obligation (AND) 17.46/6.32 17.46/6.32 ---------------------------------------- 17.46/6.32 17.46/6.32 (15) 17.46/6.32 Obligation: 17.46/6.32 Q DP problem: 17.46/6.32 The TRS P consists of the following rules: 17.46/6.32 17.46/6.32 new_esEs(Just(yv310), Just(yv4010), app(ty_[], bg)) -> new_esEs2(yv310, yv4010, bg) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(ty_Either, fb), fc)) -> new_esEs0(yv312, yv4012, fb, fc) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(ty_Either, bdd), bde), bdc) -> new_esEs0(yv310, yv4010, bdd, bde) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(ty_Either, ge), gf), gd) -> new_esEs0(yv311, yv4011, ge, gf) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), baf) -> new_esEs2(yv311, yv4011, baf) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(ty_Either, bcb), bcc)) -> new_esEs0(yv311, yv4011, bcb, bcc) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(ty_Either, hf), hg), eh, gd) -> new_esEs0(yv310, yv4010, hf, hg) 17.46/6.32 new_esEs0(Left(yv310), Left(yv4010), app(ty_Maybe, cb), cc) -> new_esEs(yv310, yv4010, cb) 17.46/6.32 new_esEs(Just(yv310), Just(yv4010), app(app(ty_@2, bh), ca)) -> new_esEs3(yv310, yv4010, bh, ca) 17.46/6.32 new_esEs0(Right(yv310), Right(yv4010), de, app(app(ty_Either, dg), dh)) -> new_esEs0(yv310, yv4010, dg, dh) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(yv310, yv4010, hh, baa, bab) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs1(yv311, yv4011, bcd, bce, bcf) 17.46/6.32 new_esEs(Just(yv310), Just(yv4010), app(ty_Maybe, ba)) -> new_esEs(yv310, yv4010, ba) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(ty_[], fh)) -> new_esEs2(yv312, yv4012, fh) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(app(ty_@3, bdf), bdg), bdh), bdc) -> new_esEs1(yv310, yv4010, bdf, bdg, bdh) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(ty_[], hb), gd) -> new_esEs2(yv311, yv4011, hb) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_@2, bbf), bbg)) -> new_esEs3(yv310, yv4010, bbf, bbg) 17.46/6.32 new_esEs(Just(yv310), Just(yv4010), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(yv310, yv4010, bd, be, bf) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(ty_@2, bch), bda)) -> new_esEs3(yv311, yv4011, bch, bda) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(ty_Maybe, fa)) -> new_esEs(yv312, yv4012, fa) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(ty_[], bac), eh, gd) -> new_esEs2(yv310, yv4010, bac) 17.46/6.32 new_esEs0(Left(yv310), Left(yv4010), app(app(ty_@2, dc), dd), cc) -> new_esEs3(yv310, yv4010, dc, dd) 17.46/6.32 new_esEs0(Left(yv310), Left(yv4010), app(ty_[], db), cc) -> new_esEs2(yv310, yv4010, db) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(yv310, yv4010, bbb, bbc, bbd) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(ty_Maybe, gc), gd) -> new_esEs(yv311, yv4011, gc) 17.46/6.32 new_esEs0(Right(yv310), Right(yv4010), de, app(app(ty_@2, ee), ef)) -> new_esEs3(yv310, yv4010, ee, ef) 17.46/6.32 new_esEs0(Left(yv310), Left(yv4010), app(app(ty_Either, cd), ce), cc) -> new_esEs0(yv310, yv4010, cd, ce) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(ty_Maybe, he), eh, gd) -> new_esEs(yv310, yv4010, he) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_Either, bah), bba)) -> new_esEs0(yv310, yv4010, bah, bba) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(ty_[], bea), bdc) -> new_esEs2(yv310, yv4010, bea) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(yv312, yv4012, fd, ff, fg) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(ty_@2, beb), bec), bdc) -> new_esEs3(yv310, yv4010, beb, bec) 17.46/6.32 new_esEs(Just(yv310), Just(yv4010), app(app(ty_Either, bb), bc)) -> new_esEs0(yv310, yv4010, bb, bc) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(ty_@2, ga), gb)) -> new_esEs3(yv312, yv4012, ga, gb) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(ty_Maybe, bag)) -> new_esEs(yv310, yv4010, bag) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(ty_[], bcg)) -> new_esEs2(yv311, yv4011, bcg) 17.46/6.32 new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(ty_[], bbe)) -> new_esEs2(yv310, yv4010, bbe) 17.46/6.32 new_esEs0(Right(yv310), Right(yv4010), de, app(ty_[], ed)) -> new_esEs2(yv310, yv4010, ed) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(ty_@2, hc), hd), gd) -> new_esEs3(yv311, yv4011, hc, hd) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(ty_Maybe, bca)) -> new_esEs(yv311, yv4011, bca) 17.46/6.32 new_esEs0(Left(yv310), Left(yv4010), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(yv310, yv4010, cf, cg, da) 17.46/6.32 new_esEs0(Right(yv310), Right(yv4010), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(yv310, yv4010, ea, eb, ec) 17.46/6.32 new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(ty_Maybe, bdb), bdc) -> new_esEs(yv310, yv4010, bdb) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(ty_@2, bad), bae), eh, gd) -> new_esEs3(yv310, yv4010, bad, bae) 17.46/6.32 new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(yv311, yv4011, gg, gh, ha) 17.46/6.32 new_esEs0(Right(yv310), Right(yv4010), de, app(ty_Maybe, df)) -> new_esEs(yv310, yv4010, df) 17.46/6.32 17.46/6.32 R is empty. 17.46/6.32 Q is empty. 17.46/6.32 We have to consider all minimal (P,Q,R)-chains. 17.46/6.32 ---------------------------------------- 17.46/6.32 17.46/6.32 (16) QDPSizeChangeProof (EQUIVALENT) 17.46/6.32 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.46/6.32 17.46/6.32 From the DPs we obtained the following set of size-change graphs: 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(ty_Maybe, bag)) -> new_esEs(yv310, yv4010, bag) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(yv310, yv4010, bbb, bbc, bbd) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_@2, bbf), bbg)) -> new_esEs3(yv310, yv4010, bbf, bbg) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(app(ty_Either, bah), bba)) -> new_esEs0(yv310, yv4010, bah, bba) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs(Just(yv310), Just(yv4010), app(ty_Maybe, ba)) -> new_esEs(yv310, yv4010, ba) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs(Just(yv310), Just(yv4010), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(yv310, yv4010, bd, be, bf) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs(Just(yv310), Just(yv4010), app(app(ty_@2, bh), ca)) -> new_esEs3(yv310, yv4010, bh, ca) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs(Just(yv310), Just(yv4010), app(ty_[], bg)) -> new_esEs2(yv310, yv4010, bg) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs(Just(yv310), Just(yv4010), app(app(ty_Either, bb), bc)) -> new_esEs0(yv310, yv4010, bb, bc) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), baf) -> new_esEs2(yv311, yv4011, baf) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs2(:(yv310, yv311), :(yv4010, yv4011), app(ty_[], bbe)) -> new_esEs2(yv310, yv4010, bbe) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs0(Left(yv310), Left(yv4010), app(ty_Maybe, cb), cc) -> new_esEs(yv310, yv4010, cb) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs0(Right(yv310), Right(yv4010), de, app(ty_Maybe, df)) -> new_esEs(yv310, yv4010, df) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(ty_Maybe, bca)) -> new_esEs(yv311, yv4011, bca) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(ty_Maybe, bdb), bdc) -> new_esEs(yv310, yv4010, bdb) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(ty_Maybe, fa)) -> new_esEs(yv312, yv4012, fa) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.46/6.32 17.46/6.32 17.46/6.32 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(ty_Maybe, gc), gd) -> new_esEs(yv311, yv4011, gc) 17.46/6.32 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(ty_Maybe, he), eh, gd) -> new_esEs(yv310, yv4010, he) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Left(yv310), Left(yv4010), app(app(app(ty_@3, cf), cg), da), cc) -> new_esEs1(yv310, yv4010, cf, cg, da) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Right(yv310), Right(yv4010), de, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs1(yv310, yv4010, ea, eb, ec) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Left(yv310), Left(yv4010), app(app(ty_@2, dc), dd), cc) -> new_esEs3(yv310, yv4010, dc, dd) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Right(yv310), Right(yv4010), de, app(app(ty_@2, ee), ef)) -> new_esEs3(yv310, yv4010, ee, ef) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Left(yv310), Left(yv4010), app(ty_[], db), cc) -> new_esEs2(yv310, yv4010, db) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Right(yv310), Right(yv4010), de, app(ty_[], ed)) -> new_esEs2(yv310, yv4010, ed) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Right(yv310), Right(yv4010), de, app(app(ty_Either, dg), dh)) -> new_esEs0(yv310, yv4010, dg, dh) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs0(Left(yv310), Left(yv4010), app(app(ty_Either, cd), ce), cc) -> new_esEs0(yv310, yv4010, cd, ce) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs1(yv311, yv4011, bcd, bce, bcf) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(app(ty_@3, bdf), bdg), bdh), bdc) -> new_esEs1(yv310, yv4010, bdf, bdg, bdh) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(yv310, yv4010, hh, baa, bab) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(yv312, yv4012, fd, ff, fg) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(yv311, yv4011, gg, gh, ha) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(ty_@2, bch), bda)) -> new_esEs3(yv311, yv4011, bch, bda) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(ty_@2, beb), bec), bdc) -> new_esEs3(yv310, yv4010, beb, bec) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(ty_@2, ga), gb)) -> new_esEs3(yv312, yv4012, ga, gb) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(ty_@2, hc), hd), gd) -> new_esEs3(yv311, yv4011, hc, hd) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(ty_@2, bad), bae), eh, gd) -> new_esEs3(yv310, yv4010, bad, bae) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(ty_[], bea), bdc) -> new_esEs2(yv310, yv4010, bea) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(ty_[], bcg)) -> new_esEs2(yv311, yv4011, bcg) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(ty_[], fh)) -> new_esEs2(yv312, yv4012, fh) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(ty_[], hb), gd) -> new_esEs2(yv311, yv4011, hb) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(ty_[], bac), eh, gd) -> new_esEs2(yv310, yv4010, bac) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), app(app(ty_Either, bdd), bde), bdc) -> new_esEs0(yv310, yv4010, bdd, bde) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs3(@2(yv310, yv311), @2(yv4010, yv4011), bbh, app(app(ty_Either, bcb), bcc)) -> new_esEs0(yv311, yv4011, bcb, bcc) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, eh, app(app(ty_Either, fb), fc)) -> new_esEs0(yv312, yv4012, fb, fc) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eg, app(app(ty_Either, ge), gf), gd) -> new_esEs0(yv311, yv4011, ge, gf) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 17.46/6.33 17.46/6.33 17.46/6.33 *new_esEs1(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), app(app(ty_Either, hf), hg), eh, gd) -> new_esEs0(yv310, yv4010, hf, hg) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 17.46/6.33 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (17) 17.46/6.33 YES 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (18) 17.46/6.33 Obligation: 17.46/6.33 Q DP problem: 17.46/6.33 The TRS P consists of the following rules: 17.46/6.33 17.46/6.33 new_primMulNat(Succ(yv31100), Succ(yv401000)) -> new_primMulNat(yv31100, Succ(yv401000)) 17.46/6.33 17.46/6.33 R is empty. 17.46/6.33 Q is empty. 17.46/6.33 We have to consider all minimal (P,Q,R)-chains. 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (19) QDPSizeChangeProof (EQUIVALENT) 17.46/6.33 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.46/6.33 17.46/6.33 From the DPs we obtained the following set of size-change graphs: 17.46/6.33 *new_primMulNat(Succ(yv31100), Succ(yv401000)) -> new_primMulNat(yv31100, Succ(yv401000)) 17.46/6.33 The graph contains the following edges 1 > 1, 2 >= 2 17.46/6.33 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (20) 17.46/6.33 YES 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (21) 17.46/6.33 Obligation: 17.46/6.33 Q DP problem: 17.46/6.33 The TRS P consists of the following rules: 17.46/6.33 17.46/6.33 new_listToMaybe(yv41, False, yv22, yv23, :(yv24110, yv24111), ba, bb) -> new_listToMaybe(new_primPlusNat0(yv41, Zero), new_esEs4(@2(yv22, yv23), yv24110, ba, bb), yv22, yv23, yv24111, ba, bb) 17.46/6.33 17.46/6.33 The TRS R consists of the following rules: 17.46/6.33 17.46/6.33 new_esEs7(yv311, yv4011, app(ty_Ratio, cc)) -> new_esEs15(yv311, yv4011, cc) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 17.46/6.33 new_esEs20(yv312, yv4012, ty_Integer) -> new_esEs19(yv312, yv4012) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_@0, bdc) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs23(yv310, yv4010, app(ty_[], bcg)) -> new_esEs17(yv310, yv4010, bcg) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(app(ty_@2, bff), bfg)) -> new_esEs4(yv310, yv4010, bff, bfg) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Double) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Bool) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(app(ty_Either, beg), beh)) -> new_esEs11(yv310, yv4010, beg, beh) 17.46/6.33 new_esEs22(yv310, yv4010, app(app(ty_@2, bab), bac)) -> new_esEs4(yv310, yv4010, bab, bac) 17.46/6.33 new_esEs20(yv312, yv4012, ty_Ordering) -> new_esEs16(yv312, yv4012) 17.46/6.33 new_esEs7(yv311, yv4011, ty_@0) -> new_esEs18(yv311, yv4011) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(ty_Ratio, bbc)) -> new_esEs15(yv310, yv4010, bbc) 17.46/6.33 new_esEs22(yv310, yv4010, app(app(ty_Either, hc), hd)) -> new_esEs11(yv310, yv4010, hc, hd) 17.46/6.33 new_esEs18(@0, @0) -> True 17.46/6.33 new_esEs22(yv310, yv4010, app(app(app(ty_@3, he), hf), hg)) -> new_esEs12(yv310, yv4010, he, hf, hg) 17.46/6.33 new_esEs16(GT, GT) -> True 17.46/6.33 new_esEs14(Double(yv310, yv311), Double(yv4010, yv4011)) -> new_esEs5(new_sr(yv310, yv4011), new_sr(yv311, yv4010)) 17.46/6.33 new_esEs10(False, True) -> False 17.46/6.33 new_esEs10(True, False) -> False 17.46/6.33 new_esEs23(yv310, yv4010, ty_Char) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_asAs(True, yv56) -> yv56 17.46/6.33 new_primEqInt(Pos(Succ(yv3100)), Pos(Zero)) -> False 17.46/6.33 new_primEqInt(Pos(Zero), Pos(Succ(yv40100))) -> False 17.46/6.33 new_esEs6(Char(yv310), Char(yv4010)) -> new_primEqNat0(yv310, yv4010) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Float, bdc) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_esEs21(yv311, yv4011, app(ty_Ratio, gf)) -> new_esEs15(yv311, yv4011, gf) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Char) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Bool) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Float) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_primEqNat0(Succ(yv3100), Succ(yv40100)) -> new_primEqNat0(yv3100, yv40100) 17.46/6.33 new_esEs21(yv311, yv4011, ty_Char) -> new_esEs6(yv311, yv4011) 17.46/6.33 new_esEs16(EQ, GT) -> False 17.46/6.33 new_esEs16(GT, EQ) -> False 17.46/6.33 new_esEs8(yv310, yv4010, app(ty_Maybe, cg)) -> new_esEs9(yv310, yv4010, cg) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Ordering) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(ty_[], bbd)) -> new_esEs17(yv310, yv4010, bbd) 17.46/6.33 new_esEs8(yv310, yv4010, app(ty_[], dg)) -> new_esEs17(yv310, yv4010, dg) 17.46/6.33 new_primMulNat0(Zero, Zero) -> Zero 17.46/6.33 new_esEs11(Left(yv310), Right(yv4010), bee, bdc) -> False 17.46/6.33 new_esEs11(Right(yv310), Left(yv4010), bee, bdc) -> False 17.46/6.33 new_esEs17(:(yv310, yv311), :(yv4010, yv4011), bbg) -> new_asAs(new_esEs23(yv310, yv4010, bbg), new_esEs17(yv311, yv4011, bbg)) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Float) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(app(ty_@2, bbe), bbf)) -> new_esEs4(yv310, yv4010, bbe, bbf) 17.46/6.33 new_esEs22(yv310, yv4010, app(ty_Maybe, hb)) -> new_esEs9(yv310, yv4010, hb) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Double) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(app(app(ty_@3, bdf), bdg), bdh), bdc) -> new_esEs12(yv310, yv4010, bdf, bdg, bdh) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Char) -> new_esEs6(yv311, yv4011) 17.46/6.33 new_esEs7(yv311, yv4011, app(app(ty_@2, ce), cf)) -> new_esEs4(yv311, yv4011, ce, cf) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Integer, bdc) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_esEs4(@2(yv310, yv311), @2(yv4010, yv4011), bc, bd) -> new_asAs(new_esEs8(yv310, yv4010, bc), new_esEs7(yv311, yv4011, bd)) 17.46/6.33 new_esEs7(yv311, yv4011, app(ty_[], cd)) -> new_esEs17(yv311, yv4011, cd) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_primEqNat0(Succ(yv3100), Zero) -> False 17.46/6.33 new_primEqNat0(Zero, Succ(yv40100)) -> False 17.46/6.33 new_esEs20(yv312, yv4012, app(ty_[], fd)) -> new_esEs17(yv312, yv4012, fd) 17.46/6.33 new_esEs23(yv310, yv4010, ty_@0) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Char) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_esEs24(yv311, yv4011, ty_Integer) -> new_esEs19(yv311, yv4011) 17.46/6.33 new_esEs23(yv310, yv4010, app(ty_Maybe, bbh)) -> new_esEs9(yv310, yv4010, bbh) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Double) -> new_esEs14(yv311, yv4011) 17.46/6.33 new_esEs8(yv310, yv4010, app(app(ty_@2, dh), ea)) -> new_esEs4(yv310, yv4010, dh, ea) 17.46/6.33 new_esEs21(yv311, yv4011, ty_Bool) -> new_esEs10(yv311, yv4011) 17.46/6.33 new_esEs21(yv311, yv4011, ty_Int) -> new_esEs5(yv311, yv4011) 17.46/6.33 new_esEs16(LT, EQ) -> False 17.46/6.33 new_esEs16(EQ, LT) -> False 17.46/6.33 new_esEs25(yv310, yv4010, ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(ty_Maybe, bdb), bdc) -> new_esEs9(yv310, yv4010, bdb) 17.46/6.33 new_esEs20(yv312, yv4012, ty_Double) -> new_esEs14(yv312, yv4012) 17.46/6.33 new_esEs21(yv311, yv4011, app(ty_[], gg)) -> new_esEs17(yv311, yv4011, gg) 17.46/6.33 new_primEqInt(Neg(Succ(yv3100)), Neg(Zero)) -> False 17.46/6.33 new_primEqInt(Neg(Zero), Neg(Succ(yv40100))) -> False 17.46/6.33 new_esEs20(yv312, yv4012, ty_Char) -> new_esEs6(yv312, yv4012) 17.46/6.33 new_esEs20(yv312, yv4012, ty_Bool) -> new_esEs10(yv312, yv4012) 17.46/6.33 new_esEs20(yv312, yv4012, ty_Int) -> new_esEs5(yv312, yv4012) 17.46/6.33 new_esEs20(yv312, yv4012, app(app(ty_@2, ff), fg)) -> new_esEs4(yv312, yv4012, ff, fg) 17.46/6.33 new_primEqInt(Pos(Succ(yv3100)), Pos(Succ(yv40100))) -> new_primEqNat0(yv3100, yv40100) 17.46/6.33 new_esEs20(yv312, yv4012, app(ty_Ratio, fc)) -> new_esEs15(yv312, yv4012, fc) 17.46/6.33 new_esEs15(:%(yv310, yv311), :%(yv4010, yv4011), bfh) -> new_asAs(new_esEs25(yv310, yv4010, bfh), new_esEs24(yv311, yv4011, bfh)) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Ordering) -> new_esEs16(yv311, yv4011) 17.46/6.33 new_sr(Pos(yv3110), Neg(yv40100)) -> Neg(new_primMulNat0(yv3110, yv40100)) 17.46/6.33 new_sr(Neg(yv3110), Pos(yv40100)) -> Neg(new_primMulNat0(yv3110, yv40100)) 17.46/6.33 new_primPlusNat1(Succ(yv5700), Succ(yv4010000)) -> Succ(Succ(new_primPlusNat1(yv5700, yv4010000))) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(app(ty_Either, bdd), bde), bdc) -> new_esEs11(yv310, yv4010, bdd, bde) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(ty_Maybe, bef)) -> new_esEs9(yv310, yv4010, bef) 17.46/6.33 new_primEqInt(Pos(Succ(yv3100)), Neg(yv4010)) -> False 17.46/6.33 new_primEqInt(Neg(Succ(yv3100)), Pos(yv4010)) -> False 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_esEs9(Nothing, Just(yv4010), bad) -> False 17.46/6.33 new_esEs9(Just(yv310), Nothing, bad) -> False 17.46/6.33 new_esEs22(yv310, yv4010, ty_Float) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Double) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_esEs16(EQ, EQ) -> True 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_@0) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Bool) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs9(Nothing, Nothing, bad) -> True 17.46/6.33 new_esEs23(yv310, yv4010, app(app(ty_Either, bca), bcb)) -> new_esEs11(yv310, yv4010, bca, bcb) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Bool) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_esEs7(yv311, yv4011, app(ty_Maybe, be)) -> new_esEs9(yv311, yv4011, be) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Double) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(ty_Maybe, bae)) -> new_esEs9(yv310, yv4010, bae) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Float) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_sr(Neg(yv3110), Neg(yv40100)) -> Pos(new_primMulNat0(yv3110, yv40100)) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Char) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_esEs23(yv310, yv4010, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs12(yv310, yv4010, bcc, bcd, bce) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Int) -> new_esEs5(yv311, yv4011) 17.46/6.33 new_esEs17([], [], bbg) -> True 17.46/6.33 new_esEs21(yv311, yv4011, ty_Double) -> new_esEs14(yv311, yv4011) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Ordering) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Bool) -> new_esEs10(yv311, yv4011) 17.46/6.33 new_esEs21(yv311, yv4011, app(app(ty_@2, gh), ha)) -> new_esEs4(yv311, yv4011, gh, ha) 17.46/6.33 new_primEqInt(Pos(Zero), Neg(Succ(yv40100))) -> False 17.46/6.33 new_primEqInt(Neg(Zero), Pos(Succ(yv40100))) -> False 17.46/6.33 new_esEs16(LT, LT) -> True 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(ty_[], bfe)) -> new_esEs17(yv310, yv4010, bfe) 17.46/6.33 new_esEs10(False, False) -> True 17.46/6.33 new_esEs21(yv311, yv4011, ty_Float) -> new_esEs13(yv311, yv4011) 17.46/6.33 new_primEqInt(Neg(Succ(yv3100)), Neg(Succ(yv40100))) -> new_primEqNat0(yv3100, yv40100) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Integer) -> new_esEs19(yv311, yv4011) 17.46/6.33 new_esEs10(True, True) -> True 17.46/6.33 new_primPlusNat0(Succ(yv570), yv401000) -> Succ(Succ(new_primPlusNat1(yv570, yv401000))) 17.46/6.33 new_esEs21(yv311, yv4011, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs12(yv311, yv4011, gc, gd, ge) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Char) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_primPlusNat1(Zero, Zero) -> Zero 17.46/6.33 new_primMulNat0(Succ(yv31100), Zero) -> Zero 17.46/6.33 new_primMulNat0(Zero, Succ(yv401000)) -> Zero 17.46/6.33 new_esEs22(yv310, yv4010, app(ty_[], baa)) -> new_esEs17(yv310, yv4010, baa) 17.46/6.33 new_sr(Pos(yv3110), Pos(yv40100)) -> Pos(new_primMulNat0(yv3110, yv40100)) 17.46/6.33 new_primPlusNat0(Zero, yv401000) -> Succ(yv401000) 17.46/6.33 new_esEs21(yv311, yv4011, app(ty_Maybe, fh)) -> new_esEs9(yv311, yv4011, fh) 17.46/6.33 new_esEs21(yv311, yv4011, ty_Ordering) -> new_esEs16(yv311, yv4011) 17.46/6.33 new_esEs8(yv310, yv4010, app(ty_Ratio, df)) -> new_esEs15(yv310, yv4010, df) 17.46/6.33 new_esEs21(yv311, yv4011, app(app(ty_Either, ga), gb)) -> new_esEs11(yv311, yv4011, ga, gb) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Ordering) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs8(yv310, yv4010, app(app(ty_Either, da), db)) -> new_esEs11(yv310, yv4010, da, db) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(app(ty_Either, baf), bag)) -> new_esEs11(yv310, yv4010, baf, bag) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Bool) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, ty_Double) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs12(yv310, yv4010, bfa, bfb, bfc) 17.46/6.33 new_primMulNat0(Succ(yv31100), Succ(yv401000)) -> new_primPlusNat0(new_primMulNat0(yv31100, Succ(yv401000)), yv401000) 17.46/6.33 new_esEs25(yv310, yv4010, ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_esEs22(yv310, yv4010, ty_@0) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs12(yv310, yv4010, bah, bba, bbb) 17.46/6.33 new_esEs8(yv310, yv4010, app(app(app(ty_@3, dc), dd), de)) -> new_esEs12(yv310, yv4010, dc, dd, de) 17.46/6.33 new_esEs24(yv311, yv4011, ty_Int) -> new_esEs5(yv311, yv4011) 17.46/6.33 new_esEs16(LT, GT) -> False 17.46/6.33 new_esEs16(GT, LT) -> False 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Float) -> new_esEs13(yv310, yv4010) 17.46/6.33 new_esEs22(yv310, yv4010, app(ty_Ratio, hh)) -> new_esEs15(yv310, yv4010, hh) 17.46/6.33 new_esEs20(yv312, yv4012, ty_Float) -> new_esEs13(yv312, yv4012) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Ordering) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs20(yv312, yv4012, ty_@0) -> new_esEs18(yv312, yv4012) 17.46/6.33 new_primPlusNat1(Succ(yv5700), Zero) -> Succ(yv5700) 17.46/6.33 new_primPlusNat1(Zero, Succ(yv4010000)) -> Succ(yv4010000) 17.46/6.33 new_esEs12(@3(yv310, yv311, yv312), @3(yv4010, yv4011, yv4012), eb, ec, ed) -> new_asAs(new_esEs22(yv310, yv4010, eb), new_asAs(new_esEs21(yv311, yv4011, ec), new_esEs20(yv312, yv4012, ed))) 17.46/6.33 new_esEs7(yv311, yv4011, ty_Float) -> new_esEs13(yv311, yv4011) 17.46/6.33 new_esEs13(Float(yv310, yv311), Float(yv4010, yv4011)) -> new_esEs5(new_sr(yv310, yv4011), new_sr(yv311, yv4010)) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Ordering, bdc) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Char, bdc) -> new_esEs6(yv310, yv4010) 17.46/6.33 new_esEs5(yv31, yv401) -> new_primEqInt(yv31, yv401) 17.46/6.33 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 17.46/6.33 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 17.46/6.33 new_esEs23(yv310, yv4010, app(ty_Ratio, bcf)) -> new_esEs15(yv310, yv4010, bcf) 17.46/6.33 new_primEqNat0(Zero, Zero) -> True 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Int, bdc) -> new_esEs5(yv310, yv4010) 17.46/6.33 new_esEs20(yv312, yv4012, app(ty_Maybe, ee)) -> new_esEs9(yv312, yv4012, ee) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(ty_Ratio, bea), bdc) -> new_esEs15(yv310, yv4010, bea) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_@0) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs22(yv310, yv4010, ty_Ordering) -> new_esEs16(yv310, yv4010) 17.46/6.33 new_esEs19(Integer(yv310), Integer(yv4010)) -> new_primEqInt(yv310, yv4010) 17.46/6.33 new_asAs(False, yv56) -> False 17.46/6.33 new_esEs17(:(yv310, yv311), [], bbg) -> False 17.46/6.33 new_esEs17([], :(yv4010, yv4011), bbg) -> False 17.46/6.33 new_esEs20(yv312, yv4012, app(app(ty_Either, ef), eg)) -> new_esEs11(yv312, yv4012, ef, eg) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(ty_[], beb), bdc) -> new_esEs17(yv310, yv4010, beb) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), app(app(ty_@2, bec), bed), bdc) -> new_esEs4(yv310, yv4010, bec, bed) 17.46/6.33 new_esEs9(Just(yv310), Just(yv4010), ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_esEs7(yv311, yv4011, app(app(ty_Either, bf), bg)) -> new_esEs11(yv311, yv4011, bf, bg) 17.46/6.33 new_esEs21(yv311, yv4011, ty_Integer) -> new_esEs19(yv311, yv4011) 17.46/6.33 new_esEs11(Right(yv310), Right(yv4010), bee, app(ty_Ratio, bfd)) -> new_esEs15(yv310, yv4010, bfd) 17.46/6.33 new_esEs8(yv310, yv4010, ty_Integer) -> new_esEs19(yv310, yv4010) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Double, bdc) -> new_esEs14(yv310, yv4010) 17.46/6.33 new_esEs7(yv311, yv4011, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs12(yv311, yv4011, bh, ca, cb) 17.46/6.33 new_esEs8(yv310, yv4010, ty_@0) -> new_esEs18(yv310, yv4010) 17.46/6.33 new_esEs21(yv311, yv4011, ty_@0) -> new_esEs18(yv311, yv4011) 17.46/6.33 new_esEs11(Left(yv310), Left(yv4010), ty_Bool, bdc) -> new_esEs10(yv310, yv4010) 17.46/6.33 new_esEs20(yv312, yv4012, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs12(yv312, yv4012, eh, fa, fb) 17.46/6.33 new_esEs23(yv310, yv4010, app(app(ty_@2, bch), bda)) -> new_esEs4(yv310, yv4010, bch, bda) 17.46/6.33 new_esEs23(yv310, yv4010, ty_Int) -> new_esEs5(yv310, yv4010) 17.46/6.33 17.46/6.33 The set Q consists of the following terms: 17.46/6.33 17.46/6.33 new_esEs22(x0, x1, ty_Integer) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 17.46/6.33 new_primEqNat0(Succ(x0), Zero) 17.46/6.33 new_esEs9(Nothing, Nothing, x0) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_@0) 17.46/6.33 new_esEs20(x0, x1, ty_Ordering) 17.46/6.33 new_esEs20(x0, x1, app(ty_[], x2)) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Bool) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 17.46/6.33 new_primMulNat0(Zero, Succ(x0)) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 17.46/6.33 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_primMulNat0(Zero, Zero) 17.46/6.33 new_primPlusNat1(Zero, Zero) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Char) 17.46/6.33 new_sr(Neg(x0), Neg(x1)) 17.46/6.33 new_primPlusNat1(Succ(x0), Zero) 17.46/6.33 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 17.46/6.33 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 17.46/6.33 new_esEs20(x0, x1, ty_Int) 17.46/6.33 new_esEs21(x0, x1, ty_Double) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Ordering, x2) 17.46/6.33 new_esEs23(x0, x1, ty_Bool) 17.46/6.33 new_primEqInt(Pos(Zero), Pos(Zero)) 17.46/6.33 new_esEs7(x0, x1, ty_Integer) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(ty_[], x2), x3) 17.46/6.33 new_esEs21(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs8(x0, x1, ty_Char) 17.46/6.33 new_esEs21(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_esEs23(x0, x1, app(ty_[], x2)) 17.46/6.33 new_esEs25(x0, x1, ty_Integer) 17.46/6.33 new_esEs16(EQ, EQ) 17.46/6.33 new_esEs20(x0, x1, ty_Float) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 17.46/6.33 new_sr(Pos(x0), Neg(x1)) 17.46/6.33 new_sr(Neg(x0), Pos(x1)) 17.46/6.33 new_esEs7(x0, x1, ty_@0) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Float, x2) 17.46/6.33 new_primEqInt(Neg(Zero), Neg(Zero)) 17.46/6.33 new_esEs8(x0, x1, ty_Bool) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 17.46/6.33 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Ordering) 17.46/6.33 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs15(:%(x0, x1), :%(x2, x3), x4) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Integer, x2) 17.46/6.33 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 17.46/6.33 new_esEs8(x0, x1, ty_Ordering) 17.46/6.33 new_esEs14(Double(x0, x1), Double(x2, x3)) 17.46/6.33 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Integer) 17.46/6.33 new_primPlusNat1(Zero, Succ(x0)) 17.46/6.33 new_asAs(False, x0) 17.46/6.33 new_esEs8(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs10(True, True) 17.46/6.33 new_esEs7(x0, x1, ty_Char) 17.46/6.33 new_esEs21(x0, x1, ty_Ordering) 17.46/6.33 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs24(x0, x1, ty_Integer) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Integer) 17.46/6.33 new_esEs19(Integer(x0), Integer(x1)) 17.46/6.33 new_primEqInt(Pos(Zero), Neg(Zero)) 17.46/6.33 new_primEqInt(Neg(Zero), Pos(Zero)) 17.46/6.33 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 17.46/6.33 new_esEs22(x0, x1, ty_Ordering) 17.46/6.33 new_esEs20(x0, x1, ty_Char) 17.46/6.33 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Ordering) 17.46/6.33 new_esEs8(x0, x1, ty_Integer) 17.46/6.33 new_esEs6(Char(x0), Char(x1)) 17.46/6.33 new_esEs23(x0, x1, ty_@0) 17.46/6.33 new_primMulNat0(Succ(x0), Zero) 17.46/6.33 new_esEs20(x0, x1, ty_Double) 17.46/6.33 new_esEs21(x0, x1, ty_Integer) 17.46/6.33 new_esEs20(x0, x1, ty_Bool) 17.46/6.33 new_esEs17([], :(x0, x1), x2) 17.46/6.33 new_primEqNat0(Zero, Succ(x0)) 17.46/6.33 new_esEs23(x0, x1, ty_Float) 17.46/6.33 new_esEs7(x0, x1, ty_Bool) 17.46/6.33 new_sr(Pos(x0), Pos(x1)) 17.46/6.33 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_esEs13(Float(x0, x1), Float(x2, x3)) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Double) 17.46/6.33 new_esEs23(x0, x1, ty_Int) 17.46/6.33 new_esEs9(Just(x0), Nothing, x1) 17.46/6.33 new_esEs7(x0, x1, ty_Ordering) 17.46/6.33 new_esEs22(x0, x1, ty_Int) 17.46/6.33 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 17.46/6.33 new_esEs16(LT, GT) 17.46/6.33 new_esEs16(GT, LT) 17.46/6.33 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) 17.46/6.33 new_esEs23(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs7(x0, x1, ty_Double) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 17.46/6.33 new_esEs23(x0, x1, ty_Char) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_@0, x2) 17.46/6.33 new_esEs25(x0, x1, ty_Int) 17.46/6.33 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs8(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_esEs23(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 17.46/6.33 new_esEs21(x0, x1, ty_@0) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Float) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 17.46/6.33 new_esEs17(:(x0, x1), [], x2) 17.46/6.33 new_esEs22(x0, x1, app(ty_[], x2)) 17.46/6.33 new_esEs8(x0, x1, app(ty_[], x2)) 17.46/6.33 new_esEs5(x0, x1) 17.46/6.33 new_primMulNat0(Succ(x0), Succ(x1)) 17.46/6.33 new_esEs21(x0, x1, ty_Char) 17.46/6.33 new_esEs21(x0, x1, ty_Bool) 17.46/6.33 new_esEs23(x0, x1, ty_Double) 17.46/6.33 new_esEs20(x0, x1, ty_@0) 17.46/6.33 new_esEs7(x0, x1, ty_Int) 17.46/6.33 new_esEs8(x0, x1, ty_Double) 17.46/6.33 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 17.46/6.33 new_primPlusNat0(Succ(x0), x1) 17.46/6.33 new_esEs7(x0, x1, ty_Float) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 17.46/6.33 new_esEs21(x0, x1, app(ty_[], x2)) 17.46/6.33 new_esEs18(@0, @0) 17.46/6.33 new_esEs20(x0, x1, ty_Integer) 17.46/6.33 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 17.46/6.33 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 17.46/6.33 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 17.46/6.33 new_esEs10(False, False) 17.46/6.33 new_esEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 17.46/6.33 new_primEqNat0(Zero, Zero) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Char) 17.46/6.33 new_esEs21(x0, x1, ty_Int) 17.46/6.33 new_esEs16(LT, LT) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Float) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Bool) 17.46/6.33 new_esEs7(x0, x1, app(ty_[], x2)) 17.46/6.33 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Double) 17.46/6.33 new_esEs22(x0, x1, ty_Float) 17.46/6.33 new_esEs20(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs22(x0, x1, ty_@0) 17.46/6.33 new_primPlusNat1(Succ(x0), Succ(x1)) 17.46/6.33 new_esEs24(x0, x1, ty_Int) 17.46/6.33 new_esEs11(Left(x0), Right(x1), x2, x3) 17.46/6.33 new_esEs11(Right(x0), Left(x1), x2, x3) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Int, x2) 17.46/6.33 new_primEqNat0(Succ(x0), Succ(x1)) 17.46/6.33 new_esEs8(x0, x1, ty_Int) 17.46/6.33 new_esEs22(x0, x1, ty_Bool) 17.46/6.33 new_esEs16(EQ, GT) 17.46/6.33 new_esEs16(GT, EQ) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 17.46/6.33 new_esEs9(Nothing, Just(x0), x1) 17.46/6.33 new_esEs17([], [], x0) 17.46/6.33 new_primPlusNat0(Zero, x0) 17.46/6.33 new_esEs20(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(ty_[], x2)) 17.46/6.33 new_esEs21(x0, x1, ty_Float) 17.46/6.33 new_esEs7(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_Int) 17.46/6.33 new_esEs7(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs23(x0, x1, ty_Ordering) 17.46/6.33 new_esEs8(x0, x1, ty_@0) 17.46/6.33 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Bool, x2) 17.46/6.33 new_esEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 17.46/6.33 new_esEs22(x0, x1, ty_Double) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Char, x2) 17.46/6.33 new_asAs(True, x0) 17.46/6.33 new_esEs10(False, True) 17.46/6.33 new_esEs10(True, False) 17.46/6.33 new_esEs22(x0, x1, ty_Char) 17.46/6.33 new_esEs9(Just(x0), Just(x1), ty_@0) 17.46/6.33 new_esEs11(Left(x0), Left(x1), ty_Double, x2) 17.46/6.33 new_esEs16(LT, EQ) 17.46/6.33 new_esEs16(EQ, LT) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) 17.46/6.33 new_esEs22(x0, x1, app(ty_Maybe, x2)) 17.46/6.33 new_esEs17(:(x0, x1), :(x2, x3), x4) 17.46/6.33 new_esEs11(Right(x0), Right(x1), x2, ty_Int) 17.46/6.33 new_esEs22(x0, x1, app(ty_Ratio, x2)) 17.46/6.33 new_esEs23(x0, x1, ty_Integer) 17.46/6.33 new_esEs16(GT, GT) 17.46/6.33 new_esEs8(x0, x1, ty_Float) 17.46/6.33 17.46/6.33 We have to consider all minimal (P,Q,R)-chains. 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (22) QDPSizeChangeProof (EQUIVALENT) 17.46/6.33 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.46/6.33 17.46/6.33 From the DPs we obtained the following set of size-change graphs: 17.46/6.33 *new_listToMaybe(yv41, False, yv22, yv23, :(yv24110, yv24111), ba, bb) -> new_listToMaybe(new_primPlusNat0(yv41, Zero), new_esEs4(@2(yv22, yv23), yv24110, ba, bb), yv22, yv23, yv24111, ba, bb) 17.46/6.33 The graph contains the following edges 3 >= 3, 4 >= 4, 5 > 5, 6 >= 6, 7 >= 7 17.46/6.33 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (23) 17.46/6.33 YES 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (24) 17.46/6.33 Obligation: 17.46/6.33 Q DP problem: 17.46/6.33 The TRS P consists of the following rules: 17.46/6.33 17.46/6.33 new_primEqNat(Succ(yv3100), Succ(yv40100)) -> new_primEqNat(yv3100, yv40100) 17.46/6.33 17.46/6.33 R is empty. 17.46/6.33 Q is empty. 17.46/6.33 We have to consider all minimal (P,Q,R)-chains. 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (25) QDPSizeChangeProof (EQUIVALENT) 17.46/6.33 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.46/6.33 17.46/6.33 From the DPs we obtained the following set of size-change graphs: 17.46/6.33 *new_primEqNat(Succ(yv3100), Succ(yv40100)) -> new_primEqNat(yv3100, yv40100) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2 17.46/6.33 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (26) 17.46/6.33 YES 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (27) 17.46/6.33 Obligation: 17.46/6.33 Q DP problem: 17.46/6.33 The TRS P consists of the following rules: 17.46/6.33 17.46/6.33 new_primPlusNat(Succ(yv5700), Succ(yv4010000)) -> new_primPlusNat(yv5700, yv4010000) 17.46/6.33 17.46/6.33 R is empty. 17.46/6.33 Q is empty. 17.46/6.33 We have to consider all minimal (P,Q,R)-chains. 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (28) QDPSizeChangeProof (EQUIVALENT) 17.46/6.33 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.46/6.33 17.46/6.33 From the DPs we obtained the following set of size-change graphs: 17.46/6.33 *new_primPlusNat(Succ(yv5700), Succ(yv4010000)) -> new_primPlusNat(yv5700, yv4010000) 17.46/6.33 The graph contains the following edges 1 > 1, 2 > 2 17.46/6.33 17.46/6.33 17.46/6.33 ---------------------------------------- 17.46/6.33 17.46/6.33 (29) 17.46/6.33 YES 17.62/6.43 EOF