code
stringlengths
5
1.03M
repo_name
stringlengths
5
90
path
stringlengths
4
158
license
stringclasses
15 values
size
int64
5
1.03M
n_ast_errors
int64
0
53.9k
ast_max_depth
int64
2
4.17k
n_whitespaces
int64
0
365k
n_ast_nodes
int64
3
317k
n_ast_terminals
int64
1
171k
n_ast_nonterminals
int64
1
146k
loc
int64
-1
37.3k
cycloplexity
int64
-1
1.31k
module Header where import Data.Monoid import qualified Data.ByteString.Lazy as BL hiding (pack) import qualified Data.ByteString.Lazy.Char8 as BL import Data.Int import Types import Network.URI import Data.Char -- Outgoing headers: -- messageLength = 10 isItZipped = True buildHeader :: Int -> Bool -> Int64 -> String -> BL.ByteString buildHeader code isItZipped messageLength lastModified = header code isItZipped messageLength lastModified -- Build a header with correct content length header :: Int -> Bool -> Int64 -> String -> BL.ByteString header code isItZipped messageLength lastModified | isItZipped = mconcat [ status, plainText, contentLength, mLength, modified, gzipped, endHeader ] | otherwise = mconcat [ status, plainText, contentLength, mLength, modified, endHeader ] where status = statusCode code contentLength = BL.pack "\r\nContent-Length: " mLength = BL.pack . show $ messageLength gzipped = BL.pack "\r\nContent-Encoding: gzip" plainText = BL.pack "\r\nContent-Type: text/plain; charset=\"Shift_JIS\"" modified = if lastModified == "" then BL.pack "" else BL.pack ("\r\nLast-Modified: " ++ lastModified) endHeader = BL.pack "\r\n\r\n" statusCode :: Int -> BL.ByteString statusCode code = BL.pack $ check code where check code | code == 200 = "HTTP/1.0 200 OK" | code == 401 = "HTTP/1.0 401 Unathorized" | code == 400 = "HTTP/1.0 400 Bad Request" | code == 404 = "HTTP/1.0 404 Not Found" | otherwise = "HTTP/1.0 403 Forbidden" -- Incoming headers: -- -- Parses the header sent by the user, looks for the GET data parseHeader :: String -> Header parseHeader = (parseHead 1) . lines where parseHead :: Int -> [String] -> Header parseHead i [] = Header "meow" parseHead i (h:hs) | i > 100 = parseHead (i + 1) [] | take 3 h == "GET" = checkForEnd 1 h hs | otherwise = parseHead (i + 1) hs checkForEnd i headerGet [] = Header "asdf" checkForEnd i headerGet (h:hs) | i > 100 = Header "lulz" | h == ("\r\n\r\n") = Header headerGet | h == ("\r\n") = Header headerGet | h == ("\r") = Header headerGet | h == ("\n") = Header headerGet | otherwise = checkForEnd (i + 1) headerGet hs parseHeaderStream headerIn = HeaderNew getRequestQuery getGzipFlag getUserAgent getDoesItEnd where stream :: [String] stream = headerStream headerIn -- Escape the Url Encoding also! getRequestQuery :: (String, String) getRequestQuery = parseRequestQuery stream getGzipFlag :: Bool getGzipFlag = parseGzipFlag stream getUserAgent :: Maybe String getUserAgent = parseUserAgent stream getDoesItEnd :: Bool getDoesItEnd = parseDoesItEnd stream parseRequestQuery :: [String] -> (String, String) parseRequestQuery [] = ("asdf", "asdf") parseRequestQuery (x:xs) | length (words x) < 1 = parseRequestQuery xs | "GET" == s = (s, unEscapeString x) | "HEAD" == s = (s, unEscapeString x) | "POST" == s = (s, unEscapeString x) | "PUT" == s = (s, unEscapeString x) | "DELETE" == s = (s, unEscapeString x) | "TRACE" == s = (s, unEscapeString x) | "CONNECT" == s = (s, unEscapeString x) | otherwise = parseRequestQuery xs where s = head $ words x methods :: [String] methods = ["GET", "HEAD", "POST", "PUT", "DELETE", "TRACE", "CONNECT"] parseGzipFlag :: [String] -> Bool parseGzipFlag [] = False parseGzipFlag (x:xs) | ("accept-encoding" `elem` s) && ("gzip" `elem` s) = True | otherwise = parseGzipFlag xs where -- remove commas, then make everything lowercase, and finally split by word s = words $ removePunctuation trimmed "" -- take only 100 chars to be parsed trimmed = take 100 x -- recursive function to remove punctuation and replace them with a space removePunctuation [] s = reverse s removePunctuation (z:zs) s | z == ',' = removePunctuation zs (' ' : s) | z == ';' = removePunctuation zs (' ' : s) | z == ':' = removePunctuation zs (' ' : s) | otherwise = removePunctuation zs ((toLower z):s) parseUserAgent :: [String] -> Maybe String parseUserAgent [] = Nothing parseUserAgent (x:xs) | "User-Agent:" `elem` s = Just x | otherwise = parseUserAgent xs where s = words x parseDoesItEnd :: [String] -> Bool parseDoesItEnd [] = False parseDoesItEnd (x:xs) | x == "\r" = True | otherwise = parseDoesItEnd xs -- Gets a header without waiting to be blocked. It should work with a stream of header info headerStream :: String -> [String] headerStream headerIn = getHeaderStream (lines $ headerIn) [] 0 where getHeaderStream [] m _ = m getHeaderStream (h:hs) m i | i > 50 = m | h == "\r" = (h:m) | otherwise = getHeaderStream hs (h:m) i
Cipherwraith/Rokka
Header.hs
gpl-2.0
4,760
0
12
1,063
1,578
811
767
106
2
import Control.Monad.Free data DSL next = One String String next | Two Int Int (Int -> next) | End deriving (Functor) type P = Free DSL one :: String -> String -> P () one s r = liftF $ One s r () two :: Int -> Int -> P Int two x y = liftF $ Two x y id end :: P () end = liftF End program :: P () program = do x <- two 2 3 one "2 + 3 is " (show x) end liftF :: (Functor f) => f r -> Free f r liftF command = Impure (fmap Pure command) showProgram :: (Show r) => P r -> String showProgram (Impure (One a b x)) = "One " ++ show a ++ ", " ++ show b ++ "\r\n" ++ showProgram x showProgram (Impure (Two a b x)) = "Two " ++ show a ++ ", " ++ show b ++ "\r\n" ++ showProgram (x (a + b)) showProgram (Impure End) = "done\r\n" showProgram (Pure r) = "return " ++ show r ++ "\r\n" interpret :: (Show b) => P b -> IO () interpret (Impure (One a b x)) = print (a ++ b) >> interpret x interpret (Impure (Two a b x)) = interpret (x (a + b)) interpret (Impure End) = print "End" main :: IO () main = undefined
csierra/didactic-upgrade-monads
free.hs
gpl-2.0
1,027
2
10
264
561
278
283
32
1
module BlastItWithPiss.ProxyReader (filenameIsSocks ,parseProxyFile ,readProxyFile ) where import Import import BlastItWithPiss.Blast import qualified Data.Text as T import qualified Data.Text.IO as TIO filenameIsSocks :: String -> Bool filenameIsSocks fname = "socks" `isInfixOf` map toLower fname parseProxyFile :: Bool -> Text -> [Either Text BlastProxy] parseProxyFile socks t = map (\ip -> case readBlastProxy socks (takeWhile (\c -> c /= '|' && c /= '#') $ T.unpack ip) of Nothing -> Left ip Just p -> Right p) $ filter (\x -> not (T.null x) && not (T.all isSpace x)) $ T.lines t readProxyFile :: Bool -> FilePath -> IO [Either Text BlastProxy] readProxyFile socks f = do fromIOException (return []) $ do withFile f ReadMode $ \h -> do hSetEncoding h utf8 hSetNewlineMode h universalNewlineMode parseProxyFile socks <$> TIO.hGetContents h
exbb2/BlastItWithPiss
src/BlastItWithPiss/ProxyReader.hs
gpl-3.0
965
0
19
249
329
167
162
27
2
module Matrix where import Foreign.C.Types import Text.Printf -- | Point2 stores a point in 2D space. type Point2 = (CDouble, CDouble) -- | Add an offset to a point. addPt :: Point2 -> Point2 -> Point2 addPt (x, y) (x', y') = (x+x', y+y') -- | Invert a point around the origin. negPt :: Point2 -> Point2 negPt (x, y) = (-x, -y) -- | Matrix3 stores what would be a 3*3 matrix, with the bottom row fixed as -- the values (0, 0, 1). This allows the matrix to be used as a transformation -- matrix in a homogeneous coordinate system, including stacking transforms by -- multiplying the matrices. It does of course exclude the possibility -- of perspective transforms, but since we're only in 2D that doesn't matter -- anyway. newtype Matrix3 = Matrix3 ( (CDouble, CDouble, CDouble) , (CDouble, CDouble, CDouble) ) deriving (Eq, Ord) instance Show Matrix3 where show (Matrix3 ((a,b,c), (d,e,f))) = let [a',b',c',d',e',f'] = map realToFrac [a,b,c,d,e,f] :: [Double] in printf "\n\t[[%6g, %6g, %6g]\n\t [%6g, %6g, %6g]]" a' b' c' d' e' f' -- | Multiply two Matrix3 values. (.*) :: Matrix3 -> Matrix3 -> Matrix3 (Matrix3 ((a,b,c), (d,e,f))) .* (Matrix3 ((k,l,m), (n,o,p))) = Matrix3 ( (a*k + b*n, a*l + b*o, a*m + b*p + c) , (d*k + e*n, d*l + e*o, d*m + e*p + f) ) -- | Multiply the matrix by a point. The point will be extended to a 3*1 matrix -- by appending 1 as the last element (homogeneous coordinates). (*.) :: Matrix3 -> Point2 -> Point2 (Matrix3 ((a,b,c), (d,e,f))) *. (x,y) = (a*x + b*y + c, d*x + e*y + f) -- | The identity matrix. idMat :: Matrix3 idMat = Matrix3 ((1, 0, 0), (0, 1, 0)) -- | A matrix that scales a point by a given factor in each dimension. scaleMat :: CDouble -> CDouble -> Matrix3 scaleMat x y = Matrix3 ((x, 0, 0), (0, y, 0)) -- | A matrix that translates the point by the given amount. translateMat :: Point2 -> Matrix3 translateMat (x, y) = Matrix3 ((1, 0, x), (0, 1, y)) -- | A matrix that rotates the point by the angle (in radians) around the origin. rotateOriginMat :: CDouble -> Matrix3 rotateOriginMat ang = let c = cos ang s = sin ang in Matrix3 ((c, -s, 0), (s, c, 0)) -- | A matrix that rotates around the given point. rotateMat :: Point2 -> CDouble -> Matrix3 rotateMat pt ang = translateMat pt .* rotateOriginMat ang .* translateMat (negPt pt)
stevenrobertson/cuburn-hs
src/Matrix.hs
gpl-3.0
2,406
0
11
550
833
485
348
35
1
{-# LANGUAGE CPP #-} {-# LANGUAGE PackageImports #-} import "prestapi" Application (getApplicationDev) import Network.Wai.Handler.Warp (runSettings, defaultSettings, setPort) import Control.Concurrent (forkIO) import System.Directory (doesFileExist, removeFile) import System.Exit (exitSuccess) import Control.Concurrent (threadDelay) #ifndef mingw32_HOST_OS import System.Posix.Signals (installHandler, sigINT, Handler(Catch)) #endif main :: IO () main = do #ifndef mingw32_HOST_OS _ <- installHandler sigINT (Catch $ return ()) Nothing #endif putStrLn "Starting devel application" (port, app) <- getApplicationDev forkIO $ runSettings (setPort port defaultSettings) app loop loop :: IO () loop = do threadDelay 100000 e <- doesFileExist "yesod-devel/devel-terminate" if e then terminateDevel else loop terminateDevel :: IO () terminateDevel = exitSuccess
sgillis/prestapi
src/devel.hs
gpl-3.0
892
0
12
134
238
131
107
24
2
module Builtins where import System.Directory import System.Posix.Env import Control.Monad.Error import Errors -- A builtincommand, like cd, ... type BuiltinCommand = String -> IO (ThrowsError ()) -- List of the buitins commands builtinsCommands :: [(String, BuiltinCommand)] builtinsCommands = [("cd", cd)] -- Set a variable setVar :: String -> String -> IO () setVar var value = setEnv var value True -- Get a variable (or "" if the variable doesn't exists) getVar :: String -> IO String getVar var = getEnv var >>= (\x -> case x of Just s -> return s Nothing -> return "") -- update the $OLDPWD variable updateOldPwd :: IO () updateOldPwd = setVar "OLDPWD" =<< getCurrentDirectory -- update the $PWD variable updatePwd :: IO () updatePwd = setVar "PWD" =<< getCurrentDirectory -- change directory cd :: BuiltinCommand cd arg | arg == "" = updateOldPwd >> (setCurrentDirectory =<< getHomeDirectory) >> updatePwd >> return (Right ()) | arg == "-" = do newPwd <- getVar "OLDPWD" updateOldPwd setCurrentDirectory newPwd updatePwd return (Right ()) | otherwise = do updateOldPwd b <- doesDirectoryExist arg if b then setCurrentDirectory arg >> updatePwd >> return (Right ()) else return $ throwError $ DirectoryNotFound arg
acieroid/hashell
Builtins.hs
gpl-3.0
1,593
0
13
565
387
196
191
35
2
{-# LANGUAGE DeriveDataTypeable, OverloadedStrings #-} module Sound.Analysis.SonicAnnotator ( Exception(..) , Feature(..) , Analysis , analyse ) where import Control.Concurrent import qualified Control.Exception as E import Control.Monad import qualified Data.Attoparsec.Text as P import qualified Data.ByteString.Lazy as B import qualified Data.ByteString as BS import qualified Data.ByteString.Char8 as BSC import Data.Char (isDigit, isSpace) import Data.Enumerator (($$)) import qualified Data.Enumerator as E import qualified Data.Enumerator.Binary as E import qualified Data.List as L import qualified Data.Map as Map import Data.Ord import Data.Text.Lazy (Text, toStrict, unpack) import qualified Data.Text as T import Data.Typeable (Typeable) import qualified Data.Vector.Unboxed as V import Data.XML.Types (Event) -- import Mescaline.Analysis.Types import qualified Sound.Analysis.Segmentation as S import qualified Sound.File.Sndfile as SF import qualified Sound.File.Sndfile.Util as SF import System.Exit import System.FilePath import qualified System.IO as IO import System.Process import Text.XML.Enumerator.Parse hiding (parseFile) data Exception = ParseError String | AnalysisError String deriving (Show, Typeable) instance E.Exception Exception data Feature = Feature { name :: String , timeStamp :: Double , values :: Maybe [Double] } deriving (Eq, Read, Show) parseTimeStamp :: P.Parser Double parseTimeStamp = do P.many (P.skip isSpace) x <- P.takeWhile1 (/= 'R') return (read (T.unpack x)) parseValue :: P.Parser Double parseValue = do P.char ':' x <- P.takeWhile1 (\x -> isDigit x || x == '.' || x == '-' || x == 'e') return (read (T.unpack x)) parseVector :: P.Parser [Double] parseVector = parseValue `P.sepBy` (P.many1 (P.char ' ')) parse :: (Monad m) => P.Parser a -> T.Text -> E.Iteratee a1 m a parse p t = do let e = P.eitherResult $ flip P.feed T.empty $ P.parse p t case e of Left err -> E.throwError (ParseError err) Right x -> return x parseFeature :: E.Iteratee Event IO (Maybe Feature) parseFeature = tagNoAttr "feature" $ do name <- force "name required" $ tagNoAttr "name" $ liftM T.unpack content timeStamp <- force "timestamp required" $ tagNoAttr "timestamp" $ parse parseTimeStamp =<< content values <- tagNoAttr "values" $ do t <- contentMaybe case t of Nothing -> return [] Just t -> parse parseVector t return $ Feature name timeStamp values parseFeatureMap :: E.Iteratee Event IO (Map.Map String [Feature]) parseFeatureMap = loop Map.empty where loop fs = do x <- parseFeature case x of Nothing -> return fs Just f -> loop $ Map.insertWith' (++) (name f) [f] fs parseHandle :: Integer -> IO.Handle -> DecodeEntities -> E.Iteratee Event IO a -> IO (Either E.SomeException a) parseHandle bs h de p = E.run $ E.enumHandle bs h $$ E.joinI $ parseBytes de $$ p type Analysis = Map.Map String (S.Segmentation Double (Maybe [Double])) analyse :: FilePath -> FilePath -> IO Analysis analyse transforms file = do (_, hOut, hErr, h) <- runInteractiveProcess "sonic-annotator" [ "-t", transforms, "-w", "default", file ] Nothing Nothing out <- newEmptyMVar err <- newEmptyMVar forkIO $ parseHandle 4096 hOut decodeEntities parseFeatureMap >>= putMVar out forkIO $ IO.hGetContents hErr >>= putMVar err exit <- waitForProcess h case exit of ExitSuccess -> do res <- readMVar out case res of Left err -> E.throwIO err Right x -> do info <- SF.getInfo file return $ flip fmap x $ S.fromEvents (SF.duration info) . map (\f -> (timeStamp f, values f)) . L.sortBy (comparing timeStamp) ExitFailure _ -> readMVar err >>= E.throwIO . AnalysisError
kaoskorobase/mescaline
lib/mescaline-database/Sound/Analysis/SonicAnnotator.hs
gpl-3.0
4,242
2
23
1,205
1,345
709
636
112
3
module OpenSandbox.LoggerSpec (main,spec) where import OpenSandbox.Logger import Test.Hspec import Test.QuickCheck spec :: Spec spec = return () main :: IO () main = hspec spec
oldmanmike/opensandbox
test/OpenSandbox/LoggerSpec.hs
gpl-3.0
181
0
6
29
62
35
27
8
1
-- | This module defines functions for rendering the keyboard on the canvas module View.Keyboard where import DisplayInfo import Difficulty import PitchClass import View.Clef import View.Fun import View.Text import View.Key import View.NoteLine import Euterpea import Graphics.Rendering.OpenGL -- | These are the x-coordinates at which the keys of C sharp and F sharp start, respectively xCoordCs, xCoordFs :: GLfloat xCoordCs = 0.75 xCoordFs = 3.75 -- | Displays the keyboard according to the current state of the 'DisplayInfo' -- -- This depends on if the last note that was played was the right one, -- on which the next note is and on which difficulty is chosen. displayAllTogether :: DisplayInfo -> Difficulty -> IO () displayAllTogether displayInfo difficulty = do translate$Vector3 (-0.7::GLfloat) (-0.7) 0 let isKeyCurrentPressed = isScreenKeyPressed displayInfo || isMidiKeyPressed displayInfo preservingMatrix $ drawLines preservingMatrix $ drawClef case songInfo displayInfo of -- SONG FINISHED Nothing -> do preservingMatrix $ displayNoteName "Song finished!" 0.3 preservingMatrix $ displayKeyboard Nothing False False -- SONG CONTINUES Just (noteToBePlayed, restNotes) -> do if difficulty /= Hard then preservingMatrix $ displayNoteName (fst (pitchInformation noteToBePlayed)) (notePlace displayInfo) else return () preservingMatrix $ displayNoteAboveKeyboard (pitchInformation noteToBePlayed) (notePlace displayInfo) preservingMatrix $ displayKeyboard (currentNote displayInfo) (isRightNotePlayed displayInfo) isKeyCurrentPressed if difficulty == Easy then preservingMatrix $ labelKeys else return () -- | Displays one octave of a keyboard including the possibly currently played key -- -- - the first 'Bool' is 'True' if the right note is played -- - the second 'Bool' is 'True' if a key is pressed at the moment displayKeyboard :: Maybe PitchClass -> Bool -> Bool -> IO () displayKeyboard currentPitchClassPlayed _ False = do -- NO KEY PLAYED AT THE MOMENT scale 0.2 0.2 (0::GLfloat) renderAs Quads whiteKeyPoints preservingMatrix $ makeNTimes nextWhiteKey 6 displayBlackKeys displayKeyboard currentPitchClassPlayed isRightNotePlayed True = do -- KEY PLAYED AT THE MOMENT scale 0.2 0.2 (0::GLfloat) renderAs Quads whiteKeyPoints preservingMatrix $ makeNTimes nextWhiteKey 6 let white = fmap isWhiteKey currentPitchClassPlayed if white == Just True then do displayPressedKey isRightNotePlayed currentPitchClassPlayed True else return () displayBlackKeys if white == Just False then do displayPressedKey isRightNotePlayed currentPitchClassPlayed False else return () -- | Displays the current played key in colour: green if it was the right one and red if it was the wrong one -- -- - the first 'Bool' is 'True' if the right key is played -- - the second 'Bool' is 'True' if the key that is pressed is a white key displayPressedKey :: Bool -> Maybe PitchClass -> Bool -> IO () displayPressedKey True (Just pitchClass) True = preservingMatrix $ do translate$Vector3 (xCoordOfPitchClass pitchClass::GLfloat) 0 0 renderPrimitive Quads greenWhiteKey displayPressedKey False (Just pitchClass) True = preservingMatrix $ do translate$Vector3 (xCoordOfPitchClass pitchClass::GLfloat) 0 0 renderPrimitive Quads redWhiteKey displayPressedKey True (Just pitchClass) False = preservingMatrix $ do translate$Vector3 (xCoordOfPitchClass pitchClass::GLfloat) 0 0 renderPrimitive Quads greenBlackKey displayPressedKey False (Just pitchClass) False = preservingMatrix $ do translate$Vector3 (xCoordOfPitchClass pitchClass::GLfloat) 0 0 renderPrimitive Quads redBlackKey displayPressedKey _ _ _ = return () -- | Computes the x coordinate of the given pitch class at which the corresponding key starts xCoordOfPitchClass :: PitchClass -> GLfloat xCoordOfPitchClass pitchClass | isWhiteKey pitchClass = nthMainNote pitchClass xCoordOfPitchClass pitchClass | pitchClass < E = xCoordCs + (realToFrac (((absPitch (pitchClass,4)) `mod` 61))) / 2 xCoordOfPitchClass pitchClass | otherwise = xCoordFs + (realToFrac (((absPitch (pitchClass,4)) `mod` 66))) / 2
flofehrenbacher/music-project
EasyNotes/View/Keyboard.hs
gpl-3.0
4,476
0
18
978
949
472
477
67
4
module F4LAE where import Prelude hiding (lookup) -- | Several type synonymous to improve readability type Name = String type FormalArg = String type Id = String -- | A representation of the types of our language data Type = TInt | TBool | TFunc Type Type | TError deriving(Show, Eq) -- | A type for representing function declaration data FunDec = FunDec Name FormalArg Exp deriving(Show, Eq) -- | The abstract syntax of F4LAE data Exp = Num Integer | Bool Bool | Add Exp Exp | Sub Exp Exp | Div Exp Exp | And Exp Exp | Or Exp Exp | Not Exp | Let Id Exp Exp | Ref Id | App Name Exp | Lambda (FormalArg, Type) Exp | LambdaApp Exp Exp | IF0 Exp Exp Exp deriving(Show, Eq) -- | The environment with the list of deferred substitutions. type DefrdSub = [(Id, Value)] -- | The value data type. -- -- In this language (F4LAE), an expression -- is reduced to a value: either a number or -- a closure. A closure is a lambda expression -- that *closes* together its definition with the -- pending substitutions at definition time. -- data Value = NumValue Integer | BoolValue Bool | Closure (FormalArg, Type) Exp DefrdSub | ExpV Exp DefrdSub deriving(Show, Eq) -- | The interpreter function \0/ interp :: Exp -> DefrdSub -> [FunDec] -> Value -- the simple interpreter for numbers. interp (Num n) ds decs = NumValue n -- the interpreter for an add expression. interp (Add e1 e2) ds decs = NumValue (v1 + v2) where NumValue v1 = strict (interp e1 ds decs) decs NumValue v2 = strict (interp e2 ds decs) decs -- the interpreter for a sub expression. interp (Sub e1 e2) ds decs = NumValue (v1 - v2) where NumValue v1 = strict (interp e1 ds decs) decs NumValue v2 = strict (interp e2 ds decs) decs interp (Div e1 e2) ds decs = NumValue (v1 `div` v2) where NumValue v1 = strict (interp e1 ds decs) decs NumValue v2 = strict (interp e2 ds decs) decs -- the interpreter for a let expression. -- note here that, to improve reuse, we actually -- convert a let exprssion in the equivalent -- lambda application (ela), and then interpret it. interp (Let v e1 e2) ds decs = undefined -- the interpreter for a reference to a variable. -- here, we make a lookup for the reference, in the -- list of deferred substitutions. interp (Ref v) ds decs = let res = lookup v fst ds in case res of (Nothing) -> error $ "variable " ++ v ++ " not found" (Just (_, value)) -> value -- the interpreter for a function application. -- here, we first make a lookup for the function declaration, -- evaluates the actual argument (leading to the parameter pmt), -- and then we interpret the function body in a new "local" environment -- (env). interp (App n e) ds decs = let res = lookup n (\(FunDec n _ _) -> n) decs in case res of (Nothing) -> error $ "funtion " ++ n ++ " not found" (Just (FunDec _ farg body)) -> interp body env decs where expV = ExpV e ds env = [(farg, expV)] -- the interpreter for a lambda abstraction. -- that is the most interesting case (IMO). it -- just returns a closure! interp (Lambda (farg, t) body) ds decs = Closure (farg, t) body ds -- the interpreter for a lambda application. -- plese, infer what is going on here in this -- case interp (LambdaApp e1 e2) ds decs = interp body env decs where Closure (farg, t) body ds0 = strict (interp e1 ds decs) decs expV = ExpV e2 ds env = (farg,expV):ds0 strict :: Value -> [FunDec] -> Value strict n@(NumValue v) _ = n strict c@(Closure farg body ds) _ = c strict (ExpV e1 ds) decs = strict (interp e1 ds decs) decs -- a new lookup function. lookup :: Id -> (a -> String) -> [a] -> Maybe a lookup _ f [] = Nothing lookup v f (x:xs) | v == f x = Just x | otherwise = lookup v f xs
rodrigofegui/UnB
2017.2/Linguagens de Programação/short-plai_Trab 2/c3/F5LAE.hs
gpl-3.0
3,950
0
13
1,046
1,132
608
524
66
3
{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.Books.PromoOffer.Dismiss -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Marks the promo offer as dismissed. -- -- /See:/ <https://code.google.com/apis/books/docs/v1/getting_started.html Books API Reference> for @books.promooffer.dismiss@. module Network.Google.Resource.Books.PromoOffer.Dismiss ( -- * REST Resource PromoOfferDismissResource -- * Creating a Request , promoOfferDismiss , PromoOfferDismiss -- * Request Lenses , podXgafv , podManufacturer , podUploadProtocol , podSerial , podAccessToken , podDevice , podUploadType , podModel , podOfferId , podProduct , podAndroidId , podCallback ) where import Network.Google.Books.Types import Network.Google.Prelude -- | A resource alias for @books.promooffer.dismiss@ method which the -- 'PromoOfferDismiss' request conforms to. type PromoOfferDismissResource = "books" :> "v1" :> "promooffer" :> "dismiss" :> QueryParam "$.xgafv" Xgafv :> QueryParam "manufacturer" Text :> QueryParam "upload_protocol" Text :> QueryParam "serial" Text :> QueryParam "access_token" Text :> QueryParam "device" Text :> QueryParam "uploadType" Text :> QueryParam "model" Text :> QueryParam "offerId" Text :> QueryParam "product" Text :> QueryParam "androidId" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Post '[JSON] Empty -- | Marks the promo offer as dismissed. -- -- /See:/ 'promoOfferDismiss' smart constructor. data PromoOfferDismiss = PromoOfferDismiss' { _podXgafv :: !(Maybe Xgafv) , _podManufacturer :: !(Maybe Text) , _podUploadProtocol :: !(Maybe Text) , _podSerial :: !(Maybe Text) , _podAccessToken :: !(Maybe Text) , _podDevice :: !(Maybe Text) , _podUploadType :: !(Maybe Text) , _podModel :: !(Maybe Text) , _podOfferId :: !(Maybe Text) , _podProduct :: !(Maybe Text) , _podAndroidId :: !(Maybe Text) , _podCallback :: !(Maybe Text) } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'PromoOfferDismiss' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'podXgafv' -- -- * 'podManufacturer' -- -- * 'podUploadProtocol' -- -- * 'podSerial' -- -- * 'podAccessToken' -- -- * 'podDevice' -- -- * 'podUploadType' -- -- * 'podModel' -- -- * 'podOfferId' -- -- * 'podProduct' -- -- * 'podAndroidId' -- -- * 'podCallback' promoOfferDismiss :: PromoOfferDismiss promoOfferDismiss = PromoOfferDismiss' { _podXgafv = Nothing , _podManufacturer = Nothing , _podUploadProtocol = Nothing , _podSerial = Nothing , _podAccessToken = Nothing , _podDevice = Nothing , _podUploadType = Nothing , _podModel = Nothing , _podOfferId = Nothing , _podProduct = Nothing , _podAndroidId = Nothing , _podCallback = Nothing } -- | V1 error format. podXgafv :: Lens' PromoOfferDismiss (Maybe Xgafv) podXgafv = lens _podXgafv (\ s a -> s{_podXgafv = a}) -- | device manufacturer podManufacturer :: Lens' PromoOfferDismiss (Maybe Text) podManufacturer = lens _podManufacturer (\ s a -> s{_podManufacturer = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). podUploadProtocol :: Lens' PromoOfferDismiss (Maybe Text) podUploadProtocol = lens _podUploadProtocol (\ s a -> s{_podUploadProtocol = a}) -- | device serial podSerial :: Lens' PromoOfferDismiss (Maybe Text) podSerial = lens _podSerial (\ s a -> s{_podSerial = a}) -- | OAuth access token. podAccessToken :: Lens' PromoOfferDismiss (Maybe Text) podAccessToken = lens _podAccessToken (\ s a -> s{_podAccessToken = a}) -- | device device podDevice :: Lens' PromoOfferDismiss (Maybe Text) podDevice = lens _podDevice (\ s a -> s{_podDevice = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). podUploadType :: Lens' PromoOfferDismiss (Maybe Text) podUploadType = lens _podUploadType (\ s a -> s{_podUploadType = a}) -- | device model podModel :: Lens' PromoOfferDismiss (Maybe Text) podModel = lens _podModel (\ s a -> s{_podModel = a}) -- | Offer to dimiss podOfferId :: Lens' PromoOfferDismiss (Maybe Text) podOfferId = lens _podOfferId (\ s a -> s{_podOfferId = a}) -- | device product podProduct :: Lens' PromoOfferDismiss (Maybe Text) podProduct = lens _podProduct (\ s a -> s{_podProduct = a}) -- | device android_id podAndroidId :: Lens' PromoOfferDismiss (Maybe Text) podAndroidId = lens _podAndroidId (\ s a -> s{_podAndroidId = a}) -- | JSONP podCallback :: Lens' PromoOfferDismiss (Maybe Text) podCallback = lens _podCallback (\ s a -> s{_podCallback = a}) instance GoogleRequest PromoOfferDismiss where type Rs PromoOfferDismiss = Empty type Scopes PromoOfferDismiss = '["https://www.googleapis.com/auth/books"] requestClient PromoOfferDismiss'{..} = go _podXgafv _podManufacturer _podUploadProtocol _podSerial _podAccessToken _podDevice _podUploadType _podModel _podOfferId _podProduct _podAndroidId _podCallback (Just AltJSON) booksService where go = buildClient (Proxy :: Proxy PromoOfferDismissResource) mempty
brendanhay/gogol
gogol-books/gen/Network/Google/Resource/Books/PromoOffer/Dismiss.hs
mpl-2.0
6,498
0
24
1,744
1,190
683
507
164
1
{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} -- Module : Network.AWS.ElasticFileSystem.CreateMountTarget -- Copyright : (c) 2013-2015 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Creates a mount target for a file system. You can then mount the file -- system on EC2 instances via the mount target. -- -- You can create one mount target in each Availability Zone in your VPC. -- All EC2 instances in a VPC within a given Availability Zone share a -- single mount target for a given file system. If you have multiple -- subnets in an Availability Zone, you create a mount target in one of the -- subnets. EC2 instances do not need to be in the same subnet as the mount -- target in order to access their file system. For more information, see -- <http://docs.aws.amazon.com/efs/latest/ug/how-it-works.html Amazon EFS: How it Works>. -- -- In the request, you also specify a file system ID for which you are -- creating the mount target and the file system\'s lifecycle state must be -- \"available\" (see DescribeFileSystems). -- -- In the request, you also provide a subnet ID, which serves several -- purposes: -- -- - It determines the VPC in which Amazon EFS creates the mount target. -- - It determines the Availability Zone in which Amazon EFS creates the -- mount target. -- - It determines the IP address range from which Amazon EFS selects the -- IP address of the mount target if you don\'t specify an IP address -- in the request. -- -- After creating the mount target, Amazon EFS returns a response that -- includes, a @MountTargetId@ and an @IpAddress@. You use this IP address -- when mounting the file system in an EC2 instance. You can also use the -- mount target\'s DNS name when mounting the file system. The EC2 instance -- on which you mount the file system via the mount target can resolve the -- mount target\'s DNS name to its IP address. For more information, see -- <http://docs.aws.amazon.com/efs/latest/ug/how-it-works.html#how-it-works-implementation How it Works: Implementation Overview> -- -- Note that you can create mount targets for a file system in only one -- VPC, and there can be only one mount target per Availability Zone. That -- is, if the file system already has one or more mount targets created for -- it, the request to add another mount target must meet the following -- requirements: -- -- - The subnet specified in the request must belong to the same VPC as -- the subnets of the existing mount targets. -- -- - The subnet specified in the request must not be in the same -- Availability Zone as any of the subnets of the existing mount -- targets. -- -- If the request satisfies the requirements, Amazon EFS does the -- following: -- -- - Creates a new mount target in the specified subnet. -- - Also creates a new network interface in the subnet as follows: -- -- - If the request provides an @IpAddress@, Amazon EFS assigns that -- IP address to the network interface. Otherwise, Amazon EFS -- assigns a free address in the subnet (in the same way that the -- Amazon EC2 @CreateNetworkInterface@ call does when a request -- does not specify a primary private IP address). -- - If the request provides @SecurityGroups@, this network interface -- is associated with those security groups. Otherwise, it belongs -- to the default security group for the subnet\'s VPC. -- - Assigns the description -- @\"Mount target fsmt-id for file system fs-id\"@ where @fsmt-id@ -- is the mount target ID, and @fs-id@ is the @FileSystemId@. -- - Sets the @requesterManaged@ property of the network interface to -- \"true\", and the @requesterId@ value to \"EFS\". -- -- Each Amazon EFS mount target has one corresponding requestor-managed -- EC2 network interface. After the network interface is created, -- Amazon EFS sets the @NetworkInterfaceId@ field in the mount -- target\'s description to the network interface ID, and the -- @IpAddress@ field to its address. If network interface creation -- fails, the entire @CreateMountTarget@ operation fails. -- -- The @CreateMountTarget@ call returns only after creating the network -- interface, but while the mount target state is still \"creating\". You -- can check the mount target creation status by calling the -- DescribeFileSystems API, which among other things returns the mount -- target state. -- -- We recommend you create a mount target in each of the Availability -- Zones. There are cost considerations for using a file system in an -- Availability Zone through a mount target created in another Availability -- Zone. For more information, go to -- <http://aws.amazon.com/efs/ Amazon EFS> product detail page. In -- addition, by always using a mount target local to the instance\'s -- Availability Zone, you eliminate a partial failure scenario; if the -- Availablity Zone in which your mount target is created goes down, then -- you won\'t be able to access your file system through that mount target. -- -- This operation requires permission for the following action on the file -- system: -- -- - @elasticfilesystem:CreateMountTarget@ -- -- This operation also requires permission for the following Amazon EC2 -- actions: -- -- - @ec2:DescribeSubnets@ -- - @ec2:DescribeNetworkInterfaces@ -- - @ec2:CreateNetworkInterface@ -- -- <http://docs.aws.amazon.com/directoryservice/latest/devguide/API_CreateMountTarget.html> module Network.AWS.ElasticFileSystem.CreateMountTarget ( -- * Request CreateMountTarget -- ** Request constructor , createMountTarget -- ** Request lenses , cmtIPAddress , cmtSecurityGroups , cmtFileSystemId , cmtSubnetId -- * Response , MountTargetDescription -- ** Response constructor , mountTargetDescription -- ** Response lenses , mtdIPAddress , mtdNetworkInterfaceId , mtdOwnerId , mtdMountTargetId , mtdFileSystemId , mtdSubnetId , mtdLifeCycleState ) where import Network.AWS.ElasticFileSystem.Types import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'createMountTarget' smart constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'cmtIPAddress' -- -- * 'cmtSecurityGroups' -- -- * 'cmtFileSystemId' -- -- * 'cmtSubnetId' data CreateMountTarget = CreateMountTarget' { _cmtIPAddress :: Maybe Text , _cmtSecurityGroups :: Maybe [Text] , _cmtFileSystemId :: Text , _cmtSubnetId :: Text } deriving (Eq,Read,Show) -- | 'CreateMountTarget' smart constructor. createMountTarget :: Text -> Text -> CreateMountTarget createMountTarget pFileSystemId pSubnetId = CreateMountTarget' { _cmtIPAddress = Nothing , _cmtSecurityGroups = Nothing , _cmtFileSystemId = pFileSystemId , _cmtSubnetId = pSubnetId } -- | A valid IPv4 address within the address range of the specified subnet. cmtIPAddress :: Lens' CreateMountTarget (Maybe Text) cmtIPAddress = lens _cmtIPAddress (\ s a -> s{_cmtIPAddress = a}); -- | Up to 5 VPC security group IDs, of the form \"sg-xxxxxxxx\". These must -- be for the same VPC as subnet specified. cmtSecurityGroups :: Lens' CreateMountTarget [Text] cmtSecurityGroups = lens _cmtSecurityGroups (\ s a -> s{_cmtSecurityGroups = a}) . _Default; -- | The ID of the file system for which to create the mount target. cmtFileSystemId :: Lens' CreateMountTarget Text cmtFileSystemId = lens _cmtFileSystemId (\ s a -> s{_cmtFileSystemId = a}); -- | The ID of the subnet to add the mount target in. cmtSubnetId :: Lens' CreateMountTarget Text cmtSubnetId = lens _cmtSubnetId (\ s a -> s{_cmtSubnetId = a}); instance AWSRequest CreateMountTarget where type Sv CreateMountTarget = ElasticFileSystem type Rs CreateMountTarget = MountTargetDescription request = postJSON response = receiveJSON (\ s h x -> eitherParseJSON x) instance ToHeaders CreateMountTarget where toHeaders = const mempty instance ToJSON CreateMountTarget where toJSON CreateMountTarget'{..} = object ["IpAddress" .= _cmtIPAddress, "SecurityGroups" .= _cmtSecurityGroups, "FileSystemId" .= _cmtFileSystemId, "SubnetId" .= _cmtSubnetId] instance ToPath CreateMountTarget where toPath = const "/2015-02-01/mount-targets" instance ToQuery CreateMountTarget where toQuery = const mempty
fmapfmapfmap/amazonka
amazonka-efs/gen/Network/AWS/ElasticFileSystem/CreateMountTarget.hs
mpl-2.0
9,056
0
10
1,871
649
431
218
63
1
{- Copyright (C) 2009 Andrejs Sisojevs <andrejs.sisojevs@nextmail.ru> All rights reserved. For license and copyright information, see the file COPYRIGHT -} -------------------------------------------------------------------------- -------------------------------------------------------------------------- module Text.PCLT.InitialDefaultCatalog where import Text.PCLT.SDL__ (PCLTRawCatalog__Text_PCLT_SDL) import Text.PCLT.ShowAsPCSI__ (PCLTRawCatalog__Text_PCLT_ShowAsPCSI) import Text.PCLT.Template__ (PCLTRawCatalog__Text_PCLT_Template) import Text.PCLT.CatalogFromHSRT__ (PCLTRawCatalog__Text_PCLT_CatalogFromHSRT) import Text.PCLT.CatalogMaths__ (PCLTRawCatalog__Text_PCLT_CatalogMaths) import Text.PCLT.Catalog__ (PCLTRawCatalog__Text_PCLT_Catalog) import Text.PCLT.MakeCatalog__ (PCLTRawCatalog__Text_PCLT_MakeCatalog) import Text.PCLT.MakeMessage__ (PCLTRawCatalog__Text_PCLT_MakeMessage) import Text.ConstraintedLBS import Text.PCLT.Catalog (PCLT_CatalogID, PCLT_Catalog) import Text.PCLT.CatalogFromHSRT import Text.PCLT.CommonTypes (LanguageName) import Text.PCLT.Config import Text.PCLT.HasStaticRawPCLTs import Text.PCLT.SDL (ShowDetalizationLevel) -- | This type is a special instance of 'HasStaticRawPCLTs' - it accumulates -- all other instances of 'HasStaticRawPCLTs' from the whole PCLT package data PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog = PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog instance HasStaticRawPCLTs PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog where widenessOfStaticRawPCLTsSet _ = Package_RPSW getStaticRawPCLTs inner_cfg _ = mergeRawCatalogDataSets2 True [ getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_SDL) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_ShowAsPCSI) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_Template) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_CatalogFromHSRT) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_CatalogMaths) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_Catalog) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_MakeCatalog) , getStaticRawPCLTs inner_cfg (undefined :: PCLTRawCatalog__Text_PCLT_MakeMessage) ] initDefaultCatalog :: PCLT_InnerConfig -> PCLT_CatalogID -> (PCLT_Catalog, CatalogFromHSRTInitErrors) initDefaultCatalog_2 :: PCLT_InnerConfig -> PCLT_CatalogID -> (StdErr_CLBS, ShowDetalizationLevel, LanguageName) -> (PCLT_Catalog, StdErr_CLBS) initDefaultCatalog_3 :: PCLT_CatalogID -> (StdErr_CLBS, ShowDetalizationLevel, LanguageName) -> (PCLT_Catalog, StdErr_CLBS) initDefaultCatalog = initCatalogFromHSRT PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog initDefaultCatalog_2 = initCatalogFromHSRT_2 PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog initDefaultCatalog_3 = initCatalogFromHSRT_2 PCLTRawCatalog__Text_PCLT_InitialDefaultCatalog defaultPCLTInnerConfig
Andrey-Sisoyev/haskell-PCLT
Text/PCLT/InitialDefaultCatalog.hs
lgpl-2.1
3,348
0
9
622
414
247
167
35
1
{-# LANGUAGE DataKinds #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE TypeFamilies #-} module XLeaderLoggedIn where import XActionOutput import XClient import XEventInput import XMonad import XNodeState import XTypes import XUtil ------------------------------------------------------------------------------ import Protolude handleUsernamePassword :: forall v sm . Show v => ClientInputHandler 'LoggedIn sm UsernamePassword v handleUsernamePassword _ns@(NodeLoggedInState s) _ _ = do logCritical ["LoggedIn.handleUsernamePassword: should not happend"] pure (loggedInResultState NoChange s) handlePin :: forall v sm . Show v => ClientInputHandler 'LoggedIn sm Pin v handlePin (NodeLoggedInState s) _c _p = do logCritical ["LoggedIn.handlePin: should not happend"] pure (loggedInResultState NoChange s) handleCommandOrQuit :: forall v sm . Show v => ClientInputHandler 'LoggedIn sm (CommandOrQuit v) v handleCommandOrQuit (NodeLoggedInState s) c a@(CommandOrQuit t v) = do logInfo ["LoggedIn.handleCommandOrQuit", pshow c, pshow a] case t of "R" -> do r <- CresStateMachine <$> asks stateMachine tellActions [ ResetTimeoutTimer HeartbeatTimeout , SendToClient c r , SendToClient c CresEnterCommandOrQuit ] pure (loggedInResultState NoChange s) "W" -> do let s' = s { lsCmd = Just v } tellActions [ ResetTimeoutTimer HeartbeatTimeout , SendToClient c CresEnterCommandOrQuit ] pure (loggedInResultState NoChange s') "Q" -> do tellActions [ ResetTimeoutTimer HeartbeatTimeout , SendToClient c CresQuit ] pure (loggedOutResultState LoggedInToLoggedOut LoggedOutState) _ -> do tellActions [ ResetTimeoutTimer HeartbeatTimeout , SendToClient c CresInvalidCommand , SendToClient c CresEnterCommandOrQuit ] pure (loggedInResultState NoChange s) handleTimeout :: TimeoutHandler 'LoggedIn sm v handleTimeout (NodeLoggedInState _) timeout = do logInfo ["LoggedIn.handleTimeout", pshow timeout] case timeout of HeartbeatTimeout -> do tellActions [ ResetTimeoutTimer HeartbeatTimeout , SendToClient (ClientId "client") CresEnterUsernamePassword -- TODO client id ] pure (loggedOutResultState LoggedInToLoggedOut LoggedOutState) -- TODO ??
haroldcarr/learn-haskell-coq-ml-etc
haskell/topic/program-structure/2019-01-hc-example-based-on-adjointio-raft/src/XLeaderLoggedIn.hs
unlicense
2,716
0
17
738
581
287
294
65
4
-- Problem 61 -- -- Triangle, square, pentagonal, hexagonal, heptagonal, and octagonal numbers are all figurate (polygonal) numbers and are generated by the following formulae: -- -- Triangle P3,n=n(n+1)/2 1, 3, 6, 10, 15, ... -- Square P4,n=n2 1, 4, 9, 16, 25, ... -- Pentagonal P5,n=n(3n-1)/2 1, 5, 12, 22, 35, ... -- Hexagonal P6,n=n(2n-1) 1, 6, 15, 28, 45, ... -- Heptagonal P7,n=n(5n-3)/2 1, 7, 18, 34, 55, ... -- Octagonal P8,n=n(3n-2) 1, 8, 21, 40, 65, ... -- -- The ordered set of three 4-digit numbers: 8128, 2882, 8281, has three interesting properties. -- -- The set is cyclic, in that the last two digits of each number is the first two digits of the next number (including the last number with the first). -- Each polygonal type: triangle (P3,127=8128), square (P4,91=8281), and pentagonal (P5,44=2882), is represented by a different number in the set. -- This is the only set of 4-digit numbers with this property. -- Find the sum of the only ordered set of six cyclic 4-digit numbers for which each polygonal type: -- triangle, square, pentagonal, hexagonal, heptagonal, and octagonal, is represented by a different number in the set. import Control.Monad import Data.List import Char import Data.Ord import Control.Monad.State main = do putStrLn $ show $ p61 data CyclicNum = CyclicNum { fstNum :: Int , sndNum :: Int , theNum :: Int } type CyclicSet = [CyclicNum] data CyclicMatching = CyclicMatching { matchingNum :: CyclicNum , matchingSet :: CyclicSet } type CyclicState = State CyclicMatching --let pts = [Triangle,Hexagonal,Heptagonal,Octagonal] --let pts = [Square,Pentagonal] --let pts = [Triangle] --let pts = [Square, Pentagonal, Hexagonal, Heptagonal, Octagonal] p61 = do tns <- numList triangleNum let pts = [Square,Pentagonal] let rs = foo tns pts [tns] guard(rs /= []) -- guard(testA (last rs) (head rs) ) return rs -- (pt,nn) <- nextPolyNums tns pts -- (pt',nn') <- nextPolyNums nn (pts \\ [pt]) -- guard(testA nn' tns) -- return [tns,nn,nn'] foo :: Int -> [PolygonalType] -> [Int] -> [Int] foo _ [] rs = reverse rs foo n pts rs = do (pt',n') <- nextPolyNums n pts foo n' (pts \\ [pt']) (n':rs) type PolyState = (PolygonalType,Int) type PolyValue = Int startState = (Triangle,8128) --dofoo = print $ evalState (foo' [Square,Pentagonal] startState) --foo' :: Int -> [PolygonalType] -> PolyState [Int] --foo' :: Int -> [PolygonalType] -> PolyState [Int] --foo' :: [PolygonalType] -> State PolyState PolyValue --foo' [] = do (_,v) <- get -- return v --foo' pts = do (pt,n) <- get -- (pt',n') <- nextPolyNums n pts -- let pts' = pt' `delete` pts -- put (pts',n') -- foo' pts' nextPolyNums :: Int -> [PolygonalType] -> [(PolygonalType,Int)] nextPolyNums n pts = do let n' = snd2Num n guard(n' > 10) mpn@(_,n'') <- getMatchingPolyNums n' pts guard((snd2Num n'') > 10) return mpn --matchingNum :: Int -> [PolygonalType] -> State --findingCyclic :: CyclicState Int --findingCyclic = do c@(v,_) <- get --matchingNum :: Int -> PolyState Int --matchingNum n = do (st,v) <- get -- return v matchCyc n xs = do x <- xs return x getMatchingPolyNums :: Int -> [PolygonalType] -> [(PolygonalType,Int)] getMatchingPolyNums n ts = do (t,f) <- funcLookup ts nn <- f n return (t,nn) funcLookup :: [PolygonalType] -> [(PolygonalType,Int->[Int])] funcLookup ts = liftM lf ts where lf a = (a, makePolyNums (maybe (0 +) (id) (lookup a polygonalFuncs2Types))) matchingNums :: Int -> PolygonalType -> [Int] matchingNums n pt | (l2n > 9) = makePolyNums (maybe (0 +) (id) (lookup pt polygonalFuncs2Types)) l2n | otherwise = [] where l2n = snd2Num n makePolyNums :: (Int -> Int) -> Int -> [Int] makePolyNums f b = takeWhile(< ub) $ dropWhile (< lb ) $ map f [1 ..] where ub = lb + 100 lb = b * 100 type PolygonalState = State [(PolygonalType,Bool)] polygonalFuncs2Types :: [(PolygonalType,(Int->Int))] polygonalFuncs2Types = [(Triangle,triangleNum),(Square,squareNum),(Pentagonal,pentagonalNum),(Hexagonal,hexagonalNum),(Heptagonal,heptagonalNum),(Octagonal,octagonalNum)] data PolygonalType = Triangle| Square| Pentagonal| Hexagonal| Heptagonal| Octagonal deriving (Eq, Show) polygonalTypes = [Triangle, Square, Pentagonal, Hexagonal, Heptagonal, Octagonal] triangleNum :: Int -> Int triangleNum n = ((n * (n +1)) `div` 2) squareNum :: Int -> Int squareNum n = n ^ 2 pentagonalNum :: Int -> Int pentagonalNum n = ((n * (( n * 3) - 1)) `div` 2) hexagonalNum :: Int -> Int hexagonalNum n = n * (( n * 2 ) - 1) heptagonalNum :: Int -> Int heptagonalNum n = (n * (( 5 * n) - 3)) `div` 2 octagonalNum :: Int -> Int octagonalNum n = n * ((3 * n) - n ) --numList :: Int -> [Int] numList f = takeWhile(< 10000) $ dropWhile (< 1000 ) $ map f [1 ..] fst2Num :: Int -> Int fst2Num = read . (take 2) . show snd2Num :: Int -> Int snd2Num = read . (drop 2) . show l2EQf2 a b = (snd2Num a) == (fst2Num b) --p61 :: Int p61'0 = sum $ take 6 dowork where dowork = do tn <- numList' triangleNum sn <- numList' squareNum pn <- numList' pentagonalNum hn <- numList' hexagonalNum en <- numList' heptagonalNum on <- numList' octagonalNum r <- testcycr tn [sn,pn,hn,en,on] testB return r --isCyclic :: [Int] -> Bool isCyclic (x:xs) | isnt = False | fnlM = False | otherwise = True where isnt = any (== Nothing) $ flm flm = foldP matchP (x:xs) fnlM = (Nothing == (matchP (maybe 0 id $ last $ flm) [x])) --foldP :: (Num a, Monad m) => (a -> [a] -> Maybe a) -> [a] -> m [Maybe a] foldP _ [] = [] foldP _ [x] = [] foldP f (x:xs) | (val == Nothing) = Nothing : [] | otherwise = val : foldP f (clv:lvf) where val = f x xs clv = maybe 0 id val lvf = filter (/= clv) xs matchP a bs = msum $ map t bs where t x = if ((snd2Num a) == (fst2Num x)) then Just x else Nothing fp :: (Num a) => (a -> [a] -> [a]) -> [a] -> [a] fp _ [] = [] fp f (x:xs) = case val of [] -> [] _ -> val ++ (fp f (val ++ lf) ) where val = f x xs lf = filter (/= (head val)) xs compFS a bs = do b <- bs guard ((snd2Num a) == (fst2Num b)) return b p61e = do tn <- numList triangleNum sn <- numList squareNum pn <- numList pentagonalNum let cycSet = [tn,sn,pn] guard(isCyclic cycSet ) return cycSet -- let c = [tn,sn,pn] -- let a = fp compFS c -- guard ((length a) == 2) -- let l = compFS (last a) [tn] -- guard (l == tn) -- return (tn:a) p61' = do let polySet = [Square, Pentagonal, Hexagonal, Heptagonal, Octagonal] triNum <- numList triangleNum ms <- polyMatches triNum polySet guard ( (last ms) `l2EQf2` triNum) (triNum : ms) p61e' = do tn <- numList' triangleNum sn <- numList' squareNum pn <- numList' pentagonalNum r <- testcycr tn [sn,pn] testB return r p61e'' = do let polySet = [Square, Pentagonal] triNum <- numList triangleNum ms <- polyMatches triNum polySet guard ( (last ms) `l2EQf2` triNum) (triNum : ms) polyMatches :: Int -> [PolygonalType] -> [[Int]] polyMatches _ [] = return [] polyMatches n pts = do p <- pts m <- matchingNums n p nxt <- polyMatches m (delete p pts) return (m : nxt) p61e_waterfall :: [Int] p61e_waterfall = do let polySet = [Square, Pentagonal] triNum <- numList triangleNum p <- polySet m <- matchingNums triNum p p' <- (delete p polySet) m' <- matchingNums m p' guard ( m' `l2EQf2` triNum) [triNum,m,m'] testB :: Int -> Int -> Bool testB a b = a == b type CycNum = (Int, Int, Int) type CycSet = [CycNum] testcycr :: CycNum -> CycSet -> (Int -> Int -> Bool) -> [Int] testcycr a bs t |(hpr == []) = mzero |(t a1 b2 ) = (ha:bs') |otherwise = mzero where hpr = helper a bs (a1,_,ha) = a (_,b2,_) = toDig $ last $ head hpr bs' = head hpr helper' :: Int -> [Int] -> [[Int]] helper' _ [] = return [] helper' a bs = do b <- bs guard ((snd2Num a) == (fst2Num b)) let p = filter(/= b) bs next <- helper' b p return (b : next) helper :: CycNum -> CycSet -> [[Int]] helper _ [] = return [] helper (_,a2,_) bs = do b@(b1,_,bn) <- bs guard (a2 == b1) let p = filter(\ (_,_,x) -> x /= bn) bs next <- helper b p return (bn : next) setA :: [Int] setA = [2346,3293,4623,4632,9346] setB' :: [Int] setB' =[8128, 2982, 8281] setB :: [Int] setB = [8128, 2882, 8281] toDig :: Int -> CycNum toDig a = ((toDigHlr take a), (toDigHlr drop a), a) toDigHlr :: (Int -> String -> String) -> Int -> Int toDigHlr f = read . (f 2) . show numList' :: (Int -> Int) -> CycSet numList' numfunc = takeWhile twf $ dropWhile dwf $ map (rv . numfunc) [1 ..] where fuc x = read . (x 2) . show rv a = (fuc take a,fuc drop a,a) twf (_,_,x) = x < 10000 dwf (_,_,y) = y < 1000 -- p61 = do -- tn <- numList triangleNum -- sn <- numList squareNum -- pn <- numList pentagonalNum -- let set1 = matchfs tn [sn,pn] [] -- guard(matchC set1) -- let set1' = maybe 0 id set1 -- let prd = leftover set1' [sn,pn] -- let set2 = matchfs set1' prd [] -- guard(matchC set2) -- let set2' = maybe 0 id set2 -- let set3 = matchfs set2' (tn:[]) [] -- guard(matchC set3) -- return [tn,set1',set2'] -- p61' = do -- tn <- numList triangleNum -- sn <- numList squareNum -- pn <- numList pentagonalNum -- p1 <- compareNums tn [sn,pn] -- let prd = leftover p1 [sn,pn] -- p2 <- compareNums p1 prd -- p3 <- compareNums p2 (tn:[]) -- return [tn,p1,p2] -- compareNums a b = case val of -- Nothing -> mzero -- Just x -> return x -- where val = matchfs a b [] -- matchC a = case a of -- Nothing -> False -- _ -> True --leftover :: Integer -> -- leftover a bs = filter (/= a) bs -- matchfs :: Integer -> [Integer] -> [Integer] -> Maybe Integer -- matchfs _ [] _ = Nothing -- matchfs a (b:bs) rs -- |((snd2Num a) == (fst2Num b)) = Just b -- | otherwise = matchfs a bs (b:rs)
nmarshall23/Programming-Challenges
project-euler/061/61.hs
unlicense
10,098
279
13
2,477
3,112
1,739
1,373
200
2
{-# LANGUAGE DeriveFunctor #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FunctionalDependencies #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE TemplateHaskell #-} module Text.Protocol.NMEA0183.Types.Talker where import Control.Lens import qualified Data.Text as T data TalkerIdentifier = AB -- ^ Independent AIS Base Station | AD -- ^ Dependent AIS Base Station | AG -- ^ Autopilot - General | AP -- ^ Autopilot - Magnetic | BN -- ^ Bridge navigational watch alarm system | CC -- ^ Computer - Programmed Calculator (obsolete) | CD -- ^ Communications - Digital Selective Calling (DSC) | CM -- ^ Computer - Memory Data (obsolete) | CS -- ^ Communications - Satellite | CT -- ^ Communications - Radio-Telephone (MF/HF) | CV -- ^ Communications - Radio-Telephone (VHF) | CX -- ^ Communications - Scanning Receiver | DE -- ^ DECCA Navigation (obsolete) | DF -- ^ Direction Finder | DU -- ^ Duplex repeater station | EC -- ^ Electronic Chart Display & Information System (ECDIS) | EP -- ^ Emergency Position Indicating Beacon (EPIRB) | ER -- ^ Engine Room Monitoring Systems | GP -- ^ Global Positioning System (GPS) | HC -- ^ Heading - Magnetic Compass | HE -- ^ Heading - North Seeking Gyro | HN -- ^ Heading - Non North Seeking Gyro | II -- ^ Integrated Instrumentation | IN -- ^ Integrated Navigation | LA -- ^ Loran A (obsolete) | LC -- ^ Loran C (obsolete) | MP -- ^ Microwave Positioning System (obsolete) | NL -- ^ Navigation light controller | OM -- ^ OMEGA Navigation System (obsolete) | OS -- ^ Distress Alarm System (obsolete) | RA -- ^ RADAR and/or ARPA | SD -- ^ Sounder, Depth | SN -- ^ Electronic Positioning System, other/general | SS -- ^ Sounder, Scanning | TI -- ^ Turn Rate Indicator | TR -- ^ TRANSIT Navigation System | U Int -- ^ # is a digit 0 … 9; User Configured | UP -- ^ Microprocessor controller | VD -- ^ Velocity Sensor, Doppler, other/general | DM -- ^ Velocity Sensor, Speed Log, Water, Magnetic | VW -- ^ Velocity Sensor, Speed Log, Water, Mechanical | WI -- ^ Weather Instruments | YC -- ^ Transducer - Temperature (obsolete) | YD -- ^ Transducer - Displacement, Angular or Linear (obsolete) | YF -- ^ Transducer - Frequency (obsolete) | YL -- ^ Transducer - Level (obsolete) | YP -- ^ Transducer - Pressure (obsolete) | YR -- ^ Transducer - Flow Rate (obsolete) | YT -- ^ Transducer - Tachometer (obsolete) | YV -- ^ Transducer - Volume (obsolete) | YX -- ^ Transducer | ZA -- ^ Timekeeper - Atomic Clock | ZC -- ^ Timekeeper - Chronometer | ZQ -- ^ Timekeeper - Quartz | ZV -- ^ Timekeeper - Radio Update, WWV or WWVH deriving (Eq, Ord, Show) data TalkerSentence a = TalkerSentence { _talkerIdentifier :: TalkerIdentifier , _sentenceIdentifier :: T.Text , _dataFields :: a , _checksum :: Maybe (Char, Char) } deriving (Eq, Functor, Ord) makeClassy ''TalkerSentence instance Show a => Show (TalkerSentence a) where show (TalkerSentence a b c (Just d)) = "$" ++ show a ++ T.unpack b ++ "," ++ show c ++ ",*" ++ show d show (TalkerSentence a b c Nothing) = "$" ++ show a ++ T.unpack b ++ "," ++ show c
noexc/nmea0183
src/Text/Protocol/NMEA0183/Types/Talker.hs
bsd-2-clause
3,247
0
12
755
468
298
170
78
0
{-# LANGUAGE PackageImports #-} import "whosawthatcoming" Application (getApplicationDev) import Network.Wai.Handler.Warp (runSettings, defaultSettings, setPort) import Control.Concurrent (forkIO) import System.Directory (doesFileExist, removeFile) import System.Exit (exitSuccess) import Control.Concurrent (threadDelay) main :: IO () main = do putStrLn "Starting devel application" (port, app) <- getApplicationDev forkIO $ runSettings (setPort port defaultSettings) app loop loop :: IO () loop = do threadDelay 100000 e <- doesFileExist "dist/devel-terminate" if e then terminateDevel else loop terminateDevel :: IO () terminateDevel = exitSuccess
snoyberg/whosawthatcoming
devel.hs
bsd-2-clause
680
2
10
104
193
100
93
21
2
module Calculus.Dipole72 where -- standard modules import qualified Data.Char as Char import qualified Data.Map as Map import qualified Data.Set as Set -- local modules import Basics import Helpful -- maybe we can use this sometime? -- -- sortAtomicDipoleConstraint :: Constraint -> Constraint -- sortAtomicDipoleConstraint (ents, rel) -- | rel > swappedRel = (reverse ents, swappedRel) -- | otherwise = (ents, rel) -- where -- swappedRel = Set.map swapRel rel -- -- swapRel (a:b:c:d:s) = [c, d, a, b] ++ swappedSign -- where -- swappedSign = case s of -- "+" -> "-" -- "-" -> "+" -- _ -> s -- -- dipoleSort :: [Constraint] -> [Constraint] -- dipoleSort cons = map sortAtomicDipoleConstraint cons data Dipole72 = BBBB72 | BBFF72 | BEIE72 | BFII72 | BIIF72 | BLRR72 | BRLL72 | BSEF72 | EBIS72 | EFBS72 | EIFS72 | ELLS72 | ERRS72 | ESES72 | FBII72 | FEFE72 | FFBB72 | FFFF72 | FIFI72 | FLLL72 | FRRR72 | FSEI72 | IBIB72 | IEBE72 | IFBI72 | IIBF72 | IIFB72 | ILLR72 | IRRL72 | ISEB72 | LBLL72 | LERE72 | LFRR72 | LIRL72 | LLBR72 | LLFL72 | LLLB72 | LLLL72 | LLLR72 | LLRF72 | LLRL72 | LLRR72 | LRIL72 | LRLL72 | LRRI72 | LRRL72 | LRRR72 | LSEL72 | RBRR72 | RELE72 | RFLL72 | RILR72 | RLIR72 | RLLI72 | RLLL72 | RLLR72 | RLRR72 | RRBL72 | RRFR72 | RRLF72 | RRLL72 | RRLR72 | RRRB72 | RRRL72 | RRRR72 | RSER72 | SBSB72 | SESE72 | SFSI72 | SISF72 | SLSR72 | SRSL72 deriving (Eq, Ord, Read, Show, Enum, Bounded) instance Calculus Dipole72 where rank _ = 2 cName _ = "dipole-72" cNameGqr _ = "dra-72" cReadRel x = case y of Just z -> z Nothing -> error $ show x ++ " is not a Dipole-72 relation." where y = maybeRead $ (++ "72") $ map Char.toUpper x cShowRel = (map Char.toLower) . (take 4) . show identity = SESE72 bcConversion = Map.fromList [ ( BBBB72 , Set.singleton BBBB72 ) , ( BBFF72 , Set.singleton FFBB72 ) , ( BEIE72 , Set.singleton IEBE72 ) , ( BFII72 , Set.singleton IIBF72 ) , ( BIIF72 , Set.singleton IFBI72 ) , ( BLRR72 , Set.singleton RRBL72 ) , ( BRLL72 , Set.singleton LLBR72 ) , ( BSEF72 , Set.singleton EFBS72 ) , ( EBIS72 , Set.singleton ISEB72 ) , ( EFBS72 , Set.singleton BSEF72 ) , ( EIFS72 , Set.singleton FSEI72 ) , ( ELLS72 , Set.singleton LSEL72 ) , ( ERRS72 , Set.singleton RSER72 ) , ( ESES72 , Set.singleton ESES72 ) , ( FBII72 , Set.singleton IIFB72 ) , ( FEFE72 , Set.singleton FEFE72 ) , ( FFBB72 , Set.singleton BBFF72 ) , ( FFFF72 , Set.singleton FFFF72 ) , ( FIFI72 , Set.singleton FIFI72 ) , ( FLLL72 , Set.singleton LLFL72 ) , ( FRRR72 , Set.singleton RRFR72 ) , ( FSEI72 , Set.singleton EIFS72 ) , ( IBIB72 , Set.singleton IBIB72 ) , ( IEBE72 , Set.singleton BEIE72 ) , ( IFBI72 , Set.singleton BIIF72 ) , ( IIBF72 , Set.singleton BFII72 ) , ( IIFB72 , Set.singleton FBII72 ) , ( ILLR72 , Set.singleton LRIL72 ) , ( IRRL72 , Set.singleton RLIR72 ) , ( ISEB72 , Set.singleton EBIS72 ) , ( LBLL72 , Set.singleton LLLB72 ) , ( LERE72 , Set.singleton RELE72 ) , ( LFRR72 , Set.singleton RRLF72 ) , ( LIRL72 , Set.singleton RLLI72 ) , ( LLBR72 , Set.singleton BRLL72 ) , ( LLFL72 , Set.singleton FLLL72 ) , ( LLLB72 , Set.singleton LBLL72 ) , ( LLLL72 , Set.singleton LLLL72 ) , ( LLLR72 , Set.singleton LRLL72 ) , ( LLRF72 , Set.singleton RFLL72 ) , ( LLRL72 , Set.singleton RLLL72 ) , ( LLRR72 , Set.singleton RRLL72 ) , ( LRIL72 , Set.singleton ILLR72 ) , ( LRLL72 , Set.singleton LLLR72 ) , ( LRRI72 , Set.singleton RILR72 ) , ( LRRL72 , Set.singleton RLLR72 ) , ( LRRR72 , Set.singleton RRLR72 ) , ( LSEL72 , Set.singleton ELLS72 ) , ( RBRR72 , Set.singleton RRRB72 ) , ( RELE72 , Set.singleton LERE72 ) , ( RFLL72 , Set.singleton LLRF72 ) , ( RILR72 , Set.singleton LRRI72 ) , ( RLIR72 , Set.singleton IRRL72 ) , ( RLLI72 , Set.singleton LIRL72 ) , ( RLLL72 , Set.singleton LLRL72 ) , ( RLLR72 , Set.singleton LRRL72 ) , ( RLRR72 , Set.singleton RRRL72 ) , ( RRBL72 , Set.singleton BLRR72 ) , ( RRFR72 , Set.singleton FRRR72 ) , ( RRLF72 , Set.singleton LFRR72 ) , ( RRLL72 , Set.singleton LLRR72 ) , ( RRLR72 , Set.singleton LRRR72 ) , ( RRRB72 , Set.singleton RBRR72 ) , ( RRRL72 , Set.singleton RLRR72 ) , ( RRRR72 , Set.singleton RRRR72 ) , ( RSER72 , Set.singleton ERRS72 ) , ( SBSB72 , Set.singleton SBSB72 ) , ( SESE72 , Set.singleton SESE72 ) , ( SFSI72 , Set.singleton SISF72 ) , ( SISF72 , Set.singleton SFSI72 ) , ( SLSR72 , Set.singleton SRSL72 ) , ( SRSL72 , Set.singleton SLSR72 ) ] -- bcComposition = Map.fromList -- [ ( ( BBBB72 , BBBB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( BBBB72 , BBFF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( BBBB72 , BEIE72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBBB72 , BFII72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBBB72 , BIIF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBBB72 , BLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( BBBB72 , BRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( BBBB72 , BSEF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBBB72 , EBIS72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBBB72 , EFBS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , EIFS72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , ELLS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBBB72 , ERRS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBBB72 , ESES72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , FBII72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBBB72 , FEFE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , FIFI72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBBB72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBBB72 , FSEI72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , IBIB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBBB72 , IEBE72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , IFBI72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , IIBF72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , IIFB72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , ILLR72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBBB72 , IRRL72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBBB72 , ISEB72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBBB72 , LBLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( BBBB72 , LERE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBBB72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBBB72 , LIRL72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBBB72 , LLBR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBBB72 , LLFL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBBB72 , LLLB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBBB72 , LLLL72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( BBBB72 , LLLR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBBB72 , LLRF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBBB72 , LLRL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBBB72 , LLRR72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BBBB72 , LRIL72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBBB72 , LRLL72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( BBBB72 , LRRI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBBB72 , LRRL72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBBB72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBBB72 , LSEL72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBBB72 , RBRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( BBBB72 , RELE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBBB72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBBB72 , RILR72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBBB72 , RLIR72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBBB72 , RLLI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBBB72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBBB72 , RLLR72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBBB72 , RLRR72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( BBBB72 , RRBL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBBB72 , RRFR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBBB72 , RRLF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBBB72 , RRLL72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( BBBB72 , RRLR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBBB72 , RRRB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBBB72 , RRRL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBBB72 , RRRR72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( BBBB72 , RSER72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBBB72 , SBSB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBBB72 , SESE72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , SFSI72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , SISF72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBBB72 , SLSR72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBBB72 , SRSL72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBFF72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , BEIE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , BFII72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBFF72 , BIIF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBFF72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBFF72 , BSEF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , EBIS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , EFBS72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBFF72 , EIFS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , ELLS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBFF72 , ERRS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBFF72 , ESES72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , FBII72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBFF72 , FEFE72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBFF72 , FFBB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( BBFF72 , FFFF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( BBFF72 , FIFI72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBFF72 , FLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( BBFF72 , FRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( BBFF72 , FSEI72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BBFF72 , IBIB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , IEBE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , IFBI72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBFF72 , IIBF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , IIFB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , ILLR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBFF72 , IRRL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BBFF72 , ISEB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBFF72 , LERE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBFF72 , LFRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( BBFF72 , LIRL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBFF72 , LLBR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBFF72 , LLFL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBFF72 , LLLB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBFF72 , LLLL72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( BBFF72 , LLLR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BBFF72 , LLRF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBFF72 , LLRL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BBFF72 , LLRR72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( BBFF72 , LRIL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBFF72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBFF72 , LRRI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBFF72 , LRRL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BBFF72 , LRRR72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( BBFF72 , LSEL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BBFF72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBFF72 , RELE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBFF72 , RFLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( BBFF72 , RILR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBFF72 , RLIR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBFF72 , RLLI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBFF72 , RLLL72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( BBFF72 , RLLR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBFF72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BBFF72 , RRBL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBFF72 , RRFR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBFF72 , RRLF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBFF72 , RRLL72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( BBFF72 , RRLR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BBFF72 , RRRB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBFF72 , RRRL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BBFF72 , RRRR72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BBFF72 , RSER72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BBFF72 , SBSB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BBFF72 , SESE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , SFSI72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BBFF72 , SISF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BBFF72 , SLSR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BBFF72 , SRSL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BEIE72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BEIE72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BEIE72 , BEIE72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( BEIE72 , BFII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BEIE72 , BIIF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( BEIE72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BEIE72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BEIE72 , BSEF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BEIE72 , EBIS72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( BEIE72 , EFBS72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( BEIE72 , EIFS72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( BEIE72 , ELLS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( BEIE72 , ERRS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( BEIE72 , ESES72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( BEIE72 , FBII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BEIE72 , FEFE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( BEIE72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( BEIE72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( BEIE72 , FIFI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( BEIE72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( BEIE72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( BEIE72 , FSEI72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BEIE72 , IBIB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( BEIE72 , IEBE72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( BEIE72 , IFBI72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( BEIE72 , IIBF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( BEIE72 , IIFB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( BEIE72 , ILLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( BEIE72 , IRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( BEIE72 , ISEB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( BEIE72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BEIE72 , LERE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( BEIE72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( BEIE72 , LIRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( BEIE72 , LLBR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BEIE72 , LLFL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BEIE72 , LLLB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( BEIE72 , LLLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BEIE72 , LLLR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( BEIE72 , LLRF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( BEIE72 , LLRL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( BEIE72 , LLRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BEIE72 , LRIL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BEIE72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BEIE72 , LRRI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( BEIE72 , LRRL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( BEIE72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( BEIE72 , LSEL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BEIE72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BEIE72 , RELE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( BEIE72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( BEIE72 , RILR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( BEIE72 , RLIR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BEIE72 , RLLI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( BEIE72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( BEIE72 , RLLR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( BEIE72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BEIE72 , RRBL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BEIE72 , RRFR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BEIE72 , RRLF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( BEIE72 , RRLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BEIE72 , RRLR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( BEIE72 , RRRB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( BEIE72 , RRRL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( BEIE72 , RRRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BEIE72 , RSER72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BEIE72 , SBSB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BEIE72 , SESE72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( BEIE72 , SFSI72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BEIE72 , SISF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( BEIE72 , SLSR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BEIE72 , SRSL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BFII72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BFII72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BFII72 , BEIE72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BFII72 , BFII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BFII72 , BIIF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BFII72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BFII72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BFII72 , BSEF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BFII72 , EBIS72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BFII72 , EFBS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( BFII72 , EIFS72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( BFII72 , ELLS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( BFII72 , ERRS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( BFII72 , ESES72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BFII72 , FBII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BFII72 , FEFE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( BFII72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( BFII72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( BFII72 , FIFI72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( BFII72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( BFII72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( BFII72 , FSEI72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( BFII72 , IBIB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BFII72 , IEBE72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( BFII72 , IFBI72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( BFII72 , IIBF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( BFII72 , IIFB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( BFII72 , ILLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( BFII72 , IRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( BFII72 , ISEB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( BFII72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BFII72 , LERE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( BFII72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( BFII72 , LIRL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( BFII72 , LLBR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BFII72 , LLFL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BFII72 , LLLB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BFII72 , LLLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BFII72 , LLLR72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( BFII72 , LLRF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BFII72 , LLRL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( BFII72 , LLRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BFII72 , LRIL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BFII72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BFII72 , LRRI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( BFII72 , LRRL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( BFII72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( BFII72 , LSEL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BFII72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BFII72 , RELE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( BFII72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( BFII72 , RILR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( BFII72 , RLIR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BFII72 , RLLI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( BFII72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( BFII72 , RLLR72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( BFII72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BFII72 , RRBL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BFII72 , RRFR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BFII72 , RRLF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BFII72 , RRLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BFII72 , RRLR72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( BFII72 , RRRB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BFII72 , RRRL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BFII72 , RRRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BFII72 , RSER72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BFII72 , SBSB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BFII72 , SESE72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BFII72 , SFSI72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( BFII72 , SISF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( BFII72 , SLSR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BFII72 , SRSL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BIIF72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BIIF72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BIIF72 , BEIE72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( BIIF72 , BFII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( BIIF72 , BIIF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( BIIF72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BIIF72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BIIF72 , BSEF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BIIF72 , EBIS72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( BIIF72 , EFBS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( BIIF72 , EIFS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( BIIF72 , ELLS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( BIIF72 , ERRS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( BIIF72 , ESES72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( BIIF72 , FBII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( BIIF72 , FEFE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( BIIF72 , FFBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( BIIF72 , FFFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( BIIF72 , FIFI72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( BIIF72 , FLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( BIIF72 , FRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( BIIF72 , FSEI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( BIIF72 , IBIB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( BIIF72 , IEBE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( BIIF72 , IFBI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( BIIF72 , IIBF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( BIIF72 , IIFB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( BIIF72 , ILLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( BIIF72 , IRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( BIIF72 , ISEB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( BIIF72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BIIF72 , LERE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( BIIF72 , LFRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( BIIF72 , LIRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( BIIF72 , LLBR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BIIF72 , LLFL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BIIF72 , LLLB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( BIIF72 , LLLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( BIIF72 , LLLR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( BIIF72 , LLRF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( BIIF72 , LLRL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( BIIF72 , LLRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( BIIF72 , LRIL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BIIF72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BIIF72 , LRRI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( BIIF72 , LRRL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( BIIF72 , LRRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( BIIF72 , LSEL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BIIF72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BIIF72 , RELE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( BIIF72 , RFLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( BIIF72 , RILR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( BIIF72 , RLIR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BIIF72 , RLLI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( BIIF72 , RLLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( BIIF72 , RLLR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( BIIF72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BIIF72 , RRBL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BIIF72 , RRFR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BIIF72 , RRLF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( BIIF72 , RRLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( BIIF72 , RRLR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( BIIF72 , RRRB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( BIIF72 , RRRL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( BIIF72 , RRRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BIIF72 , RSER72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BIIF72 , SBSB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BIIF72 , SESE72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( BIIF72 , SFSI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( BIIF72 , SISF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( BIIF72 , SLSR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BIIF72 , SRSL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BLRR72 , BBBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BLRR72 , BBFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BLRR72 , BEIE72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BLRR72 , BFII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BLRR72 , BIIF72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BLRR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( BLRR72 , BRLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( BLRR72 , BSEF72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BLRR72 , EBIS72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BLRR72 , EFBS72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BLRR72 , EIFS72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BLRR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( BLRR72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( BLRR72 , ESES72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BLRR72 , FBII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BLRR72 , FEFE72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BLRR72 , FFBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BLRR72 , FFFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BLRR72 , FIFI72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BLRR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( BLRR72 , FRRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( BLRR72 , FSEI72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BLRR72 , IBIB72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BLRR72 , IEBE72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BLRR72 , IFBI72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BLRR72 , IIBF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BLRR72 , IIFB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BLRR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( BLRR72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( BLRR72 , ISEB72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BLRR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( BLRR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( BLRR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( BLRR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( BLRR72 , LLBR72 ) -- , Set.fromList -- [ BBBB72, LLRR72, RRLL72 ] ) -- , ( ( BLRR72 , LLFL72 ) -- , Set.fromList -- [ BBFF72, LLLL72, RRRR72 ] ) -- , ( ( BLRR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( BLRR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( BLRR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( BLRR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( BLRR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( BLRR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BLRR72 , LRIL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, LRLL72 -- , RLRR72 ] ) -- , ( ( BLRR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( BLRR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( BLRR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( BLRR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( BLRR72 , LSEL72 ) -- , Set.fromList -- [ BBFF72, LBLL72, RBRR72 ] ) -- , ( ( BLRR72 , RBRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( BLRR72 , RELE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( BLRR72 , RFLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( BLRR72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( BLRR72 , RLIR72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LRLL72, RLRR72 -- , SBSB72 ] ) -- , ( ( BLRR72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( BLRR72 , RLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( BLRR72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( BLRR72 , RLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BLRR72 , RRBL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( BLRR72 , RRFR72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( BLRR72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BLRR72 , RRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BLRR72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BLRR72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BLRR72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BLRR72 , RRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BLRR72 , RSER72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LBLL72, RBRR72 -- , SBSB72 ] ) -- , ( ( BLRR72 , SBSB72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BLRR72 , SESE72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BLRR72 , SFSI72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BLRR72 , SISF72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BLRR72 , SLSR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72 ] ) -- , ( ( BLRR72 , SRSL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72 -- , BSEF72 ] ) -- , ( ( BRLL72 , BBBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BRLL72 , BBFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BRLL72 , BEIE72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BRLL72 , BFII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BRLL72 , BIIF72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BRLL72 , BLRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( BRLL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( BRLL72 , BSEF72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BRLL72 , EBIS72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BRLL72 , EFBS72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BRLL72 , EIFS72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BRLL72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( BRLL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( BRLL72 , ESES72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BRLL72 , FBII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BRLL72 , FEFE72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BRLL72 , FFBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BRLL72 , FFFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BRLL72 , FIFI72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BRLL72 , FLLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( BRLL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( BRLL72 , FSEI72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BRLL72 , IBIB72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BRLL72 , IEBE72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BRLL72 , IFBI72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BRLL72 , IIBF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BRLL72 , IIFB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BRLL72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( BRLL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( BRLL72 , ISEB72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BRLL72 , LBLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( BRLL72 , LERE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( BRLL72 , LFRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( BRLL72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( BRLL72 , LLBR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( BRLL72 , LLFL72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( BRLL72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BRLL72 , LLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BRLL72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( BRLL72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LRIL72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LRLL72, RLRR72 -- , SBSB72 ] ) -- , ( ( BRLL72 , LRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( BRLL72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( BRLL72 , LSEL72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LBLL72, RBRR72 -- , SBSB72 ] ) -- , ( ( BRLL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( BRLL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( BRLL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( BRLL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( BRLL72 , RLIR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, LRLL72 -- , RLRR72 ] ) -- , ( ( BRLL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( BRLL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( BRLL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( BRLL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( BRLL72 , RRBL72 ) -- , Set.fromList -- [ BBBB72, LLRR72, RRLL72 ] ) -- , ( ( BRLL72 , RRFR72 ) -- , Set.fromList -- [ BBFF72, LLLL72, RRRR72 ] ) -- , ( ( BRLL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( BRLL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( BRLL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( BRLL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( BRLL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( BRLL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BRLL72 , RSER72 ) -- , Set.fromList -- [ BBFF72, LBLL72, RBRR72 ] ) -- , ( ( BRLL72 , SBSB72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BRLL72 , SESE72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BRLL72 , SFSI72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BRLL72 , SISF72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BRLL72 , SLSR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72 -- , BSEF72 ] ) -- , ( ( BRLL72 , SRSL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72 ] ) -- , ( ( BSEF72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BSEF72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BSEF72 , BEIE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( BSEF72 , BFII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( BSEF72 , BIIF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BSEF72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BSEF72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BSEF72 , BSEF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BSEF72 , EBIS72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( BSEF72 , EFBS72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( BSEF72 , EIFS72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( BSEF72 , ELLS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( BSEF72 , ERRS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( BSEF72 , ESES72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( BSEF72 , FBII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( BSEF72 , FEFE72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( BSEF72 , FFBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( BSEF72 , FFFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( BSEF72 , FIFI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( BSEF72 , FLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( BSEF72 , FRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( BSEF72 , FSEI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( BSEF72 , IBIB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BSEF72 , IEBE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( BSEF72 , IFBI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( BSEF72 , IIBF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BSEF72 , IIFB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BSEF72 , ILLR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BSEF72 , IRRL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( BSEF72 , ISEB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BSEF72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BSEF72 , LERE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( BSEF72 , LFRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( BSEF72 , LIRL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BSEF72 , LLBR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BSEF72 , LLFL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BSEF72 , LLLB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( BSEF72 , LLLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( BSEF72 , LLLR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( BSEF72 , LLRF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( BSEF72 , LLRL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( BSEF72 , LLRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( BSEF72 , LRIL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BSEF72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BSEF72 , LRRI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( BSEF72 , LRRL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( BSEF72 , LRRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( BSEF72 , LSEL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( BSEF72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BSEF72 , RELE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( BSEF72 , RFLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( BSEF72 , RILR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BSEF72 , RLIR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BSEF72 , RLLI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( BSEF72 , RLLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( BSEF72 , RLLR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BSEF72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( BSEF72 , RRBL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BSEF72 , RRFR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BSEF72 , RRLF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( BSEF72 , RRLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( BSEF72 , RRLR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( BSEF72 , RRRB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( BSEF72 , RRRL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( BSEF72 , RRRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( BSEF72 , RSER72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( BSEF72 , SBSB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( BSEF72 , SESE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( BSEF72 , SFSI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( BSEF72 , SISF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( BSEF72 , SLSR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( BSEF72 , SRSL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( EBIS72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EBIS72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EBIS72 , BEIE72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( EBIS72 , BFII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( EBIS72 , BIIF72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( EBIS72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( EBIS72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( EBIS72 , BSEF72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( EBIS72 , EBIS72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( EBIS72 , EFBS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( EBIS72 , EIFS72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( EBIS72 , ELLS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( EBIS72 , ERRS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( EBIS72 , ESES72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( EBIS72 , FBII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( EBIS72 , FEFE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( EBIS72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( EBIS72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( EBIS72 , FIFI72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( EBIS72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( EBIS72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( EBIS72 , FSEI72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( EBIS72 , IBIB72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( EBIS72 , IEBE72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( EBIS72 , IFBI72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( EBIS72 , IIBF72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( EBIS72 , IIFB72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( EBIS72 , ILLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( EBIS72 , IRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( EBIS72 , ISEB72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( EBIS72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( EBIS72 , LERE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( EBIS72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( EBIS72 , LIRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( EBIS72 , LLBR72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( EBIS72 , LLFL72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( EBIS72 , LLLB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( EBIS72 , LLLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( EBIS72 , LLLR72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( EBIS72 , LLRF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( EBIS72 , LLRL72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( EBIS72 , LLRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( EBIS72 , LRIL72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( EBIS72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( EBIS72 , LRRI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( EBIS72 , LRRL72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( EBIS72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( EBIS72 , LSEL72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( EBIS72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( EBIS72 , RELE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( EBIS72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( EBIS72 , RILR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( EBIS72 , RLIR72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( EBIS72 , RLLI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( EBIS72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( EBIS72 , RLLR72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( EBIS72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( EBIS72 , RRBL72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( EBIS72 , RRFR72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( EBIS72 , RRLF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( EBIS72 , RRLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( EBIS72 , RRLR72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( EBIS72 , RRRB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( EBIS72 , RRRL72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( EBIS72 , RRRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( EBIS72 , RSER72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( EBIS72 , SBSB72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( EBIS72 , SESE72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( EBIS72 , SFSI72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( EBIS72 , SISF72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( EBIS72 , SLSR72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( EBIS72 , SRSL72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( EFBS72 , BBBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( EFBS72 , BBFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( EFBS72 , BEIE72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( EFBS72 , BFII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( EFBS72 , BIIF72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( EFBS72 , BLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( EFBS72 , BRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( EFBS72 , BSEF72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( EFBS72 , EBIS72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( EFBS72 , EFBS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EFBS72 , EIFS72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EFBS72 , ELLS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( EFBS72 , ERRS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( EFBS72 , ESES72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( EFBS72 , FBII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( EFBS72 , FEFE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EFBS72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EFBS72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EFBS72 , FIFI72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EFBS72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( EFBS72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( EFBS72 , FSEI72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( EFBS72 , IBIB72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( EFBS72 , IEBE72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EFBS72 , IFBI72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EFBS72 , IIBF72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EFBS72 , IIFB72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EFBS72 , ILLR72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( EFBS72 , IRRL72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( EFBS72 , ISEB72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( EFBS72 , LBLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( EFBS72 , LERE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( EFBS72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( EFBS72 , LIRL72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( EFBS72 , LLBR72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( EFBS72 , LLFL72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( EFBS72 , LLLB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( EFBS72 , LLLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( EFBS72 , LLLR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( EFBS72 , LLRF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( EFBS72 , LLRL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( EFBS72 , LLRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( EFBS72 , LRIL72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( EFBS72 , LRLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( EFBS72 , LRRI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( EFBS72 , LRRL72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( EFBS72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( EFBS72 , LSEL72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( EFBS72 , RBRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( EFBS72 , RELE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( EFBS72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( EFBS72 , RILR72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( EFBS72 , RLIR72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( EFBS72 , RLLI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( EFBS72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( EFBS72 , RLLR72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( EFBS72 , RLRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( EFBS72 , RRBL72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( EFBS72 , RRFR72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( EFBS72 , RRLF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( EFBS72 , RRLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( EFBS72 , RRLR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( EFBS72 , RRRB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( EFBS72 , RRRL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( EFBS72 , RRRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( EFBS72 , RSER72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( EFBS72 , SBSB72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( EFBS72 , SESE72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( EFBS72 , SFSI72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( EFBS72 , SISF72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( EFBS72 , SLSR72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( EFBS72 , SRSL72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( EIFS72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( EIFS72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( EIFS72 , BEIE72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( EIFS72 , BFII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( EIFS72 , BIIF72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( EIFS72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( EIFS72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( EIFS72 , BSEF72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( EIFS72 , EBIS72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( EIFS72 , EFBS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( EIFS72 , EIFS72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( EIFS72 , ELLS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( EIFS72 , ERRS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( EIFS72 , ESES72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( EIFS72 , FBII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( EIFS72 , FEFE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( EIFS72 , FFBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( EIFS72 , FFFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( EIFS72 , FIFI72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( EIFS72 , FLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( EIFS72 , FRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( EIFS72 , FSEI72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( EIFS72 , IBIB72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( EIFS72 , IEBE72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( EIFS72 , IFBI72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( EIFS72 , IIBF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( EIFS72 , IIFB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( EIFS72 , ILLR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( EIFS72 , IRRL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( EIFS72 , ISEB72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( EIFS72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( EIFS72 , LERE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( EIFS72 , LFRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( EIFS72 , LIRL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( EIFS72 , LLBR72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( EIFS72 , LLFL72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( EIFS72 , LLLB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( EIFS72 , LLLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( EIFS72 , LLLR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( EIFS72 , LLRF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( EIFS72 , LLRL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( EIFS72 , LLRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( EIFS72 , LRIL72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( EIFS72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( EIFS72 , LRRI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( EIFS72 , LRRL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( EIFS72 , LRRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( EIFS72 , LSEL72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( EIFS72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( EIFS72 , RELE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( EIFS72 , RFLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( EIFS72 , RILR72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( EIFS72 , RLIR72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( EIFS72 , RLLI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( EIFS72 , RLLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( EIFS72 , RLLR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( EIFS72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( EIFS72 , RRBL72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( EIFS72 , RRFR72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( EIFS72 , RRLF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( EIFS72 , RRLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( EIFS72 , RRLR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( EIFS72 , RRRB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( EIFS72 , RRRL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( EIFS72 , RRRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( EIFS72 , RSER72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( EIFS72 , SBSB72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( EIFS72 , SESE72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( EIFS72 , SFSI72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( EIFS72 , SISF72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( EIFS72 , SLSR72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( EIFS72 , SRSL72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( ELLS72 , BBBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ELLS72 , BBFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ELLS72 , BEIE72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ELLS72 , BFII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ELLS72 , BIIF72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ELLS72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( ELLS72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( ELLS72 , BSEF72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( ELLS72 , EBIS72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ELLS72 , EFBS72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ELLS72 , EIFS72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ELLS72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( ELLS72 , ERRS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( ELLS72 , ESES72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( ELLS72 , FBII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ELLS72 , FEFE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ELLS72 , FFBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ELLS72 , FFFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ELLS72 , FIFI72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ELLS72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( ELLS72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( ELLS72 , FSEI72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( ELLS72 , IBIB72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ELLS72 , IEBE72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ELLS72 , IFBI72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ELLS72 , IIBF72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ELLS72 , IIFB72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ELLS72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( ELLS72 , IRRL72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( ELLS72 , ISEB72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( ELLS72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( ELLS72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LLBR72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLB72, RRRB72 -- , SBSB72 ] ) -- , ( ( ELLS72 , LLFL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRF72, RRLF72 -- , SISF72 ] ) -- , ( ( ELLS72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ELLS72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ELLS72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ELLS72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ELLS72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ELLS72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ELLS72 , LRIL72 ) -- , Set.fromList -- [ BFII72, IFBI72, LRRI72, RLLI72, SFSI72 ] ) -- , ( ( ELLS72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ELLS72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ELLS72 , LSEL72 ) -- , Set.fromList -- [ BEIE72, IEBE72, LERE72, RELE72, SESE72 ] ) -- , ( ( ELLS72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( ELLS72 , RELE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( ELLS72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( ELLS72 , RILR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( ELLS72 , RLIR72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72, LRRI72, RLLI72 ] ) -- , ( ( ELLS72 , RLLI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( ELLS72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( ELLS72 , RLLR72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( ELLS72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( ELLS72 , RRBL72 ) -- , Set.fromList -- [ FFBB72, LLLB72, RRRB72 ] ) -- , ( ( ELLS72 , RRFR72 ) -- , Set.fromList -- [ FFFF72, LLRF72, RRLF72 ] ) -- , ( ( ELLS72 , RRLF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( ELLS72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( ELLS72 , RRLR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( ELLS72 , RRRB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( ELLS72 , RRRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( ELLS72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( ELLS72 , RSER72 ) -- , Set.fromList -- [ FEFE72, LERE72, RELE72 ] ) -- , ( ( ELLS72 , SBSB72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( ELLS72 , SESE72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( ELLS72 , SFSI72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( ELLS72 , SISF72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( ELLS72 , SLSR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72 ] ) -- , ( ( ELLS72 , SRSL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72 ] ) -- , ( ( ERRS72 , BBBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ERRS72 , BBFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ERRS72 , BEIE72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ERRS72 , BFII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ERRS72 , BIIF72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ERRS72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( ERRS72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( ERRS72 , BSEF72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( ERRS72 , EBIS72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ERRS72 , EFBS72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ERRS72 , EIFS72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ERRS72 , ELLS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( ERRS72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( ERRS72 , ESES72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( ERRS72 , FBII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ERRS72 , FEFE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ERRS72 , FFBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ERRS72 , FFFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ERRS72 , FIFI72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ERRS72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( ERRS72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( ERRS72 , FSEI72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( ERRS72 , IBIB72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ERRS72 , IEBE72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ERRS72 , IFBI72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ERRS72 , IIBF72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ERRS72 , IIFB72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ERRS72 , ILLR72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( ERRS72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( ERRS72 , ISEB72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( ERRS72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( ERRS72 , LERE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( ERRS72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( ERRS72 , LIRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( ERRS72 , LLBR72 ) -- , Set.fromList -- [ FFBB72, LLLB72, RRRB72 ] ) -- , ( ( ERRS72 , LLFL72 ) -- , Set.fromList -- [ FFFF72, LLRF72, RRLF72 ] ) -- , ( ( ERRS72 , LLLB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( ERRS72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( ERRS72 , LLLR72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( ERRS72 , LLRF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( ERRS72 , LLRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( ERRS72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( ERRS72 , LRIL72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72, LRRI72, RLLI72 ] ) -- , ( ( ERRS72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( ERRS72 , LRRI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( ERRS72 , LRRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( ERRS72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( ERRS72 , LSEL72 ) -- , Set.fromList -- [ FEFE72, LERE72, RELE72 ] ) -- , ( ( ERRS72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( ERRS72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RILR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RLIR72 ) -- , Set.fromList -- [ BFII72, IFBI72, LRRI72, RLLI72, SFSI72 ] ) -- , ( ( ERRS72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ERRS72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ERRS72 , RRBL72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLB72, RRRB72 -- , SBSB72 ] ) -- , ( ( ERRS72 , RRFR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRF72, RRLF72 -- , SISF72 ] ) -- , ( ( ERRS72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ERRS72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ERRS72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( ERRS72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ERRS72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ERRS72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( ERRS72 , RSER72 ) -- , Set.fromList -- [ BEIE72, IEBE72, LERE72, RELE72, SESE72 ] ) -- , ( ( ERRS72 , SBSB72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( ERRS72 , SESE72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( ERRS72 , SFSI72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( ERRS72 , SISF72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( ERRS72 , SLSR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72 ] ) -- , ( ( ERRS72 , SRSL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72 ] ) -- , ( ( ESES72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( ESES72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( ESES72 , BEIE72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( ESES72 , BFII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( ESES72 , BIIF72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( ESES72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( ESES72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( ESES72 , BSEF72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( ESES72 , EBIS72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( ESES72 , EFBS72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( ESES72 , EIFS72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( ESES72 , ELLS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( ESES72 , ERRS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( ESES72 , ESES72 ) -- , Set.fromList -- [ SESE72 ] ) -- , ( ( ESES72 , FBII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( ESES72 , FEFE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( ESES72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( ESES72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( ESES72 , FIFI72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( ESES72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( ESES72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( ESES72 , FSEI72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( ESES72 , IBIB72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( ESES72 , IEBE72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( ESES72 , IFBI72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( ESES72 , IIBF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( ESES72 , IIFB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( ESES72 , ILLR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( ESES72 , IRRL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ESES72 , ISEB72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( ESES72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( ESES72 , LERE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( ESES72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( ESES72 , LIRL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( ESES72 , LLBR72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( ESES72 , LLFL72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( ESES72 , LLLB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( ESES72 , LLLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( ESES72 , LLLR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( ESES72 , LLRF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( ESES72 , LLRL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( ESES72 , LLRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( ESES72 , LRIL72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( ESES72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( ESES72 , LRRI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( ESES72 , LRRL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ESES72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( ESES72 , LSEL72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( ESES72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( ESES72 , RELE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( ESES72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( ESES72 , RILR72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ESES72 , RLIR72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( ESES72 , RLLI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( ESES72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( ESES72 , RLLR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ESES72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( ESES72 , RRBL72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( ESES72 , RRFR72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( ESES72 , RRLF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( ESES72 , RRLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( ESES72 , RRLR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ESES72 , RRRB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( ESES72 , RRRL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ESES72 , RRRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( ESES72 , RSER72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( ESES72 , SBSB72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( ESES72 , SESE72 ) -- , Set.fromList -- [ ESES72 ] ) -- , ( ( ESES72 , SFSI72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( ESES72 , SISF72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( ESES72 , SLSR72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( ESES72 , SRSL72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( FBII72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FBII72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FBII72 , BEIE72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FBII72 , BFII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FBII72 , BIIF72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FBII72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FBII72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FBII72 , BSEF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FBII72 , EBIS72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FBII72 , EFBS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( FBII72 , EIFS72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( FBII72 , ELLS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( FBII72 , ERRS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( FBII72 , ESES72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FBII72 , FBII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FBII72 , FEFE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( FBII72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( FBII72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( FBII72 , FIFI72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72 ] ) -- , ( ( FBII72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( FBII72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( FBII72 , FSEI72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FBII72 , IBIB72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FBII72 , IEBE72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( FBII72 , IFBI72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, SBSB72 ] ) -- , ( ( FBII72 , IIBF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( FBII72 , IIFB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( FBII72 , ILLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( FBII72 , IRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( FBII72 , ISEB72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FBII72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FBII72 , LERE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( FBII72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( FBII72 , LIRL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( FBII72 , LLBR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FBII72 , LLFL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FBII72 , LLLB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FBII72 , LLLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FBII72 , LLLR72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FBII72 , LLRF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FBII72 , LLRL72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( FBII72 , LLRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FBII72 , LRIL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FBII72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FBII72 , LRRI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( FBII72 , LRRL72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( FBII72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( FBII72 , LSEL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FBII72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FBII72 , RELE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( FBII72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( FBII72 , RILR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( FBII72 , RLIR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FBII72 , RLLI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( FBII72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( FBII72 , RLLR72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( FBII72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FBII72 , RRBL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FBII72 , RRFR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FBII72 , RRLF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FBII72 , RRLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FBII72 , RRLR72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( FBII72 , RRRB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FBII72 , RRRL72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( FBII72 , RRRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FBII72 , RSER72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FBII72 , SBSB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FBII72 , SESE72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FBII72 , SFSI72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FBII72 , SISF72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FBII72 , SLSR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FBII72 , SRSL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FEFE72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FEFE72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FEFE72 , BEIE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( FEFE72 , BFII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( FEFE72 , BIIF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FEFE72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FEFE72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FEFE72 , BSEF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FEFE72 , EBIS72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( FEFE72 , EFBS72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( FEFE72 , EIFS72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( FEFE72 , ELLS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( FEFE72 , ERRS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( FEFE72 , ESES72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( FEFE72 , FBII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( FEFE72 , FEFE72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( FEFE72 , FFBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( FEFE72 , FFFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( FEFE72 , FIFI72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( FEFE72 , FLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( FEFE72 , FRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( FEFE72 , FSEI72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( FEFE72 , IBIB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FEFE72 , IEBE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( FEFE72 , IFBI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( FEFE72 , IIBF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FEFE72 , IIFB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FEFE72 , ILLR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FEFE72 , IRRL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FEFE72 , ISEB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FEFE72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FEFE72 , LERE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( FEFE72 , LFRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( FEFE72 , LIRL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FEFE72 , LLBR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FEFE72 , LLFL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FEFE72 , LLLB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( FEFE72 , LLLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( FEFE72 , LLLR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FEFE72 , LLRF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( FEFE72 , LLRL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FEFE72 , LLRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( FEFE72 , LRIL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FEFE72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FEFE72 , LRRI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( FEFE72 , LRRL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FEFE72 , LRRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( FEFE72 , LSEL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FEFE72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FEFE72 , RELE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( FEFE72 , RFLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( FEFE72 , RILR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FEFE72 , RLIR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FEFE72 , RLLI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( FEFE72 , RLLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( FEFE72 , RLLR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FEFE72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FEFE72 , RRBL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FEFE72 , RRFR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FEFE72 , RRLF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( FEFE72 , RRLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( FEFE72 , RRLR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FEFE72 , RRRB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( FEFE72 , RRRL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FEFE72 , RRRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( FEFE72 , RSER72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FEFE72 , SBSB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FEFE72 , SESE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( FEFE72 , SFSI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( FEFE72 , SISF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FEFE72 , SLSR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FEFE72 , SRSL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFBB72 , BBBB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( FFBB72 , BBFF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( FFBB72 , BEIE72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFBB72 , BFII72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFBB72 , BIIF72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFBB72 , BLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( FFBB72 , BRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( FFBB72 , BSEF72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFBB72 , EBIS72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFBB72 , EFBS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , EIFS72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , ELLS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFBB72 , ERRS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFBB72 , ESES72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , FBII72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFBB72 , FEFE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , FIFI72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFBB72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFBB72 , FSEI72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , IBIB72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFBB72 , IEBE72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , IFBI72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , IIBF72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , IIFB72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , ILLR72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFBB72 , IRRL72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFBB72 , ISEB72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFBB72 , LBLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( FFBB72 , LERE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFBB72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFBB72 , LIRL72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFBB72 , LLBR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFBB72 , LLFL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFBB72 , LLLB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFBB72 , LLLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( FFBB72 , LLLR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFBB72 , LLRF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFBB72 , LLRL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFBB72 , LLRR72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( FFBB72 , LRIL72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFBB72 , LRLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( FFBB72 , LRRI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFBB72 , LRRL72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFBB72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFBB72 , LSEL72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFBB72 , RBRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( FFBB72 , RELE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFBB72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFBB72 , RILR72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFBB72 , RLIR72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFBB72 , RLLI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFBB72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFBB72 , RLLR72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFBB72 , RLRR72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( FFBB72 , RRBL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFBB72 , RRFR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFBB72 , RRLF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFBB72 , RRLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FFBB72 , RRLR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFBB72 , RRRB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFBB72 , RRRL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFBB72 , RRRR72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( FFBB72 , RSER72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFBB72 , SBSB72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFBB72 , SESE72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , SFSI72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , SISF72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFBB72 , SLSR72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFBB72 , SRSL72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFFF72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , BEIE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , BFII72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFFF72 , BIIF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFFF72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFFF72 , BSEF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , EBIS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , EFBS72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFFF72 , EIFS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , ELLS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFFF72 , ERRS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFFF72 , ESES72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , FBII72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFFF72 , FEFE72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFFF72 , FFBB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( FFFF72 , FFFF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, SESE72, SFSI72, SISF72 ] ) -- , ( ( FFFF72 , FIFI72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFFF72 , FLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, SRSL72 ] ) -- , ( ( FFFF72 , FRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, SLSR72 ] ) -- , ( ( FFFF72 , FSEI72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, SFSI72 ] ) -- , ( ( FFFF72 , IBIB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , IEBE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , IFBI72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFFF72 , IIBF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , IIFB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , ILLR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFFF72 , IRRL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FFFF72 , ISEB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFFF72 , LERE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFFF72 , LFRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RSER72 ] ) -- , ( ( FFFF72 , LIRL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFFF72 , LLBR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFFF72 , LLFL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFFF72 , LLLB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFFF72 , LLLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FFFF72 , LLLR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FFFF72 , LLRF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFFF72 , LLRL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FFFF72 , LLRR72 ) -- , Set.fromList -- [ RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( FFFF72 , LRIL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFFF72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFFF72 , LRRI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFFF72 , LRRL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FFFF72 , LRRR72 ) -- , Set.fromList -- [ RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 ] ) -- , ( ( FFFF72 , LSEL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FFFF72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFFF72 , RELE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFFF72 , RFLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LSEL72 ] ) -- , ( ( FFFF72 , RILR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFFF72 , RLIR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFFF72 , RLLI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFFF72 , RLLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( FFFF72 , RLLR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFFF72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FFFF72 , RRBL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFFF72 , RRFR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFFF72 , RRLF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFFF72 , RRLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( FFFF72 , RRLR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FFFF72 , RRRB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFFF72 , RRRL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FFFF72 , RRRR72 ) -- , Set.fromList -- [ LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 ] ) -- , ( ( FFFF72 , RSER72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FFFF72 , SBSB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FFFF72 , SESE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , SFSI72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72 ] ) -- , ( ( FFFF72 , SISF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FFFF72 , SLSR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FFFF72 , SRSL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FIFI72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FIFI72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FIFI72 , BEIE72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( FIFI72 , BFII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( FIFI72 , BIIF72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( FIFI72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FIFI72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FIFI72 , BSEF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FIFI72 , EBIS72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( FIFI72 , EFBS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( FIFI72 , EIFS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( FIFI72 , ELLS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( FIFI72 , ERRS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( FIFI72 , ESES72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( FIFI72 , FBII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( FIFI72 , FEFE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( FIFI72 , FFBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( FIFI72 , FFFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( FIFI72 , FIFI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( FIFI72 , FLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( FIFI72 , FRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( FIFI72 , FSEI72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( FIFI72 , IBIB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( FIFI72 , IEBE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( FIFI72 , IFBI72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( FIFI72 , IIBF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( FIFI72 , IIFB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( FIFI72 , ILLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( FIFI72 , IRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( FIFI72 , ISEB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( FIFI72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FIFI72 , LERE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( FIFI72 , LFRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( FIFI72 , LIRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( FIFI72 , LLBR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FIFI72 , LLFL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FIFI72 , LLLB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( FIFI72 , LLLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( FIFI72 , LLLR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FIFI72 , LLRF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( FIFI72 , LLRL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( FIFI72 , LLRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( FIFI72 , LRIL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FIFI72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FIFI72 , LRRI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( FIFI72 , LRRL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( FIFI72 , LRRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( FIFI72 , LSEL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FIFI72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FIFI72 , RELE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( FIFI72 , RFLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( FIFI72 , RILR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( FIFI72 , RLIR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FIFI72 , RLLI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( FIFI72 , RLLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( FIFI72 , RLLR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( FIFI72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FIFI72 , RRBL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FIFI72 , RRFR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FIFI72 , RRLF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( FIFI72 , RRLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( FIFI72 , RRLR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( FIFI72 , RRRB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( FIFI72 , RRRL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( FIFI72 , RRRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( FIFI72 , RSER72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FIFI72 , SBSB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FIFI72 , SESE72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( FIFI72 , SFSI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( FIFI72 , SISF72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( FIFI72 , SLSR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FIFI72 , SRSL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FLLL72 , BBBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FLLL72 , BBFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FLLL72 , BEIE72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FLLL72 , BFII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FLLL72 , BIIF72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FLLL72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( FLLL72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( FLLL72 , BSEF72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FLLL72 , EBIS72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FLLL72 , EFBS72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FLLL72 , EIFS72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FLLL72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( FLLL72 , ERRS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( FLLL72 , ESES72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FLLL72 , FBII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FLLL72 , FEFE72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FLLL72 , FFBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FLLL72 , FFFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FLLL72 , FIFI72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FLLL72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( FLLL72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( FLLL72 , FSEI72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FLLL72 , IBIB72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FLLL72 , IEBE72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FLLL72 , IFBI72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FLLL72 , IIBF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FLLL72 , IIFB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FLLL72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( FLLL72 , IRRL72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( FLLL72 , ISEB72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FLLL72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( FLLL72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( FLLL72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( FLLL72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( FLLL72 , LLBR72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( FLLL72 , LLFL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( FLLL72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FLLL72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FLLL72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FLLL72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FLLL72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FLLL72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FLLL72 , LRIL72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LRRR72, RLLL72 -- , SFSI72 ] ) -- , ( ( FLLL72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FLLL72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( FLLL72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( FLLL72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( FLLL72 , LSEL72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LFRR72, RFLL72 -- , SFSI72 ] ) -- , ( ( FLLL72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( FLLL72 , RELE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( FLLL72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( FLLL72 , RILR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( FLLL72 , RLIR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72, LRRR72 -- , RLLL72 ] ) -- , ( ( FLLL72 , RLLI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( FLLL72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( FLLL72 , RLLR72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( FLLL72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( FLLL72 , RRBL72 ) -- , Set.fromList -- [ FFBB72, LLLL72, RRRR72 ] ) -- , ( ( FLLL72 , RRFR72 ) -- , Set.fromList -- [ FFFF72, LLRR72, RRLL72 ] ) -- , ( ( FLLL72 , RRLF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( FLLL72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FLLL72 , RRLR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( FLLL72 , RRRB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( FLLL72 , RRRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( FLLL72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( FLLL72 , RSER72 ) -- , Set.fromList -- [ FFFF72, LFRR72, RFLL72 ] ) -- , ( ( FLLL72 , SBSB72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FLLL72 , SESE72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FLLL72 , SFSI72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FLLL72 , SISF72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FLLL72 , SLSR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72 ] ) -- , ( ( FLLL72 , SRSL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72 ] ) -- , ( ( FRRR72 , BBBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FRRR72 , BBFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FRRR72 , BEIE72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FRRR72 , BFII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FRRR72 , BIIF72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FRRR72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( FRRR72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( FRRR72 , BSEF72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FRRR72 , EBIS72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FRRR72 , EFBS72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FRRR72 , EIFS72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FRRR72 , ELLS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( FRRR72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( FRRR72 , ESES72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FRRR72 , FBII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FRRR72 , FEFE72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FRRR72 , FFBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FRRR72 , FFFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FRRR72 , FIFI72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FRRR72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( FRRR72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( FRRR72 , FSEI72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FRRR72 , IBIB72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FRRR72 , IEBE72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FRRR72 , IFBI72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FRRR72 , IIBF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FRRR72 , IIFB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FRRR72 , ILLR72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( FRRR72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( FRRR72 , ISEB72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FRRR72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( FRRR72 , LERE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( FRRR72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( FRRR72 , LIRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( FRRR72 , LLBR72 ) -- , Set.fromList -- [ FFBB72, LLLL72, RRRR72 ] ) -- , ( ( FRRR72 , LLFL72 ) -- , Set.fromList -- [ FFFF72, LLRR72, RRLL72 ] ) -- , ( ( FRRR72 , LLLB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( FRRR72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FRRR72 , LLLR72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( FRRR72 , LLRF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( FRRR72 , LLRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( FRRR72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( FRRR72 , LRIL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72, LRRR72 -- , RLLL72 ] ) -- , ( ( FRRR72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( FRRR72 , LRRI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( FRRR72 , LRRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( FRRR72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( FRRR72 , LSEL72 ) -- , Set.fromList -- [ FFFF72, LFRR72, RFLL72 ] ) -- , ( ( FRRR72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( FRRR72 , RELE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( FRRR72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( FRRR72 , RILR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( FRRR72 , RLIR72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LRRR72, RLLL72 -- , SFSI72 ] ) -- , ( ( FRRR72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( FRRR72 , RRBL72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( FRRR72 , RRFR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( FRRR72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( FRRR72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FRRR72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FRRR72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( FRRR72 , RSER72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LFRR72, RFLL72 -- , SFSI72 ] ) -- , ( ( FRRR72 , SBSB72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FRRR72 , SESE72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FRRR72 , SFSI72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FRRR72 , SISF72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FRRR72 , SLSR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72 ] ) -- , ( ( FRRR72 , SRSL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72 ] ) -- , ( ( FSEI72 , BBBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FSEI72 , BBFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FSEI72 , BEIE72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( FSEI72 , BFII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FSEI72 , BIIF72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( FSEI72 , BLRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FSEI72 , BRLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( FSEI72 , BSEF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( FSEI72 , EBIS72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( FSEI72 , EFBS72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( FSEI72 , EIFS72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( FSEI72 , ELLS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( FSEI72 , ERRS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( FSEI72 , ESES72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( FSEI72 , FBII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FSEI72 , FEFE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( FSEI72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( FSEI72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( FSEI72 , FIFI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( FSEI72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( FSEI72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( FSEI72 , FSEI72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( FSEI72 , IBIB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( FSEI72 , IEBE72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( FSEI72 , IFBI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( FSEI72 , IIBF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( FSEI72 , IIFB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( FSEI72 , ILLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( FSEI72 , IRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( FSEI72 , ISEB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( FSEI72 , LBLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FSEI72 , LERE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( FSEI72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( FSEI72 , LIRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( FSEI72 , LLBR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FSEI72 , LLFL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FSEI72 , LLLB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( FSEI72 , LLLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( FSEI72 , LLLR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( FSEI72 , LLRF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( FSEI72 , LLRL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( FSEI72 , LLRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( FSEI72 , LRIL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FSEI72 , LRLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( FSEI72 , LRRI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( FSEI72 , LRRL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( FSEI72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( FSEI72 , LSEL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( FSEI72 , RBRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FSEI72 , RELE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( FSEI72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( FSEI72 , RILR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( FSEI72 , RLIR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FSEI72 , RLLI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( FSEI72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( FSEI72 , RLLR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( FSEI72 , RLRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( FSEI72 , RRBL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FSEI72 , RRFR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FSEI72 , RRLF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( FSEI72 , RRLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( FSEI72 , RRLR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( FSEI72 , RRRB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( FSEI72 , RRRL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( FSEI72 , RRRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( FSEI72 , RSER72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( FSEI72 , SBSB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( FSEI72 , SESE72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( FSEI72 , SFSI72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( FSEI72 , SISF72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( FSEI72 , SLSR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( FSEI72 , SRSL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( IBIB72 , BBBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IBIB72 , BBFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( IBIB72 , BEIE72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( IBIB72 , BFII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( IBIB72 , BIIF72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( IBIB72 , BLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( IBIB72 , BRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( IBIB72 , BSEF72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IBIB72 , EBIS72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( IBIB72 , EFBS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( IBIB72 , EIFS72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( IBIB72 , ELLS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( IBIB72 , ERRS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( IBIB72 , ESES72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( IBIB72 , FBII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( IBIB72 , FEFE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( IBIB72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( IBIB72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( IBIB72 , FIFI72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72 ] ) -- , ( ( IBIB72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( IBIB72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( IBIB72 , FSEI72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( IBIB72 , IBIB72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( IBIB72 , IEBE72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( IBIB72 , IFBI72 ) -- , Set.fromList -- [ BBBB72, IBIB72, SBSB72 ] ) -- , ( ( IBIB72 , IIBF72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( IBIB72 , IIFB72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( IBIB72 , ILLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( IBIB72 , IRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( IBIB72 , ISEB72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IBIB72 , LBLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( IBIB72 , LERE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( IBIB72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( IBIB72 , LIRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( IBIB72 , LLBR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IBIB72 , LLFL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IBIB72 , LLLB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( IBIB72 , LLLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( IBIB72 , LLLR72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( IBIB72 , LLRF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( IBIB72 , LLRL72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( IBIB72 , LLRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IBIB72 , LRIL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IBIB72 , LRLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IBIB72 , LRRI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( IBIB72 , LRRL72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( IBIB72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( IBIB72 , LSEL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IBIB72 , RBRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( IBIB72 , RELE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( IBIB72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( IBIB72 , RILR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( IBIB72 , RLIR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IBIB72 , RLLI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( IBIB72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( IBIB72 , RLLR72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( IBIB72 , RLRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( IBIB72 , RRBL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IBIB72 , RRFR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IBIB72 , RRLF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( IBIB72 , RRLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( IBIB72 , RRLR72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( IBIB72 , RRRB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( IBIB72 , RRRL72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( IBIB72 , RRRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( IBIB72 , RSER72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IBIB72 , SBSB72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IBIB72 , SESE72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( IBIB72 , SFSI72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( IBIB72 , SISF72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IBIB72 , SLSR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IBIB72 , SRSL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IEBE72 , BBBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( IEBE72 , BBFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( IEBE72 , BEIE72 ) -- , Set.fromList -- [ BEIE72, IEBE72, SESE72 ] ) -- , ( ( IEBE72 , BFII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( IEBE72 , BIIF72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IEBE72 , BLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( IEBE72 , BRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( IEBE72 , BSEF72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IEBE72 , EBIS72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72 ] ) -- , ( ( IEBE72 , EFBS72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( IEBE72 , EIFS72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( IEBE72 , ELLS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( IEBE72 , ERRS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( IEBE72 , ESES72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( IEBE72 , FBII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( IEBE72 , FEFE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( IEBE72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( IEBE72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( IEBE72 , FIFI72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( IEBE72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( IEBE72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( IEBE72 , FSEI72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( IEBE72 , IBIB72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IEBE72 , IEBE72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( IEBE72 , IFBI72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( IEBE72 , IIBF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IEBE72 , IIFB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IEBE72 , ILLR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IEBE72 , IRRL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IEBE72 , ISEB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IEBE72 , LBLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( IEBE72 , LERE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( IEBE72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( IEBE72 , LIRL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IEBE72 , LLBR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IEBE72 , LLFL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IEBE72 , LLLB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( IEBE72 , LLLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( IEBE72 , LLLR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IEBE72 , LLRF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( IEBE72 , LLRL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IEBE72 , LLRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( IEBE72 , LRIL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IEBE72 , LRLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( IEBE72 , LRRI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( IEBE72 , LRRL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IEBE72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( IEBE72 , LSEL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IEBE72 , RBRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( IEBE72 , RELE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( IEBE72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( IEBE72 , RILR72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IEBE72 , RLIR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IEBE72 , RLLI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( IEBE72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( IEBE72 , RLLR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IEBE72 , RLRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( IEBE72 , RRBL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IEBE72 , RRFR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IEBE72 , RRLF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( IEBE72 , RRLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( IEBE72 , RRLR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IEBE72 , RRRB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( IEBE72 , RRRL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IEBE72 , RRRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( IEBE72 , RSER72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IEBE72 , SBSB72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IEBE72 , SESE72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( IEBE72 , SFSI72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( IEBE72 , SISF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IEBE72 , SLSR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IEBE72 , SRSL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IFBI72 , BBBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( IFBI72 , BBFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( IFBI72 , BEIE72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( IFBI72 , BFII72 ) -- , Set.fromList -- [ BFII72, IFBI72, SFSI72 ] ) -- , ( ( IFBI72 , BIIF72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( IFBI72 , BLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( IFBI72 , BRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( IFBI72 , BSEF72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IFBI72 , EBIS72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( IFBI72 , EFBS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( IFBI72 , EIFS72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( IFBI72 , ELLS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( IFBI72 , ERRS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( IFBI72 , ESES72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( IFBI72 , FBII72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72 ] ) -- , ( ( IFBI72 , FEFE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( IFBI72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( IFBI72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( IFBI72 , FIFI72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( IFBI72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( IFBI72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( IFBI72 , FSEI72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( IFBI72 , IBIB72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( IFBI72 , IEBE72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( IFBI72 , IFBI72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( IFBI72 , IIBF72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IFBI72 , IIFB72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( IFBI72 , ILLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( IFBI72 , IRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( IFBI72 , ISEB72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IFBI72 , LBLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( IFBI72 , LERE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( IFBI72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( IFBI72 , LIRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( IFBI72 , LLBR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IFBI72 , LLFL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IFBI72 , LLLB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( IFBI72 , LLLL72 ) -- , Set.fromList -- [ LLFL72, LLLL72, LLRL72 ] ) -- , ( ( IFBI72 , LLLR72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( IFBI72 , LLRF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( IFBI72 , LLRL72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( IFBI72 , LLRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRR72 ] ) -- , ( ( IFBI72 , LRIL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IFBI72 , LRLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( IFBI72 , LRRI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( IFBI72 , LRRL72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( IFBI72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( IFBI72 , LSEL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IFBI72 , RBRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( IFBI72 , RELE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( IFBI72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( IFBI72 , RILR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( IFBI72 , RLIR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IFBI72 , RLLI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( IFBI72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( IFBI72 , RLLR72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IFBI72 , RLRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( IFBI72 , RRBL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IFBI72 , RRFR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IFBI72 , RRLF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( IFBI72 , RRLL72 ) -- , Set.fromList -- [ RRBL72, RRLL72, RRRL72 ] ) -- , ( ( IFBI72 , RRLR72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( IFBI72 , RRRB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( IFBI72 , RRRL72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IFBI72 , RRRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRR72 ] ) -- , ( ( IFBI72 , RSER72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IFBI72 , SBSB72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IFBI72 , SESE72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( IFBI72 , SFSI72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( IFBI72 , SISF72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IFBI72 , SLSR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IFBI72 , SRSL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIBF72 , BBBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( IIBF72 , BBFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( IIBF72 , BEIE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIBF72 , BFII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( IIBF72 , BIIF72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIBF72 , BLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( IIBF72 , BRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( IIBF72 , BSEF72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIBF72 , EBIS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIBF72 , EFBS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIBF72 , EIFS72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIBF72 , ELLS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IIBF72 , ERRS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIBF72 , ESES72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIBF72 , FBII72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( IIBF72 , FEFE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIBF72 , FFBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIBF72 , FFFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( IIBF72 , FIFI72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIBF72 , FLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( IIBF72 , FRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( IIBF72 , FSEI72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIBF72 , IBIB72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIBF72 , IEBE72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIBF72 , IFBI72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIBF72 , IIBF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIBF72 , IIFB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIBF72 , ILLR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IIBF72 , IRRL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIBF72 , ISEB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIBF72 , LBLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( IIBF72 , LERE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIBF72 , LFRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( IIBF72 , LIRL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIBF72 , LLBR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIBF72 , LLFL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIBF72 , LLLB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIBF72 , LLLL72 ) -- , Set.fromList -- [ LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 ] ) -- , ( ( IIBF72 , LLLR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIBF72 , LLRF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIBF72 , LLRL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIBF72 , LLRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( IIBF72 , LRIL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIBF72 , LRLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( IIBF72 , LRRI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIBF72 , LRRL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIBF72 , LRRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( IIBF72 , LSEL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIBF72 , RBRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( IIBF72 , RELE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIBF72 , RFLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( IIBF72 , RILR72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIBF72 , RLIR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIBF72 , RLLI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIBF72 , RLLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IIBF72 , RLLR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIBF72 , RLRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( IIBF72 , RRBL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIBF72 , RRFR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIBF72 , RRLF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIBF72 , RRLL72 ) -- , Set.fromList -- [ RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IIBF72 , RRLR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIBF72 , RRRB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIBF72 , RRRL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIBF72 , RRRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IIBF72 , RSER72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIBF72 , SBSB72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIBF72 , SESE72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIBF72 , SFSI72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIBF72 , SISF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIBF72 , SLSR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IIBF72 , SRSL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIFB72 , BBBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIFB72 , BBFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( IIFB72 , BEIE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIFB72 , BFII72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72 ] ) -- , ( ( IIFB72 , BIIF72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIFB72 , BLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( IIFB72 , BRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( IIFB72 , BSEF72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( IIFB72 , EBIS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIFB72 , EFBS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIFB72 , EIFS72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIFB72 , ELLS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIFB72 , ERRS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IIFB72 , ESES72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIFB72 , FBII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, SESE72 -- , SFSI72, SISF72 ] ) -- , ( ( IIFB72 , FEFE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIFB72 , FFBB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, SBSB72 ] ) -- , ( ( IIFB72 , FFFF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, SISF72 ] ) -- , ( ( IIFB72 , FIFI72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIFB72 , FLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, SRSL72 ] ) -- , ( ( IIFB72 , FRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, SLSR72 ] ) -- , ( ( IIFB72 , FSEI72 ) -- , Set.fromList -- [ BIIF72, IIBF72, SISF72 ] ) -- , ( ( IIFB72 , IBIB72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIFB72 , IEBE72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIFB72 , IFBI72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIFB72 , IIBF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIFB72 , IIFB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIFB72 , ILLR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIFB72 , IRRL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IIFB72 , ISEB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( IIFB72 , LBLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( IIFB72 , LERE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIFB72 , LFRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RSER72 ] ) -- , ( ( IIFB72 , LIRL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIFB72 , LLBR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIFB72 , LLFL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIFB72 , LLLB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIFB72 , LLLL72 ) -- , Set.fromList -- [ RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IIFB72 , LLLR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IIFB72 , LLRF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIFB72 , LLRL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IIFB72 , LLRR72 ) -- , Set.fromList -- [ RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IIFB72 , LRIL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIFB72 , LRLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IIFB72 , LRRI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIFB72 , LRRL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IIFB72 , LRRR72 ) -- , Set.fromList -- [ RLIR72, RLLR72, RLRR72 ] ) -- , ( ( IIFB72 , LSEL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IIFB72 , RBRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( IIFB72 , RELE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIFB72 , RFLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LSEL72 ] ) -- , ( ( IIFB72 , RILR72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIFB72 , RLIR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIFB72 , RLLI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIFB72 , RLLL72 ) -- , Set.fromList -- [ LRIL72, LRLL72, LRRL72 ] ) -- , ( ( IIFB72 , RLLR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IIFB72 , RLRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( IIFB72 , RRBL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIFB72 , RRFR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIFB72 , RRLF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIFB72 , RRLL72 ) -- , Set.fromList -- [ LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 ] ) -- , ( ( IIFB72 , RRLR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IIFB72 , RRRB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIFB72 , RRRL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IIFB72 , RRRR72 ) -- , Set.fromList -- [ LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 ] ) -- , ( ( IIFB72 , RSER72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IIFB72 , SBSB72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( IIFB72 , SESE72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIFB72 , SFSI72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ISEB72 ] ) -- , ( ( IIFB72 , SISF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( IIFB72 , SLSR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IIFB72 , SRSL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ILLR72 , BBBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( ILLR72 , BBFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( ILLR72 , BEIE72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ILLR72 , BFII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ILLR72 , BIIF72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ILLR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( ILLR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( ILLR72 , BSEF72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( ILLR72 , EBIS72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ILLR72 , EFBS72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ILLR72 , EIFS72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ILLR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( ILLR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( ILLR72 , ESES72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ILLR72 , FBII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ILLR72 , FEFE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ILLR72 , FFBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ILLR72 , FFFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ILLR72 , FIFI72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ILLR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( ILLR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( ILLR72 , FSEI72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ILLR72 , IBIB72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ILLR72 , IEBE72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ILLR72 , IFBI72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ILLR72 , IIBF72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ILLR72 , IIFB72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ILLR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( ILLR72 , IRRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( ILLR72 , ISEB72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ILLR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( ILLR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LLBR72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLR72, RRRL72 -- , SBSB72 ] ) -- , ( ( ILLR72 , LLFL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRL72, RRLR72 -- , SISF72 ] ) -- , ( ( ILLR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ILLR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( ILLR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( ILLR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( ILLR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( ILLR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( ILLR72 , LRIL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, LRRL72 -- , RLLR72, SESE72, SFSI72, SISF72 ] ) -- , ( ( ILLR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( ILLR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( ILLR72 , LSEL72 ) -- , Set.fromList -- [ BIIF72, IIBF72, LIRL72, RILR72, SISF72 ] ) -- , ( ( ILLR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( ILLR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RILR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RLIR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72, LRRL72, RLLR72 ] ) -- , ( ( ILLR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ILLR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( ILLR72 , RRBL72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLLR72 -- , RRRL72 ] ) -- , ( ( ILLR72 , RRFR72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLRL72 -- , RRLR72 ] ) -- , ( ( ILLR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( ILLR72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( ILLR72 , RRLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( ILLR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( ILLR72 , RRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( ILLR72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( ILLR72 , RSER72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72, LIRL72, RILR72 ] ) -- , ( ( ILLR72 , SBSB72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( ILLR72 , SESE72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ILLR72 , SFSI72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ILLR72 , SISF72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ILLR72 , SLSR72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72 ] ) -- , ( ( ILLR72 , SRSL72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72 ] ) -- , ( ( IRRL72 , BBBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( IRRL72 , BBFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( IRRL72 , BEIE72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IRRL72 , BFII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IRRL72 , BIIF72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( IRRL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( IRRL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( IRRL72 , BSEF72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( IRRL72 , EBIS72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IRRL72 , EFBS72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IRRL72 , EIFS72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IRRL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , ESES72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IRRL72 , FBII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IRRL72 , FEFE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IRRL72 , FFBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IRRL72 , FFFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IRRL72 , FIFI72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IRRL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , FSEI72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IRRL72 , IBIB72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( IRRL72 , IEBE72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IRRL72 , IFBI72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IRRL72 , IIBF72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( IRRL72 , IIFB72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( IRRL72 , ILLR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , ISEB72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( IRRL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IRRL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LIRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LLBR72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLLR72 -- , RRRL72 ] ) -- , ( ( IRRL72 , LLFL72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLRL72 -- , RRLR72 ] ) -- , ( ( IRRL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , LLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( IRRL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LLRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( IRRL72 , LRIL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72, LRRL72, RLLR72 ] ) -- , ( ( IRRL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( IRRL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , LRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( IRRL72 , LSEL72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72, LIRL72, RILR72 ] ) -- , ( ( IRRL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( IRRL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RLIR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, LRRL72 -- , RLLR72, SESE72, SFSI72, SISF72 ] ) -- , ( ( IRRL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( IRRL72 , RRBL72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLR72, RRRL72 -- , SBSB72 ] ) -- , ( ( IRRL72 , RRFR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRL72, RRLR72 -- , SISF72 ] ) -- , ( ( IRRL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( IRRL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( IRRL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( IRRL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( IRRL72 , RSER72 ) -- , Set.fromList -- [ BIIF72, IIBF72, LIRL72, RILR72, SISF72 ] ) -- , ( ( IRRL72 , SBSB72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( IRRL72 , SESE72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IRRL72 , SFSI72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IRRL72 , SISF72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( IRRL72 , SLSR72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72 ] ) -- , ( ( IRRL72 , SRSL72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72 ] ) -- , ( ( ISEB72 , BBBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( ISEB72 , BBFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( ISEB72 , BEIE72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( ISEB72 , BFII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( ISEB72 , BIIF72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( ISEB72 , BLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( ISEB72 , BRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( ISEB72 , BSEF72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( ISEB72 , EBIS72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( ISEB72 , EFBS72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( ISEB72 , EIFS72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( ISEB72 , ELLS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( ISEB72 , ERRS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( ISEB72 , ESES72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( ISEB72 , FBII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( ISEB72 , FEFE72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( ISEB72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( ISEB72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( ISEB72 , FIFI72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( ISEB72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( ISEB72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( ISEB72 , FSEI72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( ISEB72 , IBIB72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( ISEB72 , IEBE72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( ISEB72 , IFBI72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( ISEB72 , IIBF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( ISEB72 , IIFB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( ISEB72 , ILLR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( ISEB72 , IRRL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( ISEB72 , ISEB72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( ISEB72 , LBLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( ISEB72 , LERE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( ISEB72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( ISEB72 , LIRL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( ISEB72 , LLBR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( ISEB72 , LLFL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( ISEB72 , LLLB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( ISEB72 , LLLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( ISEB72 , LLLR72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( ISEB72 , LLRF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( ISEB72 , LLRL72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( ISEB72 , LLRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( ISEB72 , LRIL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ISEB72 , LRLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( ISEB72 , LRRI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( ISEB72 , LRRL72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( ISEB72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( ISEB72 , LSEL72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( ISEB72 , RBRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( ISEB72 , RELE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( ISEB72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( ISEB72 , RILR72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ISEB72 , RLIR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ISEB72 , RLLI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( ISEB72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( ISEB72 , RLLR72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( ISEB72 , RLRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( ISEB72 , RRBL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ISEB72 , RRFR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ISEB72 , RRLF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( ISEB72 , RRLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( ISEB72 , RRLR72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( ISEB72 , RRRB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( ISEB72 , RRRL72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( ISEB72 , RRRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( ISEB72 , RSER72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( ISEB72 , SBSB72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( ISEB72 , SESE72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( ISEB72 , SFSI72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( ISEB72 , SISF72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( ISEB72 , SLSR72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( ISEB72 , SRSL72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( LBLL72 , BBBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LBLL72 , BBFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LBLL72 , BEIE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( LBLL72 , BFII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LBLL72 , BIIF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LBLL72 , BLRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LBLL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( LBLL72 , BSEF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LBLL72 , EBIS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( LBLL72 , EFBS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( LBLL72 , EIFS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( LBLL72 , ELLS72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72 -- , BSEF72 ] ) -- , ( ( LBLL72 , ERRS72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72 ] ) -- , ( ( LBLL72 , ESES72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( LBLL72 , FBII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LBLL72 , FEFE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( LBLL72 , FFBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LBLL72 , FFFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LBLL72 , FIFI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LBLL72 , FLLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LBLL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LBLL72 , FSEI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LBLL72 , IBIB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LBLL72 , IEBE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( LBLL72 , IFBI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LBLL72 , IIBF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LBLL72 , IIFB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LBLL72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LBLL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( LBLL72 , ISEB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LBLL72 , LBLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LBLL72 , LERE72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LBLL72, RBRR72 -- , SBSB72 ] ) -- , ( ( LBLL72 , LFRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LBLL72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LBLL72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LBLL72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LBLL72 , LLLB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( LBLL72 , LLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LBLL72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LBLL72 , LLRF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( LBLL72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LBLL72 , LLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LBLL72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LBLL72 , LRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LBLL72 , LRRI72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LRLL72, RLRR72 -- , SBSB72 ] ) -- , ( ( LBLL72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LBLL72 , LRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LBLL72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LBLL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( LBLL72 , RELE72 ) -- , Set.fromList -- [ BBFF72, LBLL72, RBRR72 ] ) -- , ( ( LBLL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LBLL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( LBLL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( LBLL72 , RLLI72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, LRLL72 -- , RLRR72 ] ) -- , ( ( LBLL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LBLL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( LBLL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( LBLL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( LBLL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( LBLL72 , RRLF72 ) -- , Set.fromList -- [ BBFF72, LLLL72, RRRR72 ] ) -- , ( ( LBLL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LBLL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( LBLL72 , RRRB72 ) -- , Set.fromList -- [ BBBB72, LLRR72, RRLL72 ] ) -- , ( ( LBLL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( LBLL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LBLL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( LBLL72 , SBSB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LBLL72 , SESE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( LBLL72 , SFSI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LBLL72 , SISF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LBLL72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LBLL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( LERE72 , BBBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LERE72 , BBFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LERE72 , BEIE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( LERE72 , BFII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LERE72 , BIIF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LERE72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LERE72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LERE72 , BSEF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LERE72 , EBIS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( LERE72 , EFBS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( LERE72 , EIFS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( LERE72 , ELLS72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72 ] ) -- , ( ( LERE72 , ERRS72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72 ] ) -- , ( ( LERE72 , ESES72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( LERE72 , FBII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LERE72 , FEFE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( LERE72 , FFBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( LERE72 , FFFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( LERE72 , FIFI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LERE72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LERE72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LERE72 , FSEI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LERE72 , IBIB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LERE72 , IEBE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( LERE72 , IFBI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LERE72 , IIBF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LERE72 , IIFB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LERE72 , ILLR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LERE72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LERE72 , ISEB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LERE72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LERE72 , LERE72 ) -- , Set.fromList -- [ FEFE72, LERE72, RELE72 ] ) -- , ( ( LERE72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LERE72 , LIRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LERE72 , LLBR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LERE72 , LLFL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LERE72 , LLLB72 ) -- , Set.fromList -- [ FFBB72, LLLB72, RRRB72 ] ) -- , ( ( LERE72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( LERE72 , LLLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LERE72 , LLRF72 ) -- , Set.fromList -- [ FFFF72, LLRF72, RRLF72 ] ) -- , ( ( LERE72 , LLRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LERE72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( LERE72 , LRIL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LERE72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LERE72 , LRRI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72, LRRI72, RLLI72 ] ) -- , ( ( LERE72 , LRRL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LERE72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LERE72 , LSEL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LERE72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LERE72 , RELE72 ) -- , Set.fromList -- [ BEIE72, IEBE72, LERE72, RELE72, SESE72 ] ) -- , ( ( LERE72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( LERE72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LERE72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LERE72 , RLLI72 ) -- , Set.fromList -- [ BFII72, IFBI72, LRRI72, RLLI72, SFSI72 ] ) -- , ( ( LERE72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LERE72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LERE72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LERE72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LERE72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LERE72 , RRLF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRF72, RRLF72 -- , SISF72 ] ) -- , ( ( LERE72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LERE72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LERE72 , RRRB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLB72, RRRB72 -- , SBSB72 ] ) -- , ( ( LERE72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LERE72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LERE72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LERE72 , SBSB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LERE72 , SESE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( LERE72 , SFSI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LERE72 , SISF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LERE72 , SLSR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LERE72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LFRR72 , BBBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LFRR72 , BBFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LFRR72 , BEIE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( LFRR72 , BFII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LFRR72 , BIIF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LFRR72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( LFRR72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LFRR72 , BSEF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LFRR72 , EBIS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( LFRR72 , EFBS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( LFRR72 , EIFS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( LFRR72 , ELLS72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72 ] ) -- , ( ( LFRR72 , ERRS72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72 ] ) -- , ( ( LFRR72 , ESES72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( LFRR72 , FBII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LFRR72 , FEFE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( LFRR72 , FFBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LFRR72 , FFFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LFRR72 , FIFI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LFRR72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LFRR72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LFRR72 , FSEI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LFRR72 , IBIB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LFRR72 , IEBE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( LFRR72 , IFBI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LFRR72 , IIBF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LFRR72 , IIFB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LFRR72 , ILLR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( LFRR72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LFRR72 , ISEB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LFRR72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( LFRR72 , LERE72 ) -- , Set.fromList -- [ FFFF72, LFRR72, RFLL72 ] ) -- , ( ( LFRR72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LFRR72 , LIRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( LFRR72 , LLBR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( LFRR72 , LLFL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( LFRR72 , LLLB72 ) -- , Set.fromList -- [ FFBB72, LLLL72, RRRR72 ] ) -- , ( ( LFRR72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LFRR72 , LLLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( LFRR72 , LLRF72 ) -- , Set.fromList -- [ FFFF72, LLRR72, RRLL72 ] ) -- , ( ( LFRR72 , LLRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( LFRR72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LFRR72 , LRIL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( LFRR72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( LFRR72 , LRRI72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72, LRRR72 -- , RLLL72 ] ) -- , ( ( LFRR72 , LRRL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( LFRR72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LFRR72 , LSEL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( LFRR72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LFRR72 , RELE72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LFRR72, RFLL72 -- , SFSI72 ] ) -- , ( ( LFRR72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LFRR72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LFRR72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LFRR72 , RLLI72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LRRR72, RLLL72 -- , SFSI72 ] ) -- , ( ( LFRR72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LFRR72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LFRR72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LFRR72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LFRR72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LFRR72 , RRLF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( LFRR72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LFRR72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LFRR72 , RRRB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( LFRR72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LFRR72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LFRR72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LFRR72 , SBSB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LFRR72 , SESE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( LFRR72 , SFSI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LFRR72 , SISF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LFRR72 , SLSR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( LFRR72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LIRL72 , BBBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LIRL72 , BBFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LIRL72 , BEIE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( LIRL72 , BFII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LIRL72 , BIIF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LIRL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LIRL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LIRL72 , BSEF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LIRL72 , EBIS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( LIRL72 , EFBS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( LIRL72 , EIFS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( LIRL72 , ELLS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72 ] ) -- , ( ( LIRL72 , ERRS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72 ] ) -- , ( ( LIRL72 , ESES72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( LIRL72 , FBII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LIRL72 , FEFE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( LIRL72 , FFBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( LIRL72 , FFFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( LIRL72 , FIFI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LIRL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LIRL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LIRL72 , FSEI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LIRL72 , IBIB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LIRL72 , IEBE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( LIRL72 , IFBI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LIRL72 , IIBF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LIRL72 , IIFB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LIRL72 , ILLR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LIRL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LIRL72 , ISEB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LIRL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , LERE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72, LIRL72, RILR72 ] ) -- , ( ( LIRL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LIRL72 , LIRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LIRL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LIRL72 , LLLB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLLR72 -- , RRRL72 ] ) -- , ( ( LIRL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LIRL72 , LLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LIRL72 , LLRF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLRL72 -- , RRLR72 ] ) -- , ( ( LIRL72 , LLRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LIRL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LIRL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , LRRI72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72, LRRL72, RLLR72 ] ) -- , ( ( LIRL72 , LRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( LIRL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LIRL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , RELE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, LIRL72, RILR72, SISF72 ] ) -- , ( ( LIRL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LIRL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , RLLI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, LRRL72 -- , RLLR72, SESE72, SFSI72, SISF72 ] ) -- , ( ( LIRL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LIRL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LIRL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LIRL72 , RRLF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRL72, RRLR72 -- , SISF72 ] ) -- , ( ( LIRL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LIRL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LIRL72 , RRRB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLR72, RRRL72 -- , SBSB72 ] ) -- , ( ( LIRL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LIRL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LIRL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LIRL72 , SBSB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LIRL72 , SESE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( LIRL72 , SFSI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LIRL72 , SISF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LIRL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LIRL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLBR72 , BBBB72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( LLBR72 , BBFF72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( LLBR72 , BEIE72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLBR72 , BFII72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLBR72 , BIIF72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLBR72 , BLRR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLBR72 , BRLL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLBR72 , BSEF72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLBR72 , EBIS72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLBR72 , EFBS72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , EIFS72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLBR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLBR72 , ESES72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , FBII72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLBR72 , FEFE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , FFBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , FFFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , FIFI72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLBR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLBR72 , FSEI72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , IBIB72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLBR72 , IEBE72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , IFBI72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , IIBF72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , IIFB72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLBR72 , IRRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLBR72 , ISEB72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLBR72 , LBLL72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( LLBR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLBR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLBR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLBR72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLBR72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLBR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLBR72 , LLLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLBR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLBR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLBR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLBR72 , LLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLBR72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLBR72 , LRLL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLBR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLBR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLBR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLBR72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLBR72 , RBRR72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( LLBR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RILR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RLIR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , RLRR72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLBR72 , RRBL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLBR72 , RRFR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLBR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLBR72 , RRLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLBR72 , RRLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLBR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLBR72 , RRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLBR72 , RRRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLBR72 , RSER72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLBR72 , SBSB72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLBR72 , SESE72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , SFSI72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , SISF72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLBR72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLBR72 , SRSL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLFL72 , BBBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , BBFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , BEIE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , BFII72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLFL72 , BIIF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLFL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLFL72 , BSEF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , EBIS72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , EFBS72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLFL72 , EIFS72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , ELLS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLFL72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLFL72 , ESES72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , FBII72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLFL72 , FEFE72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLFL72 , FFBB72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( LLFL72 , FFFF72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( LLFL72 , FIFI72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLFL72 , FLLL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLFL72 , FRRR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLFL72 , FSEI72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LLFL72 , IBIB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , IEBE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , IFBI72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLFL72 , IIBF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , IIFB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , ILLR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLFL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLFL72 , ISEB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LERE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LFRR72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( LLFL72 , LIRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLFL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLFL72 , LLLB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLFL72 , LLLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLFL72 , LLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LLFL72 , LLRF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLFL72 , LLRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LLFL72 , LLRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLFL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LRRI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , LRRR72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLFL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LLFL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLFL72 , RELE72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLFL72 , RFLL72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( LLFL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLFL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLFL72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLFL72 , RLLL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLFL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLFL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LLFL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLFL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLFL72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLFL72 , RRLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLFL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LLFL72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLFL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LLFL72 , RRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLFL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LLFL72 , SBSB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LLFL72 , SESE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , SFSI72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LLFL72 , SISF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LLFL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LLFL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LLLB72 , BBBB72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( LLLB72 , BBFF72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( LLLB72 , BEIE72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLLB72 , BFII72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLLB72 , BIIF72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLLB72 , BLRR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLLB72 , BRLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LLLB72 , BSEF72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLLB72 , EBIS72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLLB72 , EFBS72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , EIFS72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLLB72 , ERRS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLLB72 , ESES72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , FBII72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLLB72 , FEFE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , FFBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , FFFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , FIFI72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLLB72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLLB72 , FSEI72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , IBIB72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLLB72 , IEBE72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , IFBI72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , IIBF72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , IIFB72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLLB72 , IRRL72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLLB72 , ISEB72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLLB72 , LBLL72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLLB72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLLB72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLLB72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLLB72 , LLLL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLLB72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLLB72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLLB72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLLB72 , LLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLLB72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LRLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( LLLB72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLLB72 , RBRR72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LLLB72 , RELE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLLB72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLLB72 , RILR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLLB72 , RLIR72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLLB72 , RLLI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLLB72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLLB72 , RLLR72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLLB72 , RLRR72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLLB72 , RRBL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLLB72 , RRFR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLLB72 , RRLF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLLB72 , RRLL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLB72 , RRLR72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLLB72 , RRRB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLLB72 , RRRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLLB72 , RRRR72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLBR72, LLFL72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLLB72 , RSER72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLLB72 , SBSB72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLLB72 , SESE72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , SFSI72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , SISF72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLLB72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLLB72 , SRSL72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLLL72 , BBBB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( LLLL72 , BBFF72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( LLLL72 , BEIE72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLLL72 , BFII72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LLLL72, LRLL72, RLLL72 ] ) -- , ( ( LLLL72 , BIIF72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLLL72 , BLRR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLLL72 , BRLL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLL72 , BSEF72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLLL72 , EBIS72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLLL72 , EFBS72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLLL72 , EIFS72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLLL72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LLLL72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLLL72 , ESES72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLLL72 , FBII72 ) -- , Set.fromList -- [ BLRR72, LFRR72, LLRR72, LRRR72, RLRR72 ] ) -- , ( ( LLLL72 , FEFE72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLLL72 , FFBB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( LLLL72 , FFFF72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( LLLL72 , FIFI72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLLL72 , FLLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLLL72 , FRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RBRR72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLL72 , FSEI72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLLL72 , IBIB72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLLL72 , IEBE72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLLL72 , IFBI72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLLL72 , IIBF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLLL72 , IIFB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLLL72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LLLL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLLL72 , ISEB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLLL72 , LBLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLLL72 , LFRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLLL72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLLL72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLL72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLLL72 , LLLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLLL72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLL72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLL72 , LLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLL72 , LRLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LBLL72, LFRR72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72 -- , LRRI72, LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SFSI72, SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLL72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLL72 , LRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LFRR72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72 -- , LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLLL72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLLL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLLL72 , RELE72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , RFLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FLLL72, LBLL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLLL72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLLL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , RLLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLLL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLLL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FFBB72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLLL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLLL72 , RRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, FFFF72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLLL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLLL72 , SBSB72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLLL72 , SESE72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLLL72 , SFSI72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLLL72 , SISF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLLL72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LLLL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLLR72 , BBBB72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( LLLR72 , BBFF72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( LLLR72 , BEIE72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLLR72 , BFII72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLLR72 , BIIF72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLLR72 , BLRR72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LLLR72 , BRLL72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LLLR72 , BSEF72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLLR72 , EBIS72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLLR72 , EFBS72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , EIFS72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLLR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLLR72 , ESES72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , FBII72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLLR72 , FEFE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , FFBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , FFFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , FIFI72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLLR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLLR72 , FSEI72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , IBIB72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLLR72 , IEBE72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , IFBI72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , IIBF72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , IIFB72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLLR72 , IRRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLLR72 , ISEB72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLLR72 , LBLL72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLLR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLLR72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLLR72 , LLLL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72 -- , LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLLR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLLR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLLR72 , LLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72 -- , LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72 -- , RRFR72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLLR72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LRLL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLLR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLLR72 , RBRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RILR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RLIR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , RLRR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LLLR72 , RRBL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RRFR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLLR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLLR72 , RRLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72 -- , RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RRLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLLR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RRRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72 -- , RLLI72, RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLLR72 , RSER72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLLR72 , SBSB72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLLR72 , SESE72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , SFSI72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , SISF72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLLR72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLLR72 , SRSL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLRF72 , BBBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , BBFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , BEIE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , BFII72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLRF72 , BIIF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLRF72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLRF72 , BSEF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , EBIS72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , EFBS72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLRF72 , EIFS72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , ELLS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLRF72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLRF72 , ESES72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , FBII72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLRF72 , FEFE72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLRF72 , FFBB72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( LLRF72 , FFFF72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( LLRF72 , FIFI72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLRF72 , FLLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LLRF72 , FRRR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLRF72 , FSEI72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LLRF72 , IBIB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , IEBE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , IFBI72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLRF72 , IIBF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , IIFB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , ILLR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLRF72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLRF72 , ISEB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLRF72 , LERE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLRF72 , LFRR72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LLRF72 , LIRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLRF72 , LLBR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLRF72 , LLFL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLRF72 , LLLB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLRF72 , LLLL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRF72 , LLLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LLRF72 , LLRF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLRF72 , LLRL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LLRF72 , LLRR72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLBR72, LLFL72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLRF72 , LRIL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLRF72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLRF72 , LRRI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLRF72 , LRRL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LLRF72 , LRRR72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLRF72 , LSEL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LLRF72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RELE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RFLL72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLRF72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RLLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( LLRF72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLRF72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLRF72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLRF72 , RRLL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLRF72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LLRF72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLRF72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LLRF72 , RRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLRF72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LLRF72 , SBSB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LLRF72 , SESE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , SFSI72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LLRF72 , SISF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LLRF72 , SLSR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LLRF72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LLRL72 , BBBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , BBFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , BEIE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , BFII72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLRL72 , BIIF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLRL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLRL72 , BSEF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , EBIS72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , EFBS72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLRL72 , EIFS72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , ELLS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLRL72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLRL72 , ESES72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , FBII72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLRL72 , FEFE72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLRL72 , FFBB72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( LLRL72 , FFFF72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( LLRL72 , FIFI72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLRL72 , FLLL72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LLRL72 , FRRR72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LLRL72 , FSEI72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LLRL72 , IBIB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , IEBE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , IFBI72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLRL72 , IIBF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , IIFB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , ILLR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLRL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLRL72 , ISEB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LERE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LFRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LIRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLRL72 , LLLB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LLLL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72 -- , RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LLRF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLRL72 , LLRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LLRL72 , LLRR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72 -- , RLLI72, RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LRRI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , LRRR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LLRL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LLRL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RELE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RFLL72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLRL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RLLL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLRL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLRL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRL72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRL72 , RRLL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72 -- , LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLRL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRL72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLRL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LLRL72 , RRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72 -- , LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72 -- , RRFR72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLRL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRL72 , SBSB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LLRL72 , SESE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , SFSI72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LLRL72 , SISF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LLRL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LLRL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LLRR72 , BBBB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( LLRR72 , BBFF72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( LLRR72 , BEIE72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLRR72 , BFII72 ) -- , Set.fromList -- [ BLRR72, LFRR72, LLRR72, LRRR72, RLRR72 ] ) -- , ( ( LLRR72 , BIIF72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLRR72 , BLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RBRR72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRR72 , BRLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLRR72 , BSEF72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LLRR72 , EBIS72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLRR72 , EFBS72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLRR72 , EIFS72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLRR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLRR72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LLRR72 , ESES72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLRR72 , FBII72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LLLL72, LRLL72, RLLL72 ] ) -- , ( ( LLRR72 , FEFE72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLRR72 , FFBB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( LLRR72 , FFFF72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( LLRR72 , FIFI72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLRR72 , FLLL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LLRR72 , FRRR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LLRR72 , FSEI72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LLRR72 , IBIB72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLRR72 , IEBE72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLRR72 , IFBI72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLRR72 , IIBF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLRR72 , IIFB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLRR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLRR72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LLRR72 , ISEB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LLRR72 , LBLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FLLL72, LBLL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, RBRR72, RLLL72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLRR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LLRR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLLL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FFBB72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLRR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, LRRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RFLL72, RLLL72, RLRR72, RRLL72, RRRR72 ] ) -- , ( ( LLRR72 , LLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, FFFF72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LLRR72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , LRLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLRR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72 -- , LLLL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LLRR72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72, RLRR72 ] ) -- , ( ( LLRR72 , RBRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RELE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLRR72 , RFLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RILR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLRR72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRR72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRR72 , RLLL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LBLL72, LFRR72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72 -- , LRRI72, LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SFSI72, SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRLL72, LRRR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LLRR72 , RLRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LFRR72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72 -- , LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLRR72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRR72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRR72 , RRLL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LLRR72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLRR72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LLRR72 , RRRR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LLRR72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LLRR72 , SBSB72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LLRR72 , SESE72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLRR72 , SFSI72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LLRR72 , SISF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LLRR72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, LRRR72 ] ) -- , ( ( LLRR72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LRIL72 , BBBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LRIL72 , BBFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LRIL72 , BEIE72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LRIL72 , BFII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LRIL72 , BIIF72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LRIL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LRIL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LRIL72 , BSEF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LRIL72 , EBIS72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LRIL72 , EFBS72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( LRIL72 , EIFS72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( LRIL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , ESES72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LRIL72 , FBII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LRIL72 , FEFE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( LRIL72 , FFBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( LRIL72 , FFFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( LRIL72 , FIFI72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( LRIL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , FSEI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LRIL72 , IBIB72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LRIL72 , IEBE72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( LRIL72 , IFBI72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( LRIL72 , IIBF72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( LRIL72 , IIFB72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( LRIL72 , ILLR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRIL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LRIL72 , ISEB72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( LRIL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LRIL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LIRL72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( LRIL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRIL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LRIL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LRIL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LRIL72 , LLLR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRIL72 , LLRL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRIL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRIL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRIL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LRRL72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LRIL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LRIL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( LRIL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LRIL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RLLR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LRIL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LRIL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LRIL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LRIL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( LRIL72 , RRLR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRIL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRIL72 , RRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRIL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LRIL72 , SBSB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LRIL72 , SESE72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LRIL72 , SFSI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LRIL72 , SISF72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( LRIL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LRIL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LRLL72 , BBBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LRLL72 , BBFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LRLL72 , BEIE72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LRLL72 , BFII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LRLL72 , BIIF72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LRLL72 , BLRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LRLL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( LRLL72 , BSEF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LRLL72 , EBIS72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LRLL72 , EFBS72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LRLL72 , EIFS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( LRLL72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LRLL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRLL72 , ESES72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LRLL72 , FBII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LRLL72 , FEFE72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LRLL72 , FFBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LRLL72 , FFFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LRLL72 , FIFI72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( LRLL72 , FLLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LRLL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRLL72 , FSEI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( LRLL72 , IBIB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LRLL72 , IEBE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( LRLL72 , IFBI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( LRLL72 , IIBF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( LRLL72 , IIFB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( LRLL72 , ILLR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRLL72 , IRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRLL72 , ISEB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( LRLL72 , LBLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LRLL72 , LERE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LRLL72 , LFRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LRLL72 , LIRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRLL72 , LLBR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRLL72 , LLFL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRLL72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRLL72 , LLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRLL72 , LLLR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LRLL72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRLL72 , LLRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LRLL72 , LLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRLL72 , LRIL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRLL72 , LRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRLL72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRLL72 , LRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRLL72 , LRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRLL72 , LSEL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LRLL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( LRLL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LRLL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LRLL72 , RILR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRLL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( LRLL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRLL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRLL72 , RLLR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRLL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( LRLL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( LRLL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( LRLL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( LRLL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRLL72 , RRLR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRLL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRLL72 , RRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRLL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRLL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( LRLL72 , SBSB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LRLL72 , SESE72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LRLL72 , SFSI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( LRLL72 , SISF72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( LRLL72 , SLSR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LRLL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( LRRI72 , BBBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LRRI72 , BBFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LRRI72 , BEIE72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LRRI72 , BFII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LRRI72 , BIIF72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LRRI72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LRRI72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LRRI72 , BSEF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( LRRI72 , EBIS72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LRRI72 , EFBS72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( LRRI72 , EIFS72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( LRRI72 , ELLS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LRRI72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRRI72 , ESES72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LRRI72 , FBII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LRRI72 , FEFE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( LRRI72 , FFBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( LRRI72 , FFFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( LRRI72 , FIFI72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( LRRI72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LRRI72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRRI72 , FSEI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( LRRI72 , IBIB72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LRRI72 , IEBE72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( LRRI72 , IFBI72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( LRRI72 , IIBF72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( LRRI72 , IIFB72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( LRRI72 , ILLR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( LRRI72 , IRRL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRRI72 , ISEB72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( LRRI72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LRRI72 , LERE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LRRI72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LRRI72 , LIRL72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( LRRI72 , LLBR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( LRRI72 , LLFL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( LRRI72 , LLLB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( LRRI72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( LRRI72 , LLLR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRI72 , LLRF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( LRRI72 , LLRL72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRRI72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( LRRI72 , LRIL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LRRI72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( LRRI72 , LRRI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRRI72 , LRRL72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRRI72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRRI72 , LSEL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( LRRI72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LRRI72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( LRRI72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( LRRI72 , RILR72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRI72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRI72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LRRI72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LRRI72 , RLLR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( LRRI72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRI72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LRRI72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LRRI72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LRRI72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( LRRI72 , RRLR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRI72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LRRI72 , RRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRI72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( LRRI72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( LRRI72 , SBSB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( LRRI72 , SESE72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LRRI72 , SFSI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( LRRI72 , SISF72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( LRRI72 , SLSR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( LRRI72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( LRRL72 , BBBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LRRL72 , BBFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LRRL72 , BEIE72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LRRL72 , BFII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LRRL72 , BIIF72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LRRL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LRRL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LRRL72 , BSEF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( LRRL72 , EBIS72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LRRL72 , EFBS72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( LRRL72 , EIFS72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( LRRL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LRRL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , ESES72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LRRL72 , FBII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LRRL72 , FEFE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( LRRL72 , FFBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( LRRL72 , FFFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( LRRL72 , FIFI72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( LRRL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LRRL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , FSEI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( LRRL72 , IBIB72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LRRL72 , IEBE72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( LRRL72 , IFBI72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( LRRL72 , IIBF72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( LRRL72 , IIFB72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( LRRL72 , ILLR72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LRRL72 , IRRL72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , ISEB72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( LRRL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRRL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LIRL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LRRL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LRRL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( LRRL72 , LLLR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LLRL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRRL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRRL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , LRRL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( LRRL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LRRL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RILR72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LRRL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RLLR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LRRL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( LRRL72 , RRLR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRL72 , RRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRL72 , SBSB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( LRRL72 , SESE72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LRRL72 , SFSI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( LRRL72 , SISF72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( LRRL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( LRRL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( LRRR72 , BBBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LRRR72 , BBFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LRRR72 , BEIE72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LRRR72 , BFII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LRRR72 , BIIF72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LRRR72 , BLRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( LRRR72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LRRR72 , BSEF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( LRRR72 , EBIS72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LRRR72 , EFBS72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LRRR72 , EIFS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( LRRR72 , ELLS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRRR72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LRRR72 , ESES72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LRRR72 , FBII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LRRR72 , FEFE72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LRRR72 , FFBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( LRRR72 , FFFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( LRRR72 , FIFI72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( LRRR72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LRRR72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( LRRR72 , FSEI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( LRRR72 , IBIB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LRRR72 , IEBE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( LRRR72 , IFBI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( LRRR72 , IIBF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( LRRR72 , IIFB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( LRRR72 , ILLR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRR72 , IRRL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRRR72 , ISEB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( LRRR72 , LBLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( LRRR72 , LERE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LRRR72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( LRRR72 , LIRL72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRRR72 , LLBR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( LRRR72 , LLFL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( LRRR72 , LLLB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LRRR72 , LLLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRR72 , LLLR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LRRR72 , LLRF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( LRRR72 , LLRL72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRRR72 , LLRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( LRRR72 , LRIL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( LRRR72 , LRLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( LRRR72 , LRRI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRRR72 , LRRL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( LRRR72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( LRRR72 , LSEL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( LRRR72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LRRR72 , RELE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LRRR72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( LRRR72 , RILR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRR72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRR72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRRR72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRRR72 , RLLR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( LRRR72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( LRRR72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRRR72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRR72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRRR72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( LRRR72 , RRLR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( LRRR72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRR72 , RRRL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LRRR72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( LRRR72 , RSER72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( LRRR72 , SBSB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( LRRR72 , SESE72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LRRR72 , SFSI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( LRRR72 , SISF72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( LRRR72 , SLSR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( LRRR72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( LSEL72 , BBBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LSEL72 , BBFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LSEL72 , BEIE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( LSEL72 , BFII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LSEL72 , BIIF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LSEL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LSEL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LSEL72 , BSEF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LSEL72 , EBIS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( LSEL72 , EFBS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( LSEL72 , EIFS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( LSEL72 , ELLS72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( LSEL72 , ERRS72 ) -- , Set.fromList -- [ SBSB72, SLSR72, SRSL72 ] ) -- , ( ( LSEL72 , ESES72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( LSEL72 , FBII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LSEL72 , FEFE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( LSEL72 , FFBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( LSEL72 , FFFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( LSEL72 , FIFI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LSEL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( LSEL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LSEL72 , FSEI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( LSEL72 , IBIB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LSEL72 , IEBE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( LSEL72 , IFBI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LSEL72 , IIBF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LSEL72 , IIFB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LSEL72 , ILLR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LSEL72 , IRRL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( LSEL72 , ISEB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LSEL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , LERE72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72, LSEL72, RSER72 ] ) -- , ( ( LSEL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LSEL72 , LIRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , LLBR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LSEL72 , LLFL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LSEL72 , LLLB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLBR72 -- , RRBL72 ] ) -- , ( ( LSEL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LSEL72 , LLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LSEL72 , LLRF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLFL72 -- , RRFR72 ] ) -- , ( ( LSEL72 , LLRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( LSEL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( LSEL72 , LRIL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , LRRI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72, LRIL72, RLIR72 ] ) -- , ( ( LSEL72 , LRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( LSEL72 , LSEL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( LSEL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LSEL72 , RELE72 ) -- , Set.fromList -- [ BSEF72, LSEL72, RSER72 ] ) -- , ( ( LSEL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LSEL72 , RILR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LSEL72 , RLIR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LSEL72 , RLLI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, LRIL72, RLIR72 ] ) -- , ( ( LSEL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( LSEL72 , RLLR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LSEL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( LSEL72 , RRBL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LSEL72 , RRFR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LSEL72 , RRLF72 ) -- , Set.fromList -- [ BBFF72, LLFL72, RRFR72 ] ) -- , ( ( LSEL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( LSEL72 , RRLR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( LSEL72 , RRRB72 ) -- , Set.fromList -- [ BBBB72, LLBR72, RRBL72 ] ) -- , ( ( LSEL72 , RRRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( LSEL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( LSEL72 , RSER72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( LSEL72 , SBSB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( LSEL72 , SESE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( LSEL72 , SFSI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( LSEL72 , SISF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( LSEL72 , SLSR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( LSEL72 , SRSL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( RBRR72 , BBBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RBRR72 , BBFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RBRR72 , BEIE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( RBRR72 , BFII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RBRR72 , BIIF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RBRR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RBRR72 , BRLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RBRR72 , BSEF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RBRR72 , EBIS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( RBRR72 , EFBS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( RBRR72 , EIFS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( RBRR72 , ELLS72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72 ] ) -- , ( ( RBRR72 , ERRS72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72 -- , BSEF72 ] ) -- , ( ( RBRR72 , ESES72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( RBRR72 , FBII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RBRR72 , FEFE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( RBRR72 , FFBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RBRR72 , FFFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RBRR72 , FIFI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RBRR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( RBRR72 , FRRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RBRR72 , FSEI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RBRR72 , IBIB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RBRR72 , IEBE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( RBRR72 , IFBI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RBRR72 , IIBF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RBRR72 , IIFB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RBRR72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RBRR72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RBRR72 , ISEB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RBRR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RBRR72 , LERE72 ) -- , Set.fromList -- [ BBFF72, LBLL72, RBRR72 ] ) -- , ( ( RBRR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( RBRR72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RBRR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RBRR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RBRR72 , LLLB72 ) -- , Set.fromList -- [ BBBB72, LLRR72, RRLL72 ] ) -- , ( ( RBRR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RBRR72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RBRR72 , LLRF72 ) -- , Set.fromList -- [ BBFF72, LLLL72, RRRR72 ] ) -- , ( ( RBRR72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RBRR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RBRR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RBRR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RBRR72 , LRRI72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, LRLL72 -- , RLRR72 ] ) -- , ( ( RBRR72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RBRR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( RBRR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RBRR72 , RBRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RBRR72 , RELE72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LBLL72, RBRR72 -- , SBSB72 ] ) -- , ( ( RBRR72 , RFLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RBRR72 , RILR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RBRR72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RLLI72 ) -- , Set.fromList -- [ BBBB72, EBIS72, FBII72, IBIB72, LRLL72, RLRR72 -- , SBSB72 ] ) -- , ( ( RBRR72 , RLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RBRR72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RBRR72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RRLF72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( RBRR72 , RRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RBRR72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RRRB72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( RBRR72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RBRR72 , RRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RBRR72 , RSER72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RBRR72 , SBSB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RBRR72 , SESE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( RBRR72 , SFSI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RBRR72 , SISF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RBRR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RBRR72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RELE72 , BBBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RELE72 , BBFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RELE72 , BEIE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( RELE72 , BFII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RELE72 , BIIF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RELE72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RELE72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RELE72 , BSEF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RELE72 , EBIS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( RELE72 , EFBS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( RELE72 , EIFS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( RELE72 , ELLS72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72 ] ) -- , ( ( RELE72 , ERRS72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72 ] ) -- , ( ( RELE72 , ESES72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( RELE72 , FBII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RELE72 , FEFE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( RELE72 , FFBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( RELE72 , FFFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( RELE72 , FIFI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RELE72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( RELE72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( RELE72 , FSEI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RELE72 , IBIB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RELE72 , IEBE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( RELE72 , IFBI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RELE72 , IIBF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RELE72 , IIFB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RELE72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RELE72 , IRRL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RELE72 , ISEB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RELE72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RELE72 , LERE72 ) -- , Set.fromList -- [ BEIE72, IEBE72, LERE72, RELE72, SESE72 ] ) -- , ( ( RELE72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( RELE72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RELE72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RELE72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RELE72 , LLLB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLB72, RRRB72 -- , SBSB72 ] ) -- , ( ( RELE72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RELE72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RELE72 , LLRF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRF72, RRLF72 -- , SISF72 ] ) -- , ( ( RELE72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RELE72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RELE72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RELE72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RELE72 , LRRI72 ) -- , Set.fromList -- [ BFII72, IFBI72, LRRI72, RLLI72, SFSI72 ] ) -- , ( ( RELE72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RELE72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RELE72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RELE72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RELE72 , RELE72 ) -- , Set.fromList -- [ FEFE72, LERE72, RELE72 ] ) -- , ( ( RELE72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( RELE72 , RILR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RELE72 , RLIR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RELE72 , RLLI72 ) -- , Set.fromList -- [ FBII72, FIFI72, FSEI72, LRRI72, RLLI72 ] ) -- , ( ( RELE72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( RELE72 , RLLR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RELE72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RELE72 , RRBL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RELE72 , RRFR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RELE72 , RRLF72 ) -- , Set.fromList -- [ FFFF72, LLRF72, RRLF72 ] ) -- , ( ( RELE72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( RELE72 , RRLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RELE72 , RRRB72 ) -- , Set.fromList -- [ FFBB72, LLLB72, RRRB72 ] ) -- , ( ( RELE72 , RRRL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RELE72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( RELE72 , RSER72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RELE72 , SBSB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RELE72 , SESE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( RELE72 , SFSI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RELE72 , SISF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RELE72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RELE72 , SRSL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RFLL72 , BBBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RFLL72 , BBFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RFLL72 , BEIE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( RFLL72 , BFII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RFLL72 , BIIF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RFLL72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RFLL72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RFLL72 , BSEF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RFLL72 , EBIS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( RFLL72 , EFBS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( RFLL72 , EIFS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( RFLL72 , ELLS72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72 ] ) -- , ( ( RFLL72 , ERRS72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72 ] ) -- , ( ( RFLL72 , ESES72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( RFLL72 , FBII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RFLL72 , FEFE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( RFLL72 , FFBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RFLL72 , FFFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RFLL72 , FIFI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RFLL72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RFLL72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( RFLL72 , FSEI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RFLL72 , IBIB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RFLL72 , IEBE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( RFLL72 , IFBI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RFLL72 , IIBF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RFLL72 , IIFB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RFLL72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RFLL72 , IRRL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RFLL72 , ISEB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RFLL72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RFLL72 , LERE72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LFRR72, RFLL72 -- , SFSI72 ] ) -- , ( ( RFLL72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RFLL72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RFLL72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RFLL72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LLLB72 ) -- , Set.fromList -- [ BBBB72, EBIS72, EIFS72, ESES72, FBII72, FEFE72, FFFF72 -- , FIFI72, FSEI72, IBIB72, IIFB72, ISEB72, LLLL72, RRRR72 -- , SBSB72 ] ) -- , ( ( RFLL72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RFLL72 , LLRF72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BSEF72, EFBS72, FFBB72 -- , IEBE72, IFBI72, IIBF72, LLRR72, RRLL72, SESE72, SFSI72 -- , SISF72 ] ) -- , ( ( RFLL72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RFLL72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LRRI72 ) -- , Set.fromList -- [ BFII72, EFBS72, FFBB72, IFBI72, LRRR72, RLLL72 -- , SFSI72 ] ) -- , ( ( RFLL72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RFLL72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RFLL72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RFLL72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RFLL72 , RELE72 ) -- , Set.fromList -- [ FFFF72, LFRR72, RFLL72 ] ) -- , ( ( RFLL72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( RFLL72 , RILR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RFLL72 , RLIR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RFLL72 , RLLI72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FSEI72, LRRR72 -- , RLLL72 ] ) -- , ( ( RFLL72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( RFLL72 , RLLR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RFLL72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RFLL72 , RRBL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RFLL72 , RRFR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RFLL72 , RRLF72 ) -- , Set.fromList -- [ FFFF72, LLRR72, RRLL72 ] ) -- , ( ( RFLL72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RFLL72 , RRLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RFLL72 , RRRB72 ) -- , Set.fromList -- [ FFBB72, LLLL72, RRRR72 ] ) -- , ( ( RFLL72 , RRRL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RFLL72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RFLL72 , RSER72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RFLL72 , SBSB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RFLL72 , SESE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( RFLL72 , SFSI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RFLL72 , SISF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RFLL72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RFLL72 , SRSL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RILR72 , BBBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RILR72 , BBFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RILR72 , BEIE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( RILR72 , BFII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RILR72 , BIIF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RILR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RILR72 , BSEF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RILR72 , EBIS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( RILR72 , EFBS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( RILR72 , EIFS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( RILR72 , ELLS72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72 ] ) -- , ( ( RILR72 , ERRS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72 ] ) -- , ( ( RILR72 , ESES72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( RILR72 , FBII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RILR72 , FEFE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( RILR72 , FFBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( RILR72 , FFFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( RILR72 , FIFI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RILR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( RILR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( RILR72 , FSEI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RILR72 , IBIB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RILR72 , IEBE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( RILR72 , IFBI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RILR72 , IIBF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RILR72 , IIFB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RILR72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , IRRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RILR72 , ISEB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RILR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LERE72 ) -- , Set.fromList -- [ BIIF72, IIBF72, LIRL72, RILR72, SISF72 ] ) -- , ( ( RILR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RILR72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RILR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LLLB72 ) -- , Set.fromList -- [ BBBB72, IBIB72, IIFB72, ISEB72, LLLR72, RRRL72 -- , SBSB72 ] ) -- , ( ( RILR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RILR72 , LLRF72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BSEF72, IIBF72, LLRL72, RRLR72 -- , SISF72 ] ) -- , ( ( RILR72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RILR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LRRI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, IEBE72, IFBI72, IIBF72, LRRL72 -- , RLLR72, SESE72, SFSI72, SISF72 ] ) -- , ( ( RILR72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RILR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RILR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , RELE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72, LIRL72, RILR72 ] ) -- , ( ( RILR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RILR72 , RILR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , RLLI72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ESES72, FBII72, FIFI72, FSEI72, IBIB72 -- , IIFB72, ISEB72, LRRL72, RLLR72 ] ) -- , ( ( RILR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RILR72 , RLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RILR72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , RRLF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLRL72 -- , RRLR72 ] ) -- , ( ( RILR72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RILR72 , RRLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , RRRB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLLR72 -- , RRRL72 ] ) -- , ( ( RILR72 , RRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RILR72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RILR72 , SBSB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RILR72 , SESE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( RILR72 , SFSI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RILR72 , SISF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RILR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RILR72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLIR72 , BBBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RLIR72 , BBFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RLIR72 , BEIE72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RLIR72 , BFII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RLIR72 , BIIF72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RLIR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , BSEF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RLIR72 , EBIS72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RLIR72 , EFBS72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( RLIR72 , EIFS72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( RLIR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( RLIR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( RLIR72 , ESES72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RLIR72 , FBII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RLIR72 , FEFE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( RLIR72 , FFBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( RLIR72 , FFFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( RLIR72 , FIFI72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72 ] ) -- , ( ( RLIR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( RLIR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( RLIR72 , FSEI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RLIR72 , IBIB72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RLIR72 , IEBE72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( RLIR72 , IFBI72 ) -- , Set.fromList -- [ LLBR72, RLIR72, SLSR72 ] ) -- , ( ( RLIR72 , IIBF72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( RLIR72 , IIFB72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( RLIR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RLIR72 , IRRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLIR72 , ISEB72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RLIR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( RLIR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( RLIR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( RLIR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLIR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RLIR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( RLIR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , LLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( RLIR72 , LLRL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLIR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( RLIR72 , LRRL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( RLIR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLIR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( RLIR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( RLIR72 , RILR72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( RLIR72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLIR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLIR72 , RLLR72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RLIR72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLIR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RLIR72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RLIR72 , RRLR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLIR72 , RRRL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLIR72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , SBSB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RLIR72 , SESE72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RLIR72 , SFSI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RLIR72 , SISF72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RLIR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLIR72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RLLI72 , BBBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RLLI72 , BBFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RLLI72 , BEIE72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RLLI72 , BFII72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RLLI72 , BIIF72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RLLI72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLLI72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RLLI72 , BSEF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RLLI72 , EBIS72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RLLI72 , EFBS72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( RLLI72 , EIFS72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( RLLI72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( RLLI72 , ERRS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( RLLI72 , ESES72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RLLI72 , FBII72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RLLI72 , FEFE72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( RLLI72 , FFBB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( RLLI72 , FFFF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( RLLI72 , FIFI72 ) -- , Set.fromList -- [ LERE72, LLRF72, LRRI72 ] ) -- , ( ( RLLI72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72 ] ) -- , ( ( RLLI72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 ] ) -- , ( ( RLLI72 , FSEI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( RLLI72 , IBIB72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RLLI72 , IEBE72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( RLLI72 , IFBI72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RLLI72 ] ) -- , ( ( RLLI72 , IIBF72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( RLLI72 , IIFB72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( RLLI72 , ILLR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLLI72 , IRRL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RLLI72 , ISEB72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RLLI72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RLLI72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( RLLI72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RLIR72, RLLR72 -- , RLRR72, SLSR72 ] ) -- , ( ( RLLI72 , LIRL72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLI72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RLLI72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RLLI72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RLLI72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RLLI72 , LLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLI72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RLLI72 , LLRL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLI72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RLLI72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RLLI72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RLLI72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLI72 , LRRL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( RLLI72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLI72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RLLI72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RLLI72 , RELE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( RLLI72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RLLL72 ] ) -- , ( ( RLLI72 , RILR72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RLLI72 , RLIR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLLI72 , RLLI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( RLLI72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72, LRIL72 -- , LRLL72, LRRL72, LSEL72, RLLL72 ] ) -- , ( ( RLLI72 , RLLR72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLLI72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLLI72 , RRBL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RLLI72 , RRFR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RLLI72 , RRLF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72 -- , RRLL72 ] ) -- , ( ( RLLI72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRL72, RFLL72, RLLL72, RRBL72 -- , RRLL72, RRRL72 ] ) -- , ( ( RLLI72 , RRLR72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLLI72 , RRRB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72 -- , RRRR72 ] ) -- , ( ( RLLI72 , RRRL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLI72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLR72, LLRR72, LRRR72, RRFR72 -- , RRLR72, RRRR72 ] ) -- , ( ( RLLI72 , RSER72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RLLI72 , SBSB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RLLI72 , SESE72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RLLI72 , SFSI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( RLLI72 , SISF72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RLLI72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLLI72 , SRSL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RLLL72 , BBBB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RLLL72 , BBFF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RLLL72 , BEIE72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RLLL72 , BFII72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RLLL72 , BIIF72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RLLL72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RLLL72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLLL72 , BSEF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RLLL72 , EBIS72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RLLL72 , EFBS72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RLLL72 , EIFS72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( RLLL72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RLLL72 , ERRS72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( RLLL72 , ESES72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RLLL72 , FBII72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RLLL72 , FEFE72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RLLL72 , FFBB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RLLL72 , FFFF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RLLL72 , FIFI72 ) -- , Set.fromList -- [ LFRR72, LLRR72, LRRR72 ] ) -- , ( ( RLLL72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RLLL72 , FRRR72 ) -- , Set.fromList -- [ LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72 ] ) -- , ( ( RLLL72 , FSEI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( RLLL72 , IBIB72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RLLL72 , IEBE72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( RLLL72 , IFBI72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RLLL72 ] ) -- , ( ( RLLL72 , IIBF72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RLLL72 , IIFB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( RLLL72 , ILLR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLLL72 , IRRL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLL72 , ISEB72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RLLL72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RLLL72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RLLL72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RLLL72 , LIRL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLL72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLL72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLLL72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLLL72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLLL72 , LLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RLLL72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLL72 , LLRL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RLLL72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLL72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLLL72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLLL72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLL72 , LRRL72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLL72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LFRR72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRRR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLL72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RLLL72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RLLL72 , RELE72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( RLLL72 , RFLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLLL72 ] ) -- , ( ( RLLL72 , RILR72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLLL72 , RLIR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLLL72 , RLLI72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( RLLL72 , RLLL72 ) -- , Set.fromList -- [ FLLL72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLL72 ] ) -- , ( ( RLLL72 , RLLR72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLLL72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLLL72 , RRBL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLLL72 , RRFR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RLLL72 , RRLF72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRLL72 ] ) -- , ( ( RLLL72 , RRLL72 ) -- , Set.fromList -- [ FLLL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RFLL72 -- , RLLL72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLL72 , RRLR72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLLL72 , RRRB72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRRR72 ] ) -- , ( ( RLLL72 , RRRL72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLL72 , RRRR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLLL72 , RSER72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RLLL72 , SBSB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RLLL72 , SESE72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RLLL72 , SFSI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( RLLL72 , SISF72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RLLL72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RLLL72 , SRSL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLLR72 , BBBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RLLR72 , BBFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RLLR72 , BEIE72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RLLR72 , BFII72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RLLR72 , BIIF72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RLLR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLLR72 , BSEF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RLLR72 , EBIS72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RLLR72 , EFBS72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( RLLR72 , EIFS72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( RLLR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( RLLR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( RLLR72 , ESES72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RLLR72 , FBII72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RLLR72 , FEFE72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( RLLR72 , FFBB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( RLLR72 , FFFF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( RLLR72 , FIFI72 ) -- , Set.fromList -- [ LIRL72, LLRL72, LRRL72 ] ) -- , ( ( RLLR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72 ] ) -- , ( ( RLLR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLBR72, LLLR72, LLRF72, LLRL72 -- , LLRR72, LRRI72, LRRL72, LRRR72 ] ) -- , ( ( RLLR72 , FSEI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( RLLR72 , IBIB72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RLLR72 , IEBE72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( RLLR72 , IFBI72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RLLR72 ] ) -- , ( ( RLLR72 , IIBF72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( RLLR72 , IIFB72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( RLLR72 , ILLR72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , IRRL72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLLR72 , ISEB72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RLLR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RLIR72, RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLR72 , LIRL72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RLLR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLR72 , LLRL72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLLR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLLR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLR72 , LRRL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RLLR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LERE72, LFRR72, LIRL72, LLBR72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RLIR72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLLR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RLLR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLLR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLLR72 , RILR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLLR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LIRL72, LLFL72, LLLB72 -- , LLLL72, LLLR72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RLLR72 , RLLR72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLLR72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RLLR72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72 -- , RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLLR72 , RRLR72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RRRL72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRRI72, LRRL72, LRRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLLR72 , SBSB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RLLR72 , SESE72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RLLR72 , SFSI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( RLLR72 , SISF72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RLLR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RLLR72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RLRR72 , BBBB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RLRR72 , BBFF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RLRR72 , BEIE72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RLRR72 , BFII72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RLRR72 , BIIF72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RLRR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLRR72 , BRLL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RLRR72 , BSEF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RLRR72 , EBIS72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RLRR72 , EFBS72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RLRR72 , EIFS72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( RLRR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( RLRR72 , ERRS72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RLRR72 , ESES72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RLRR72 , FBII72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RLRR72 , FEFE72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RLRR72 , FFBB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( RLRR72 , FFFF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( RLRR72 , FIFI72 ) -- , Set.fromList -- [ LBLL72, LLLL72, LRLL72 ] ) -- , ( ( RLRR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72 ] ) -- , ( ( RLRR72 , FRRR72 ) -- , Set.fromList -- [ LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72 ] ) -- , ( ( RLRR72 , FSEI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( RLRR72 , IBIB72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RLRR72 , IEBE72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( RLRR72 , IFBI72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RLRR72 ] ) -- , ( ( RLRR72 , IIBF72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RLRR72 , IIFB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( RLRR72 , ILLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLRR72 , IRRL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLRR72 , ISEB72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RLRR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RLRR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( RLRR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72 -- , RLRR72 ] ) -- , ( ( RLRR72 , LIRL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLRR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RLRR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RLRR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRLL72 ] ) -- , ( ( RLRR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLBR72, LLLB72, LLLL72, LLLR72, LLRR72 -- , LRLL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLRR72 , LLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLRR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRRR72 ] ) -- , ( ( RLRR72 , LLRL72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RLRR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, RBRR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RLRR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLRR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RLRR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( RLRR72 , LRRL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RLRR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLRR72 ] ) -- , ( ( RLRR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72 ] ) -- , ( ( RLRR72 , RBRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RLRR72 , RELE72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RLRR72 , RFLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , SLSR72 ] ) -- , ( ( RLRR72 , RILR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLRR72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLRR72 , RLLI72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLRR72 , RLLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LBLL72, LLBR72, LLLB72 -- , LLLL72, LLLR72, LLRR72, LRLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, SLSR72 ] ) -- , ( ( RLRR72 , RLLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RLRR72 , RLRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLRR72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLRR72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLRR72 , RRLF72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLRR72 , RRLL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RLRR72 , RRLR72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RLRR72 , RRRB72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLRR72 , RRRL72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RLRR72 , RRRR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RLRR72 , RSER72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RLRR72 , SBSB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RLRR72 , SESE72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RLRR72 , SFSI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( RLRR72 , SISF72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RLRR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RLRR72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRBL72 , BBBB72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( RRBL72 , BBFF72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( RRBL72 , BEIE72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRBL72 , BFII72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRBL72 , BIIF72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRBL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRBL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRBL72 , BSEF72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRBL72 , EBIS72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRBL72 , EFBS72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , EIFS72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , ESES72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , FBII72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRBL72 , FEFE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , FFBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , FFFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , FIFI72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , FSEI72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , IBIB72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRBL72 , IEBE72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , IFBI72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , IIBF72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , IIFB72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , ILLR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , ISEB72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRBL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( RRBL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LIRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LLBR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , LLFL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , LLLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , LLRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , LLRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LRIL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LRLL72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , LSEL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( RRBL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RLRR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , RRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRBL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRBL72 , RRRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRBL72 , RSER72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , SBSB72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRBL72 , SESE72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , SFSI72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , SISF72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRBL72 , SLSR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRBL72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , BBBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , BBFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , BEIE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , BFII72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRFR72 , BIIF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , BSEF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , EBIS72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , EFBS72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRFR72 , EIFS72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , ERRS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , ESES72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , FBII72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRFR72 , FEFE72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRFR72 , FFBB72 ) -- , Set.fromList -- [ LLBR72, RLIR72, RRFR72, RSER72, SLSR72 ] ) -- , ( ( RRFR72 , FFFF72 ) -- , Set.fromList -- [ LLFL72, LRIL72, LSEL72, RRBL72, SRSL72 ] ) -- , ( ( RRFR72 , FIFI72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRFR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RBRR72, RLRR72 -- , RRRB72, RRRL72, RRRR72, SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRFR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72, SESE72, SFSI72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRFR72 , FSEI72 ) -- , Set.fromList -- [ LRIL72, RRBL72, SRSL72 ] ) -- , ( ( RRFR72 , IBIB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , IEBE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , IFBI72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRFR72 , IIBF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , IIFB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , IRRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , ISEB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LERE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, BRLL72, BSEF72, LLRF72, LLRL72, LLRR72, LRLL72 -- , LSEL72, RLRR72, RRLF72, RRLL72, RRLR72, RSER72 ] ) -- , ( ( RRFR72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , LLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , LLRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, LBLL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRLL72, RBRR72, RLRR72, RRFR72, RRLF72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LRRR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, LERE72, LFRR72 -- , LIRL72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RRFR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RELE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, ERRS72, ESES72, FLLL72, FRRR72, FSEI72, ILLR72 -- , IRRL72, ISEB72, LLLB72, LLLL72, LLLR72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RLLI72, RLLL72, RLLR72, RRRB72, RRRL72 -- , RRRR72, RSER72 ] ) -- , ( ( RRFR72 , RILR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RLLI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RLLL72 ) -- , Set.fromList -- [ EBIS72, ELLS72, ERRS72, FBII72, FLLL72, FRRR72, IBIB72 -- , ILLR72, IRRL72, LBLL72, LLLB72, LLLL72, LLLR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, RBRR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , RRLF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , RRLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RRLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RRFR72 , RRRB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , RRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RRFR72 , RRRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , SBSB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RRFR72 , SESE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , SFSI72 ) -- , Set.fromList -- [ RLIR72, RRFR72, RSER72 ] ) -- , ( ( RRFR72 , SISF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RRFR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRFR72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RRLF72 , BBBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , BBFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , BEIE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , BFII72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRLF72 , BIIF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLF72 , BRLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRLF72 , BSEF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , EBIS72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , EFBS72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRLF72 , EIFS72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLF72 , ERRS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRLF72 , ESES72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , FBII72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRLF72 , FEFE72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRLF72 , FFBB72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRLF72 , FFFF72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( RRLF72 , FIFI72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRLF72 , FLLL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLF72 , FRRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRLF72 , FSEI72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRLF72 , IBIB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , IEBE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , IFBI72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRLF72 , IIBF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , IIFB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLF72 , IRRL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRLF72 , ISEB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LERE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LFRR72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRLF72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRLF72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRLF72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRLF72 , LLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRLF72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRLF72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRLF72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRLF72 , LLRR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRLF72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , LRRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( RRLF72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRLF72 , RBRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRLF72 , RELE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRLF72 , RFLL72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRLF72 , RILR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRLF72 , RLIR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLF72 , RLLI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLF72 , RLLL72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLF72 , RLLR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLF72 , RLRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLF72 , RRBL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRLF72 , RRFR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRLF72 , RRLF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRLF72 , RRLL72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72 ] ) -- , ( ( RRLF72 , RRLR72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRLF72 , RRRB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRLF72 , RRRL72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRLF72 , RRRR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLF72 , RSER72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRLF72 , SBSB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRLF72 , SESE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , SFSI72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRLF72 , SISF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRLF72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLF72 , SRSL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRLL72 , BBBB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRLL72 , BBFF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( RRLL72 , BEIE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRLL72 , BFII72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRLL72 , BIIF72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRLL72 , BLRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLL72 , BRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RFLL72, RLLL72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , BSEF72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRLL72 , EBIS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRLL72 , EFBS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRLL72 , EIFS72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRLL72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRLL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , ESES72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRLL72 , FBII72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRLL72 , FEFE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRLL72 , FFBB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRLL72 , FFFF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( RRLL72 , FIFI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRLL72 , FLLL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRLL72 , FRRR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , FSEI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRLL72 , IBIB72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRLL72 , IEBE72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRLL72 , IFBI72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRLL72 , IIBF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRLL72 , IIFB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRLL72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRLL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , ISEB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRLL72 , LBLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LERE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRLL72 , LFRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRLL72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLL72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLL72 , LLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLL72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LLRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRLL72 , LRRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SFSI72, SLSR72, SRSL72 ] ) -- , ( ( RRLL72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRLL72 , RBRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FRRR72, LBLL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, LRRR72, RFLL72, RLLL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLL72 , RLRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , FRRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRLL72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, FFFF72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , RRRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FFBB72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRLL72 , RSER72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRLL72 , SBSB72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRLL72 , SESE72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRLL72 , SFSI72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRLL72 , SISF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRLL72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRLL72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , BBBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , BBFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , BEIE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , BFII72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRLR72 , BIIF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , BSEF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , EBIS72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , EFBS72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRLR72 , EIFS72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , ERRS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , ESES72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , FBII72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRLR72 , FEFE72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRLR72 , FFBB72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRLR72 , FFFF72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( RRLR72 , FIFI72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRLR72 , FLLL72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , FRRR72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , FSEI72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRLR72 , IBIB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , IEBE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , IFBI72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRLR72 , IIBF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , IIFB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , IRRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , ISEB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LERE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LFRR72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRLR72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLR72 , LLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRLR72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRLR72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LLRR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRLR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , LRRR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRLR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRLR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RELE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RFLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RILR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , RLLI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , RLLL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , RLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RRLF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RRLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RRLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RRRB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , RRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRLR72 , RRRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRLR72 , SBSB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRLR72 , SESE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , SFSI72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRLR72 , SISF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRLR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRLR72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRB72 , BBBB72 ) -- , Set.fromList -- [ ELLS72, LLLB72, RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRRB72 , BBFF72 ) -- , Set.fromList -- [ ERRS72, LERE72, LLRF72, LRRI72, RRRB72 ] ) -- , ( ( RRRB72 , BEIE72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRRB72 , BFII72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRRB72 , BIIF72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRRB72 , BLRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, LFRR72, LLBR72, LLLR72, LLRR72 -- , LRRR72, RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRRB72 , BRLL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRB72 , BSEF72 ) -- , Set.fromList -- [ ERRS72, LRRI72, RRRB72 ] ) -- , ( ( RRRB72 , EBIS72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRRB72 , EFBS72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , EIFS72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , ELLS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRRB72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRB72 , ESES72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , FBII72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRRB72 , FEFE72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , FFBB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , FFFF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , FIFI72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , FLLL72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRRB72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRB72 , FSEI72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , IBIB72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRRB72 , IEBE72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , IFBI72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , IIBF72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , IIFB72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , ILLR72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRRB72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRB72 , ISEB72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( RRRB72 , LBLL72 ) -- , Set.fromList -- [ FEFE72, FLLL72, FRRR72, LERE72, LLFL72, LLLL72, LLRL72 -- , LRRR72, RELE72, RLLL72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRRB72 , LERE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRRB72 , LFRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRRB72 , LIRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRRB72 , LLBR72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRRB72 , LLFL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRRB72 , LLLB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRRB72 , LLLL72 ) -- , Set.fromList -- [ FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72 ] ) -- , ( ( RRRB72 , LLLR72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRBL72, RRLL72 -- , RRRL72 ] ) -- , ( ( RRRB72 , LLRF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRRB72 , LLRL72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRFR72, RRLR72 -- , RRRR72 ] ) -- , ( ( RRRB72 , LLRR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RFLL72, RLLL72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRB72 , LRIL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRB72 , LRLL72 ) -- , Set.fromList -- [ FBII72, FIFI72, FLLL72, FRRR72, FSEI72, LBLL72, LIRL72 -- , LLFL72, LLLL72, LLRL72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRB72 , LRRI72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRB72 , LRRL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRB72 , LRRR72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRB72 , LSEL72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRFR72, RRLR72, RRRR72 ] ) -- , ( ( RRRB72 , RBRR72 ) -- , Set.fromList -- [ BEIE72, BLRR72, BRLL72, IEBE72, ILLR72, IRRL72, LERE72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRL72, RELE72 -- , RLIR72, RLLR72, RLRR72, RRBL72, RRLL72, RRRL72, SESE72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRRB72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RILR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RFLL72, RLLL72 -- , RRBL72, RRLL72, RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , RLRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, IFBI72, ILLR72, IRRL72, LFRR72 -- , LLBR72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRBL72, RRLL72, RRRL72, SFSI72, SLSR72, SRSL72 ] ) -- , ( ( RRRB72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRRB72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRRB72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRRB72 , RRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRRB72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLL72, RRRL72 -- , SRSL72 ] ) -- , ( ( RRRB72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRRB72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRR72, RSER72 -- , SLSR72 ] ) -- , ( ( RRRB72 , RRRR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRL72, RRRR72, RSER72, SISF72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRRB72 , RSER72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLL72 -- , RRRL72, SRSL72 ] ) -- , ( ( RRRB72 , SBSB72 ) -- , Set.fromList -- [ RELE72, RLLI72, RRLF72 ] ) -- , ( ( RRRB72 , SESE72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , SFSI72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , SISF72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( RRRB72 , SLSR72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRBL72, RRLL72, RRRL72 ] ) -- , ( ( RRRB72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRL72 , BBBB72 ) -- , Set.fromList -- [ ILLR72, LLLR72, RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRRL72 , BBFF72 ) -- , Set.fromList -- [ IRRL72, LIRL72, LLRL72, LRRL72, RRRL72 ] ) -- , ( ( RRRL72 , BEIE72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRRL72 , BFII72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRRL72 , BIIF72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRRL72 , BLRR72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRBL72, RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , BRLL72 ) -- , Set.fromList -- [ IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRL72, LRIL72, LRLL72 -- , LRRL72, LSEL72, RBRR72, RILR72, RLIR72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , BSEF72 ) -- , Set.fromList -- [ IRRL72, LRRL72, RRRL72 ] ) -- , ( ( RRRL72 , EBIS72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRRL72 , EFBS72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , EIFS72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , ESES72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , FBII72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRRL72 , FEFE72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , FFBB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , FFFF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , FIFI72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , FSEI72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , IBIB72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRRL72 , IEBE72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , IFBI72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , IIBF72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , IIFB72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , ILLR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , ISEB72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( RRRL72 , LBLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FIFI72, FLLL72, FRRR72, IIFB72 -- , ILLR72, IRRL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRRI72, LRRL72, LRRR72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRFR72, RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LIRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LLBR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , LLFL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , LLLL72 ) -- , Set.fromList -- [ EIFS72, ELLS72, ERRS72, FEFE72, FFFF72, FIFI72, FLLL72 -- , FRRR72, IIFB72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLFL72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LLRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LLRR72 ) -- , Set.fromList -- [ EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72 -- , LLBR72, LLLB72, LLLL72, LLLR72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLLI72 -- , RLLL72, RLLR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , LRIL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , LRLL72 ) -- , Set.fromList -- [ EBIS72, EIFS72, ELLS72, ERRS72, ESES72, FBII72, FIFI72 -- , FLLL72, FRRR72, FSEI72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLFL72, LLLB72, LLLL72, LLLR72 -- , LLRL72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72 -- , RRFR72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , LRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72 -- , RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRL72 , LSEL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRFR72 -- , RRLR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRL72 , RBRR72 ) -- , Set.fromList -- [ BIIF72, BLRR72, BRLL72, IIBF72, ILLR72, IRRL72, LIRL72 -- , LLBR72, LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72 -- , LRRL72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRRL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RELE72, RFLL72 -- , RILR72, RLLI72, RLLL72, RLLR72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RLRR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, BLRR72, BRLL72, IEBE72, IFBI72 -- , IIBF72, ILLR72, IRRL72, LERE72, LFRR72, LIRL72, LLBR72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRLF72, RRLL72, RRLR72 -- , RRRL72, SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRRL72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRL72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, IBIB72, IIFB72, ILLR72, IRRL72 -- , ISEB72, LBLL72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRRL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LBLL72, LIRL72, LLFL72, LLLL72, LLRL72 -- , LRIL72, LRLL72, LRRL72, LSEL72, RRBL72, RRLF72, RRLL72 -- , RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ILLR72, LLBR72, LLLR72, LLRR72, RBRR72, RILR72 -- , RLIR72, RLLR72, RLRR72, RRFR72, RRLR72, RRRB72, RRRL72 -- , RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRL72 , RRRR72 ) -- , Set.fromList -- [ BBFF72, BIIF72, BLRR72, BRLL72, BSEF72, IIBF72, ILLR72 -- , IRRL72, LBLL72, LIRL72, LLBR72, LLFL72, LLLL72, LLLR72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRL72, LSEL72 -- , RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRRL72 , RSER72 ) -- , Set.fromList -- [ BRLL72, IRRL72, LRIL72, LRLL72, LRRL72, RRBL72, RRLF72 -- , RRLL72, RRLR72, RRRL72, SRSL72 ] ) -- , ( ( RRRL72 , SBSB72 ) -- , Set.fromList -- [ RILR72, RLLR72, RRLR72 ] ) -- , ( ( RRRL72 , SESE72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , SFSI72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , SISF72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( RRRL72 , SLSR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRBL72 -- , RRLF72, RRLL72, RRLR72, RRRL72 ] ) -- , ( ( RRRL72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RILR72, RLIR72, RLLR72, RLRR72, RRFR72, RRLR72 -- , RRRB72, RRRL72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , BBBB72 ) -- , Set.fromList -- [ FLLL72, LLLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRRR72 , BBFF72 ) -- , Set.fromList -- [ FRRR72, LFRR72, LLRR72, LRRR72, RRRR72 ] ) -- , ( ( RRRR72 , BEIE72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRRR72 , BFII72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRRR72 , BIIF72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRRR72 , BLRR72 ) -- , Set.fromList -- [ FFBB72, FLLL72, FRRR72, LFRR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , BRLL72 ) -- , Set.fromList -- [ FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72, FSEI72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRR72 , BSEF72 ) -- , Set.fromList -- [ FRRR72, LRRR72, RRRR72 ] ) -- , ( ( RRRR72 , EBIS72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRRR72 , EFBS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRRR72 , EIFS72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRRR72 , ELLS72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRRR72 , ESES72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRRR72 , FBII72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRRR72 , FEFE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRRR72 , FFBB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRRR72 , FFFF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLL72 ] ) -- , ( ( RRRR72 , FIFI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRRR72 , FLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, LBLL72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, LRLL72, RBRR72, RFLL72, RLLL72, RLRR72 -- , RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , FRRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72 -- , RRRR72, RSER72 ] ) -- , ( ( RRRR72 , FSEI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLL72 ] ) -- , ( ( RRRR72 , IBIB72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRRR72 , IEBE72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRRR72 , IFBI72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRRR72 , IIBF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRRR72 , IIFB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRRR72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RRRR72 , ISEB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( RRRR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, FFFF72, FLLL72, FRRR72, LFRR72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, LRRR72, RFLL72, RLLL72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LERE72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LFRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FRRR72, LBLL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RLRR72 -- , RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LLLB72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , LLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, FFFF72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, FLLL72, LLLL72, LLRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , LLRF72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LBLL72, LFRR72, LLLL72, LLRR72, LRLL72 -- , LRRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , LLRR72 ) -- , Set.fromList -- [ BBFF72, BLRR72, BRLL72, FFBB72, FLLL72, FRRR72, LBLL72 -- , LFRR72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRLL72, LRRR72, RBRR72, RFLL72, RLLL72 -- , RLRR72, RRBL72, RRFR72, RRLF72, RRLL72, RRLR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , LRRI72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RBRR72, RELE72, RFLL72 -- , RILR72, RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , LRRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , FRRR72, LBLL72, LERE72, LFRR72, LIRL72, LLFL72, LLLL72 -- , LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72 -- , LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72 ] ) -- , ( ( RRRR72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, FRRR72, LRLL72, LRRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72 ] ) -- , ( ( RRRR72 , RBRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RFLL72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SFSI72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RELE72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRRR72 , RFLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RLIR72, RLLI72, RLLL72, RLLR72 -- , RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72, SBSB72 -- , SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RILR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRRR72 , RLIR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RLLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, ELLS72, ERRS72, FBII72 -- , FLLL72, FRRR72, IBIB72, ILLR72, IRRL72, LBLL72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLLL72, RLRR72, RRBL72 -- , RRLL72, RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RLRR72 ) -- , Set.fromList -- [ BFII72, BLRR72, BRLL72, EFBS72, ELLS72, ERRS72, FFBB72 -- , FLLL72, FRRR72, IFBI72, ILLR72, IRRL72, LFRR72, LLBR72 -- , LLLB72, LLLL72, LLLR72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RBRR72, RFLL72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SFSI72, SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RRBL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRR72 , RRFR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RRLL72 ) -- , Set.fromList -- [ BBBB72, BLRR72, BRLL72, EBIS72, EIFS72, ELLS72, ERRS72 -- , ESES72, FBII72, FEFE72, FFFF72, FIFI72, FLLL72, FRRR72 -- , FSEI72, IBIB72, IIFB72, ILLR72, IRRL72, ISEB72, LBLL72 -- , LERE72, LFRR72, LIRL72, LLBR72, LLFL72, LLLB72, LLLL72 -- , LLLR72, LLRF72, LLRL72, LLRR72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, LSEL72, RBRR72, RELE72, RFLL72, RILR72 -- , RLIR72, RLLI72, RLLL72, RLLR72, RLRR72, RRBL72, RRFR72 -- , RRLF72, RRLL72, RRLR72, RRRB72, RRRL72, RRRR72, RSER72 -- , SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLFL72, LLLL72, LLRF72, LLRL72, LLRR72, LRIL72 -- , LRLL72, LRRI72, LRRL72, LRRR72, LSEL72, RRBL72, RRLL72 -- , RRRB72, RRRL72, RRRR72, SRSL72 ] ) -- , ( ( RRRR72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRR72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, ELLS72, FLLL72, ILLR72, LLBR72, LLLB72, LLLL72 -- , LLLR72, LLRR72, RBRR72, RELE72, RFLL72, RILR72, RLIR72 -- , RLLI72, RLLL72, RLLR72, RLRR72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRR72, RSER72, SLSR72 ] ) -- , ( ( RRRR72 , RRRR72 ) -- , Set.fromList -- [ BBFF72, BEIE72, BFII72, BIIF72, BLRR72, BRLL72, BSEF72 -- , EFBS72, ELLS72, ERRS72, FFBB72, FLLL72, FRRR72, IEBE72 -- , IFBI72, IIBF72, ILLR72, IRRL72, LBLL72, LERE72, LFRR72 -- , LIRL72, LLBR72, LLFL72, LLLB72, LLLL72, LLLR72, LLRF72 -- , LLRL72, LLRR72, LRIL72, LRLL72, LRRI72, LRRL72, LRRR72 -- , LSEL72, RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72 -- , RLLL72, RLLR72, RLRR72, RRBL72, RRFR72, RRLF72, RRLL72 -- , RRLR72, RRRB72, RRRL72, RRRR72, RSER72, SESE72, SFSI72 -- , SISF72, SLSR72, SRSL72 ] ) -- , ( ( RRRR72 , RSER72 ) -- , Set.fromList -- [ BRLL72, ERRS72, FRRR72, IRRL72, LRIL72, LRLL72, LRRI72 -- , LRRL72, LRRR72, RRBL72, RRLL72, RRRB72, RRRL72, RRRR72 -- , SRSL72 ] ) -- , ( ( RRRR72 , SBSB72 ) -- , Set.fromList -- [ RFLL72, RLLL72, RRLL72 ] ) -- , ( ( RRRR72 , SESE72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRRR72 , SFSI72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRR72 ] ) -- , ( ( RRRR72 , SISF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( RRRR72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RFLL72, RLLL72, RLRR72, RRBL72, RRLL72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RRRR72 , SRSL72 ) -- , Set.fromList -- [ RBRR72, RELE72, RFLL72, RILR72, RLIR72, RLLI72, RLLL72 -- , RLLR72, RLRR72, RRFR72, RRLF72, RRLL72, RRLR72, RRRR72 -- , RSER72 ] ) -- , ( ( RSER72 , BBBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RSER72 , BBFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RSER72 , BEIE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( RSER72 , BFII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RSER72 , BIIF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RSER72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RSER72 , BSEF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RSER72 , EBIS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( RSER72 , EFBS72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( RSER72 , EIFS72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( RSER72 , ELLS72 ) -- , Set.fromList -- [ SBSB72, SLSR72, SRSL72 ] ) -- , ( ( RSER72 , ERRS72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( RSER72 , ESES72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( RSER72 , FBII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RSER72 , FEFE72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( RSER72 , FFBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( RSER72 , FFFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( RSER72 , FIFI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RSER72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( RSER72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( RSER72 , FSEI72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( RSER72 , IBIB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RSER72 , IEBE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( RSER72 , IFBI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RSER72 , IIBF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RSER72 , IIFB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RSER72 , ILLR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , IRRL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RSER72 , ISEB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RSER72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LERE72 ) -- , Set.fromList -- [ BSEF72, LSEL72, RSER72 ] ) -- , ( ( RSER72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( RSER72 , LIRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LLBR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RSER72 , LLFL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RSER72 , LLLB72 ) -- , Set.fromList -- [ BBBB72, LLBR72, RRBL72 ] ) -- , ( ( RSER72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LLLR72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RSER72 , LLRF72 ) -- , Set.fromList -- [ BBFF72, LLFL72, RRFR72 ] ) -- , ( ( RSER72 , LLRL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RSER72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RSER72 , LRIL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LRRI72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, LRIL72, RLIR72 ] ) -- , ( ( RSER72 , LRRL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( RSER72 , LSEL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( RSER72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RSER72 , RELE72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72, LSEL72, RSER72 ] ) -- , ( ( RSER72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( RSER72 , RILR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RSER72 , RLIR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , RLLI72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72, LRIL72, RLIR72 ] ) -- , ( ( RSER72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( RSER72 , RLLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , RRBL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RSER72 , RRFR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RSER72 , RRLF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLFL72 -- , RRFR72 ] ) -- , ( ( RSER72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RSER72 , RRLR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RSER72 , RRRB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLBR72 -- , RRBL72 ] ) -- , ( ( RSER72 , RRRL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( RSER72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( RSER72 , RSER72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( RSER72 , SBSB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( RSER72 , SESE72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( RSER72 , SFSI72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( RSER72 , SISF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( RSER72 , SLSR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( RSER72 , SRSL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SBSB72 , BBBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( SBSB72 , BBFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( SBSB72 , BEIE72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( SBSB72 , BFII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( SBSB72 , BIIF72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( SBSB72 , BLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( SBSB72 , BRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( SBSB72 , BSEF72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( SBSB72 , EBIS72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( SBSB72 , EFBS72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SBSB72 , EIFS72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SBSB72 , ELLS72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SBSB72 , ERRS72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SBSB72 , ESES72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SBSB72 , FBII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( SBSB72 , FEFE72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SBSB72 , FFBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SBSB72 , FFFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SBSB72 , FIFI72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SBSB72 , FLLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SBSB72 , FRRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SBSB72 , FSEI72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SBSB72 , IBIB72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( SBSB72 , IEBE72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SBSB72 , IFBI72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SBSB72 , IIBF72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SBSB72 , IIFB72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SBSB72 , ILLR72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SBSB72 , IRRL72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SBSB72 , ISEB72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SBSB72 , LBLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( SBSB72 , LERE72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SBSB72 , LFRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SBSB72 , LIRL72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SBSB72 , LLBR72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SBSB72 , LLFL72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SBSB72 , LLLB72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( SBSB72 , LLLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SBSB72 , LLLR72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( SBSB72 , LLRF72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( SBSB72 , LLRL72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( SBSB72 , LLRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SBSB72 , LRIL72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SBSB72 , LRLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SBSB72 , LRRI72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SBSB72 , LRRL72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SBSB72 , LRRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SBSB72 , LSEL72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SBSB72 , RBRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( SBSB72 , RELE72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SBSB72 , RFLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SBSB72 , RILR72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SBSB72 , RLIR72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SBSB72 , RLLI72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SBSB72 , RLLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SBSB72 , RLLR72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SBSB72 , RLRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( SBSB72 , RRBL72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SBSB72 , RRFR72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SBSB72 , RRLF72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( SBSB72 , RRLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( SBSB72 , RRLR72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( SBSB72 , RRRB72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( SBSB72 , RRRL72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( SBSB72 , RRRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( SBSB72 , RSER72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SBSB72 , SBSB72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( SBSB72 , SESE72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SBSB72 , SFSI72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SBSB72 , SISF72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SBSB72 , SLSR72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SBSB72 , SRSL72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SESE72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SESE72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SESE72 , BEIE72 ) -- , Set.fromList -- [ BEIE72 ] ) -- , ( ( SESE72 , BFII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( SESE72 , BIIF72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( SESE72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SESE72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SESE72 , BSEF72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SESE72 , EBIS72 ) -- , Set.fromList -- [ EBIS72 ] ) -- , ( ( SESE72 , EFBS72 ) -- , Set.fromList -- [ EFBS72 ] ) -- , ( ( SESE72 , EIFS72 ) -- , Set.fromList -- [ EIFS72 ] ) -- , ( ( SESE72 , ELLS72 ) -- , Set.fromList -- [ ELLS72 ] ) -- , ( ( SESE72 , ERRS72 ) -- , Set.fromList -- [ ERRS72 ] ) -- , ( ( SESE72 , ESES72 ) -- , Set.fromList -- [ ESES72 ] ) -- , ( ( SESE72 , FBII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( SESE72 , FEFE72 ) -- , Set.fromList -- [ FEFE72 ] ) -- , ( ( SESE72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( SESE72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( SESE72 , FIFI72 ) -- , Set.fromList -- [ FIFI72 ] ) -- , ( ( SESE72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( SESE72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( SESE72 , FSEI72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( SESE72 , IBIB72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( SESE72 , IEBE72 ) -- , Set.fromList -- [ IEBE72 ] ) -- , ( ( SESE72 , IFBI72 ) -- , Set.fromList -- [ IFBI72 ] ) -- , ( ( SESE72 , IIBF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( SESE72 , IIFB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( SESE72 , ILLR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( SESE72 , IRRL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( SESE72 , ISEB72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( SESE72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SESE72 , LERE72 ) -- , Set.fromList -- [ LERE72 ] ) -- , ( ( SESE72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( SESE72 , LIRL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( SESE72 , LLBR72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SESE72 , LLFL72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SESE72 , LLLB72 ) -- , Set.fromList -- [ LLLB72 ] ) -- , ( ( SESE72 , LLLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( SESE72 , LLLR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( SESE72 , LLRF72 ) -- , Set.fromList -- [ LLRF72 ] ) -- , ( ( SESE72 , LLRL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( SESE72 , LLRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( SESE72 , LRIL72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SESE72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SESE72 , LRRI72 ) -- , Set.fromList -- [ LRRI72 ] ) -- , ( ( SESE72 , LRRL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( SESE72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( SESE72 , LSEL72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SESE72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SESE72 , RELE72 ) -- , Set.fromList -- [ RELE72 ] ) -- , ( ( SESE72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( SESE72 , RILR72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( SESE72 , RLIR72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SESE72 , RLLI72 ) -- , Set.fromList -- [ RLLI72 ] ) -- , ( ( SESE72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( SESE72 , RLLR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( SESE72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SESE72 , RRBL72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SESE72 , RRFR72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SESE72 , RRLF72 ) -- , Set.fromList -- [ RRLF72 ] ) -- , ( ( SESE72 , RRLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( SESE72 , RRLR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( SESE72 , RRRB72 ) -- , Set.fromList -- [ RRRB72 ] ) -- , ( ( SESE72 , RRRL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( SESE72 , RRRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( SESE72 , RSER72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SESE72 , SBSB72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SESE72 , SESE72 ) -- , Set.fromList -- [ SESE72 ] ) -- , ( ( SESE72 , SFSI72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( SESE72 , SISF72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( SESE72 , SLSR72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SESE72 , SRSL72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SFSI72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SFSI72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SFSI72 , BEIE72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( SFSI72 , BFII72 ) -- , Set.fromList -- [ BFII72 ] ) -- , ( ( SFSI72 , BIIF72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( SFSI72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SFSI72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SFSI72 , BSEF72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SFSI72 , EBIS72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( SFSI72 , EFBS72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( SFSI72 , EIFS72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( SFSI72 , ELLS72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( SFSI72 , ERRS72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( SFSI72 , ESES72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( SFSI72 , FBII72 ) -- , Set.fromList -- [ FBII72 ] ) -- , ( ( SFSI72 , FEFE72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( SFSI72 , FFBB72 ) -- , Set.fromList -- [ FFBB72 ] ) -- , ( ( SFSI72 , FFFF72 ) -- , Set.fromList -- [ FFFF72 ] ) -- , ( ( SFSI72 , FIFI72 ) -- , Set.fromList -- [ FEFE72, FFFF72, FIFI72 ] ) -- , ( ( SFSI72 , FLLL72 ) -- , Set.fromList -- [ FLLL72 ] ) -- , ( ( SFSI72 , FRRR72 ) -- , Set.fromList -- [ FRRR72 ] ) -- , ( ( SFSI72 , FSEI72 ) -- , Set.fromList -- [ FSEI72 ] ) -- , ( ( SFSI72 , IBIB72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( SFSI72 , IEBE72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( SFSI72 , IFBI72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IFBI72 ] ) -- , ( ( SFSI72 , IIBF72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( SFSI72 , IIFB72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( SFSI72 , ILLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( SFSI72 , IRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( SFSI72 , ISEB72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( SFSI72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SFSI72 , LERE72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( SFSI72 , LFRR72 ) -- , Set.fromList -- [ LFRR72 ] ) -- , ( ( SFSI72 , LIRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( SFSI72 , LLBR72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SFSI72 , LLFL72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SFSI72 , LLLB72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( SFSI72 , LLLL72 ) -- , Set.fromList -- [ LLLL72 ] ) -- , ( ( SFSI72 , LLLR72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( SFSI72 , LLRF72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( SFSI72 , LLRL72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( SFSI72 , LLRR72 ) -- , Set.fromList -- [ LLRR72 ] ) -- , ( ( SFSI72 , LRIL72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SFSI72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SFSI72 , LRRI72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( SFSI72 , LRRL72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( SFSI72 , LRRR72 ) -- , Set.fromList -- [ LRRR72 ] ) -- , ( ( SFSI72 , LSEL72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SFSI72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SFSI72 , RELE72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( SFSI72 , RFLL72 ) -- , Set.fromList -- [ RFLL72 ] ) -- , ( ( SFSI72 , RILR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( SFSI72 , RLIR72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SFSI72 , RLLI72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( SFSI72 , RLLL72 ) -- , Set.fromList -- [ RLLL72 ] ) -- , ( ( SFSI72 , RLLR72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SFSI72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SFSI72 , RRBL72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SFSI72 , RRFR72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SFSI72 , RRLF72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( SFSI72 , RRLL72 ) -- , Set.fromList -- [ RRLL72 ] ) -- , ( ( SFSI72 , RRLR72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SFSI72 , RRRB72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( SFSI72 , RRRL72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SFSI72 , RRRR72 ) -- , Set.fromList -- [ RRRR72 ] ) -- , ( ( SFSI72 , RSER72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SFSI72 , SBSB72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SFSI72 , SESE72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( SFSI72 , SFSI72 ) -- , Set.fromList -- [ SFSI72 ] ) -- , ( ( SFSI72 , SISF72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( SFSI72 , SLSR72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SFSI72 , SRSL72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SISF72 , BBBB72 ) -- , Set.fromList -- [ BBBB72 ] ) -- , ( ( SISF72 , BBFF72 ) -- , Set.fromList -- [ BBFF72 ] ) -- , ( ( SISF72 , BEIE72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( SISF72 , BFII72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72 ] ) -- , ( ( SISF72 , BIIF72 ) -- , Set.fromList -- [ BIIF72 ] ) -- , ( ( SISF72 , BLRR72 ) -- , Set.fromList -- [ BLRR72 ] ) -- , ( ( SISF72 , BRLL72 ) -- , Set.fromList -- [ BRLL72 ] ) -- , ( ( SISF72 , BSEF72 ) -- , Set.fromList -- [ BSEF72 ] ) -- , ( ( SISF72 , EBIS72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( SISF72 , EFBS72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( SISF72 , EIFS72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( SISF72 , ELLS72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( SISF72 , ERRS72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( SISF72 , ESES72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( SISF72 , FBII72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72 ] ) -- , ( ( SISF72 , FEFE72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( SISF72 , FFBB72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72 ] ) -- , ( ( SISF72 , FFFF72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72 ] ) -- , ( ( SISF72 , FIFI72 ) -- , Set.fromList -- [ EIFS72, FIFI72, IIFB72 ] ) -- , ( ( SISF72 , FLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72 ] ) -- , ( ( SISF72 , FRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72 ] ) -- , ( ( SISF72 , FSEI72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72 ] ) -- , ( ( SISF72 , IBIB72 ) -- , Set.fromList -- [ IBIB72 ] ) -- , ( ( SISF72 , IEBE72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( SISF72 , IFBI72 ) -- , Set.fromList -- [ IEBE72, IFBI72, IIBF72 ] ) -- , ( ( SISF72 , IIBF72 ) -- , Set.fromList -- [ IIBF72 ] ) -- , ( ( SISF72 , IIFB72 ) -- , Set.fromList -- [ IIFB72 ] ) -- , ( ( SISF72 , ILLR72 ) -- , Set.fromList -- [ ILLR72 ] ) -- , ( ( SISF72 , IRRL72 ) -- , Set.fromList -- [ IRRL72 ] ) -- , ( ( SISF72 , ISEB72 ) -- , Set.fromList -- [ ISEB72 ] ) -- , ( ( SISF72 , LBLL72 ) -- , Set.fromList -- [ LBLL72 ] ) -- , ( ( SISF72 , LERE72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( SISF72 , LFRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72 ] ) -- , ( ( SISF72 , LIRL72 ) -- , Set.fromList -- [ LIRL72 ] ) -- , ( ( SISF72 , LLBR72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SISF72 , LLFL72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SISF72 , LLLB72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( SISF72 , LLLL72 ) -- , Set.fromList -- [ LLLB72, LLLL72, LLLR72 ] ) -- , ( ( SISF72 , LLLR72 ) -- , Set.fromList -- [ LLLR72 ] ) -- , ( ( SISF72 , LLRF72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( SISF72 , LLRL72 ) -- , Set.fromList -- [ LLRL72 ] ) -- , ( ( SISF72 , LLRR72 ) -- , Set.fromList -- [ LLRF72, LLRL72, LLRR72 ] ) -- , ( ( SISF72 , LRIL72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SISF72 , LRLL72 ) -- , Set.fromList -- [ LRLL72 ] ) -- , ( ( SISF72 , LRRI72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( SISF72 , LRRL72 ) -- , Set.fromList -- [ LRRL72 ] ) -- , ( ( SISF72 , LRRR72 ) -- , Set.fromList -- [ LRRI72, LRRL72, LRRR72 ] ) -- , ( ( SISF72 , LSEL72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SISF72 , RBRR72 ) -- , Set.fromList -- [ RBRR72 ] ) -- , ( ( SISF72 , RELE72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( SISF72 , RFLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72 ] ) -- , ( ( SISF72 , RILR72 ) -- , Set.fromList -- [ RILR72 ] ) -- , ( ( SISF72 , RLIR72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SISF72 , RLLI72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( SISF72 , RLLL72 ) -- , Set.fromList -- [ RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SISF72 , RLLR72 ) -- , Set.fromList -- [ RLLR72 ] ) -- , ( ( SISF72 , RLRR72 ) -- , Set.fromList -- [ RLRR72 ] ) -- , ( ( SISF72 , RRBL72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SISF72 , RRFR72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SISF72 , RRLF72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( SISF72 , RRLL72 ) -- , Set.fromList -- [ RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SISF72 , RRLR72 ) -- , Set.fromList -- [ RRLR72 ] ) -- , ( ( SISF72 , RRRB72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( SISF72 , RRRL72 ) -- , Set.fromList -- [ RRRL72 ] ) -- , ( ( SISF72 , RRRR72 ) -- , Set.fromList -- [ RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SISF72 , RSER72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SISF72 , SBSB72 ) -- , Set.fromList -- [ SBSB72 ] ) -- , ( ( SISF72 , SESE72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( SISF72 , SFSI72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72 ] ) -- , ( ( SISF72 , SISF72 ) -- , Set.fromList -- [ SISF72 ] ) -- , ( ( SISF72 , SLSR72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SISF72 , SRSL72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SLSR72 , BBBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SLSR72 , BBFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SLSR72 , BEIE72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SLSR72 , BFII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SLSR72 , BIIF72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SLSR72 , BLRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SLSR72 , BRLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SLSR72 , BSEF72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SLSR72 , EBIS72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SLSR72 , EFBS72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SLSR72 , EIFS72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SLSR72 , ELLS72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( SLSR72 , ERRS72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( SLSR72 , ESES72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SLSR72 , FBII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SLSR72 , FEFE72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SLSR72 , FFBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SLSR72 , FFFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SLSR72 , FIFI72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SLSR72 , FLLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( SLSR72 , FRRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( SLSR72 , FSEI72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SLSR72 , IBIB72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SLSR72 , IEBE72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SLSR72 , IFBI72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SLSR72 , IIBF72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SLSR72 , IIFB72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SLSR72 , ILLR72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( SLSR72 , IRRL72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( SLSR72 , ISEB72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SLSR72 , LBLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SLSR72 , LERE72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( SLSR72 , LFRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( SLSR72 , LIRL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( SLSR72 , LLBR72 ) -- , Set.fromList -- [ BBBB72, LLBR72, RRBL72 ] ) -- , ( ( SLSR72 , LLFL72 ) -- , Set.fromList -- [ BBFF72, LLFL72, RRFR72 ] ) -- , ( ( SLSR72 , LLLB72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( SLSR72 , LLLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SLSR72 , LLLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 -- , RRLL72 ] ) -- , ( ( SLSR72 , LLRF72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( SLSR72 , LLRL72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72 -- , RRRR72 ] ) -- , ( ( SLSR72 , LLRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SLSR72 , LRIL72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, LRIL72, RLIR72 ] ) -- , ( ( SLSR72 , LRLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SLSR72 , LRRI72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( SLSR72 , LRRL72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( SLSR72 , LRRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( SLSR72 , LSEL72 ) -- , Set.fromList -- [ BSEF72, LSEL72, RSER72 ] ) -- , ( ( SLSR72 , RBRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SLSR72 , RELE72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RFLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RILR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RLIR72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72, LRIL72, RLIR72 ] ) -- , ( ( SLSR72 , RLLI72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SLSR72 , RLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SLSR72 , RRBL72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLBR72 -- , RRBL72 ] ) -- , ( ( SLSR72 , RRFR72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLFL72 -- , RRFR72 ] ) -- , ( ( SLSR72 , RRLF72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SLSR72 , RRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SLSR72 , RRLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SLSR72 , RRRB72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SLSR72 , RRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SLSR72 , RRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SLSR72 , RSER72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72, LSEL72, RSER72 ] ) -- , ( ( SLSR72 , SBSB72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SLSR72 , SESE72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SLSR72 , SFSI72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SLSR72 , SISF72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SLSR72 , SLSR72 ) -- , Set.fromList -- [ SBSB72, SLSR72, SRSL72 ] ) -- , ( ( SLSR72 , SRSL72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( SRSL72 , BBBB72 ) -- , Set.fromList -- [ LLBR72 ] ) -- , ( ( SRSL72 , BBFF72 ) -- , Set.fromList -- [ LLFL72 ] ) -- , ( ( SRSL72 , BEIE72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SRSL72 , BFII72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SRSL72 , BIIF72 ) -- , Set.fromList -- [ LRIL72 ] ) -- , ( ( SRSL72 , BLRR72 ) -- , Set.fromList -- [ LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72, LRRI72 -- , LRRL72, LRRR72 ] ) -- , ( ( SRSL72 , BRLL72 ) -- , Set.fromList -- [ LBLL72, LLLB72, LLLL72, LLLR72, LRLL72 ] ) -- , ( ( SRSL72 , BSEF72 ) -- , Set.fromList -- [ LSEL72 ] ) -- , ( ( SRSL72 , EBIS72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SRSL72 , EFBS72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SRSL72 , EIFS72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SRSL72 , ELLS72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , ERRS72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , ESES72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SRSL72 , FBII72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SRSL72 , FEFE72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SRSL72 , FFBB72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SRSL72 , FFFF72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SRSL72 , FIFI72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SRSL72 , FLLL72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , FRRR72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , FSEI72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SRSL72 , IBIB72 ) -- , Set.fromList -- [ RLIR72 ] ) -- , ( ( SRSL72 , IEBE72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SRSL72 , IFBI72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SRSL72 , IIBF72 ) -- , Set.fromList -- [ RRBL72 ] ) -- , ( ( SRSL72 , IIFB72 ) -- , Set.fromList -- [ RRFR72 ] ) -- , ( ( SRSL72 , ILLR72 ) -- , Set.fromList -- [ RELE72, RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , IRRL72 ) -- , Set.fromList -- [ RBRR72, RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , ISEB72 ) -- , Set.fromList -- [ RSER72 ] ) -- , ( ( SRSL72 , LBLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RLLI72 -- , RLLL72, RLLR72 ] ) -- , ( ( SRSL72 , LERE72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LFRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LIRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LLBR72 ) -- , Set.fromList -- [ EFBS72, FFBB72, IEBE72, IFBI72, IIBF72, LLBR72 -- , RRBL72 ] ) -- , ( ( SRSL72 , LLFL72 ) -- , Set.fromList -- [ EIFS72, FEFE72, FFFF72, FIFI72, IIFB72, LLFL72 -- , RRFR72 ] ) -- , ( ( SRSL72 , LLLB72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SRSL72 , LLLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SRSL72 , LLLR72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LLLB72, LLLL72, LLLR72, RELE72 -- , RFLL72, RILR72, RLLI72, RLLL72, RLLR72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SRSL72 , LLRF72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SRSL72 , LLRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SRSL72 , LLRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LERE72, LFRR72, LIRL72, LLRF72 -- , LLRL72, LLRR72, LRRI72, LRRL72, LRRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SRSL72 , LRIL72 ) -- , Set.fromList -- [ EBIS72, FBII72, IBIB72, LRIL72, RLIR72 ] ) -- , ( ( SRSL72 , LRLL72 ) -- , Set.fromList -- [ ELLS72, FLLL72, ILLR72, LBLL72, LLLB72, LLLL72, LLLR72 -- , LRLL72, RLLI72, RLLL72, RLLR72 ] ) -- , ( ( SRSL72 , LRRI72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LRRL72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LRRR72 ) -- , Set.fromList -- [ ERRS72, FRRR72, IRRL72, LRRI72, LRRL72, LRRR72, RBRR72 -- , RLRR72, RRRB72, RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , LSEL72 ) -- , Set.fromList -- [ ESES72, FSEI72, ISEB72, LSEL72, RSER72 ] ) -- , ( ( SRSL72 , RBRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RLRR72 ] ) -- , ( ( SRSL72 , RELE72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RFLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RILR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RLIR72 ) -- , Set.fromList -- [ BEIE72, BFII72, BIIF72, LRIL72, RLIR72 ] ) -- , ( ( SRSL72 , RLLI72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RLLL72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RLLR72 ) -- , Set.fromList -- [ BRLL72, LRLL72, RELE72, RFLL72, RILR72, RLLI72, RLLL72 -- , RLLR72, RRLF72, RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RLRR72 ) -- , Set.fromList -- [ BLRR72, LERE72, LFRR72, LIRL72, LLRF72, LLRL72, LLRR72 -- , LRRI72, LRRL72, LRRR72, RLRR72 ] ) -- , ( ( SRSL72 , RRBL72 ) -- , Set.fromList -- [ BBBB72, LLBR72, RRBL72 ] ) -- , ( ( SRSL72 , RRFR72 ) -- , Set.fromList -- [ BBFF72, LLFL72, RRFR72 ] ) -- , ( ( SRSL72 , RRLF72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SRSL72 , RRLL72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLB72, LLLL72, LLLR72, LRLL72, RRLF72 -- , RRLL72, RRLR72 ] ) -- , ( ( SRSL72 , RRLR72 ) -- , Set.fromList -- [ BRLL72, LBLL72, LLLL72, LRLL72, RRLF72, RRLL72 -- , RRLR72 ] ) -- , ( ( SRSL72 , RRRB72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SRSL72 , RRRL72 ) -- , Set.fromList -- [ BLRR72, LLRR72, RBRR72, RLRR72, RRRB72, RRRL72 -- , RRRR72 ] ) -- , ( ( SRSL72 , RRRR72 ) -- , Set.fromList -- [ BLRR72, LLRF72, LLRL72, LLRR72, RBRR72, RLRR72, RRRB72 -- , RRRL72, RRRR72 ] ) -- , ( ( SRSL72 , RSER72 ) -- , Set.fromList -- [ BSEF72, LSEL72, RSER72 ] ) -- , ( ( SRSL72 , SBSB72 ) -- , Set.fromList -- [ SLSR72 ] ) -- , ( ( SRSL72 , SESE72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SRSL72 , SFSI72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SRSL72 , SISF72 ) -- , Set.fromList -- [ SRSL72 ] ) -- , ( ( SRSL72 , SLSR72 ) -- , Set.fromList -- [ SESE72, SFSI72, SISF72, SLSR72, SRSL72 ] ) -- , ( ( SRSL72 , SRSL72 ) -- , Set.fromList -- [ SBSB72, SLSR72, SRSL72 ] ) -- ] --
spatial-reasoning/zeno
src/Calculus/Dipole72.hs
bsd-2-clause
787,361
0
11
333,355
20,408
19,811
597
102
0
-- Copyright (c) 2016-present, Facebook, Inc. -- All rights reserved. -- -- This source code is licensed under the BSD-style license found in the -- LICENSE file in the root directory of this source tree. {-# LANGUAGE GADTs #-} module Duckling.Rules.MY ( defaultRules , langRules , localeRules ) where import Duckling.Dimensions.Types import Duckling.Locale import Duckling.Types import qualified Duckling.Numeral.MY.Rules as Numeral defaultRules :: Seal Dimension -> [Rule] defaultRules = langRules localeRules :: Region -> Seal Dimension -> [Rule] localeRules region (Seal (CustomDimension dim)) = dimLocaleRules region dim localeRules _ _ = [] langRules :: Seal Dimension -> [Rule] langRules (Seal AmountOfMoney) = [] langRules (Seal CreditCardNumber) = [] langRules (Seal Distance) = [] langRules (Seal Duration) = [] langRules (Seal Email) = [] langRules (Seal Numeral) = Numeral.rules langRules (Seal Ordinal) = [] langRules (Seal PhoneNumber) = [] langRules (Seal Quantity) = [] langRules (Seal RegexMatch) = [] langRules (Seal Temperature) = [] langRules (Seal Time) = [] langRules (Seal TimeGrain) = [] langRules (Seal Url) = [] langRules (Seal Volume) = [] langRules (Seal (CustomDimension dim)) = dimLangRules MY dim
facebookincubator/duckling
Duckling/Rules/MY.hs
bsd-3-clause
1,244
0
9
196
408
216
192
31
1
module Main where import Input import Task2 main :: IO () main = do a <- prompt "Enter left side" b <- prompt "Enter right side" putStrLn $ show $ goldMin f (a, b) where d = 0.000001 f = \x -> (x - 2) * (x - 4)
vsulabs/OptimizationMethodsHs
app/Main2.hs
bsd-3-clause
245
0
10
83
102
54
48
10
1
module DataTest.WorldTest where import Test.HUnit import Data.Cell import Data.World car1 :: Cell car1 = carnivore 0 0 1 2 2 her1 :: Cell her1 = herbivore 1 1 1 2 2 pla1 :: Cell pla1 = plant 1 1 1 0 0 world1 :: World world1 = emptyWorld world2 :: World world2 = writeCell world1 0 0 car1 worldTests :: Test worldTests = TestList (fromListTests ++ toListTests ++ toCellListTests ++ writeCellTests ++ readCellTests) fromListTests :: [Test] fromListTests = [ "fromList1" ~: fromList [((0,0), [car1])] ~?= world2 ] toListTests :: [Test] toListTests = [ "toList1" ~: and (map (\(_, c) -> isEmptyCell c) (toList world1)) ~?= True ] toCellListTests :: [Test] toCellListTests = [ "toCellList1" ~: and (map isEmptyCell (toCellList world1)) ~?= True ] writeCellTests :: [Test] writeCellTests = [ "writeCell1" ~: (readCell world2 0 0) ~?= car1 ] readCellTests :: [Test] readCellTests = [ "readCell1" ~: (readCell world1 0 0) ~?= (emptyCell 0 0) ]
YuichiroSato/GameOfSymbolGrounding
test/DataTest/WorldTest.hs
bsd-3-clause
1,052
0
13
271
365
202
163
35
1
-------------------------------------------------------------------------------- -- | -- Module : Graphics.Rendering.OpenGL.Raw.NV.VertexBufferUnifiedMemory -- Copyright : (c) Sven Panne 2015 -- License : BSD3 -- -- Maintainer : Sven Panne <svenpanne@gmail.com> -- Stability : stable -- Portability : portable -- -- The <https://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt NV_vertex_buffer_unified_memory> extension. -- -------------------------------------------------------------------------------- module Graphics.Rendering.OpenGL.Raw.NV.VertexBufferUnifiedMemory ( -- * Enums gl_COLOR_ARRAY_ADDRESS_NV, gl_COLOR_ARRAY_LENGTH_NV, gl_DRAW_INDIRECT_ADDRESS_NV, gl_DRAW_INDIRECT_LENGTH_NV, gl_DRAW_INDIRECT_UNIFIED_NV, gl_EDGE_FLAG_ARRAY_ADDRESS_NV, gl_EDGE_FLAG_ARRAY_LENGTH_NV, gl_ELEMENT_ARRAY_ADDRESS_NV, gl_ELEMENT_ARRAY_LENGTH_NV, gl_ELEMENT_ARRAY_UNIFIED_NV, gl_FOG_COORD_ARRAY_ADDRESS_NV, gl_FOG_COORD_ARRAY_LENGTH_NV, gl_INDEX_ARRAY_ADDRESS_NV, gl_INDEX_ARRAY_LENGTH_NV, gl_NORMAL_ARRAY_ADDRESS_NV, gl_NORMAL_ARRAY_LENGTH_NV, gl_SECONDARY_COLOR_ARRAY_ADDRESS_NV, gl_SECONDARY_COLOR_ARRAY_LENGTH_NV, gl_TEXTURE_COORD_ARRAY_ADDRESS_NV, gl_TEXTURE_COORD_ARRAY_LENGTH_NV, gl_VERTEX_ARRAY_ADDRESS_NV, gl_VERTEX_ARRAY_LENGTH_NV, gl_VERTEX_ATTRIB_ARRAY_ADDRESS_NV, gl_VERTEX_ATTRIB_ARRAY_LENGTH_NV, gl_VERTEX_ATTRIB_ARRAY_UNIFIED_NV, -- * Functions glBufferAddressRangeNV, glColorFormatNV, glEdgeFlagFormatNV, glFogCoordFormatNV, glGetIntegerui64i_vNV, glIndexFormatNV, glNormalFormatNV, glSecondaryColorFormatNV, glTexCoordFormatNV, glVertexAttribFormatNV, glVertexAttribIFormatNV, glVertexFormatNV ) where import Graphics.Rendering.OpenGL.Raw.Tokens import Graphics.Rendering.OpenGL.Raw.Functions
phaazon/OpenGLRaw
src/Graphics/Rendering/OpenGL/Raw/NV/VertexBufferUnifiedMemory.hs
bsd-3-clause
1,823
0
4
193
154
110
44
40
0
module Type.Fragment where import qualified Data.List as List import qualified Data.Map as Map import Type.Type import SourceSyntax.Pattern import SourceSyntax.Annotation (noneNoDocs) data Fragment = Fragment { typeEnv :: Map.Map String Type , vars :: [Variable] , typeConstraint :: TypeConstraint } deriving Show emptyFragment = Fragment Map.empty [] (noneNoDocs CTrue) joinFragment f1 f2 = Fragment { typeEnv = Map.union (typeEnv f1) (typeEnv f2) , vars = vars f1 ++ vars f2 , typeConstraint = typeConstraint f1 /\ typeConstraint f2 } joinFragments = List.foldl' (flip joinFragment) emptyFragment toScheme fragment = Scheme [] (vars fragment) (typeConstraint fragment) (typeEnv fragment)
deadfoxygrandpa/Elm
compiler/Type/Fragment.hs
bsd-3-clause
767
0
10
172
228
125
103
19
1
{-# LANGUAGE Rank2Types #-} {-# LANGUAGE BangPatterns #-} {-# LANGUAGE CPP #-} -- | This module implement helper functions to read & write data -- at bits level. module Codec.Picture.BitWriter( BoolReader , emptyBoolState , BoolState , byteAlignJpg , getNextBitsLSBFirst , getNextBitsMSBFirst , getNextBitJpg , getNextIntJpg , setDecodedString , setDecodedStringMSB , setDecodedStringJpg , runBoolReader , BoolWriteStateRef , newWriteStateRef , finalizeBoolWriter , writeBits' , writeBitsGif , initBoolState , initBoolStateJpg , execBoolReader , runBoolReaderWith ) where #if !MIN_VERSION_base(4,8,0) import Control.Applicative( (<*>), (<$>) ) #endif import Data.STRef import Control.Monad( when ) import Control.Monad.ST( ST ) import qualified Control.Monad.Trans.State.Strict as S import Data.Int ( Int32 ) import Data.Word( Word8, Word32 ) import Data.Bits( (.&.), (.|.), unsafeShiftR, unsafeShiftL ) import Codec.Picture.VectorByteConversion( blitVector ) import qualified Data.Vector.Storable.Mutable as M import qualified Data.Vector.Storable as VS import qualified Data.ByteString as B import qualified Data.ByteString.Lazy as L -------------------------------------------------- ---- Reader -------------------------------------------------- -- | Current bit index, current value, string data BoolState = BoolState {-# UNPACK #-} !Int {-# UNPACK #-} !Word8 !B.ByteString emptyBoolState :: BoolState emptyBoolState = BoolState (-1) 0 B.empty -- | Type used to read bits type BoolReader s a = S.StateT BoolState (ST s) a runBoolReader :: BoolReader s a -> ST s a runBoolReader action = S.evalStateT action $ BoolState 0 0 B.empty runBoolReaderWith :: BoolState -> BoolReader s a -> ST s (a, BoolState) runBoolReaderWith st action = S.runStateT action st execBoolReader :: BoolState -> BoolReader s a -> ST s BoolState execBoolReader st reader = S.execStateT reader st initBoolState :: B.ByteString -> BoolState initBoolState str = case B.uncons str of Nothing -> BoolState 0 0 B.empty Just (v, rest) -> BoolState 0 v rest initBoolStateJpg :: B.ByteString -> BoolState initBoolStateJpg str = case B.uncons str of Nothing -> BoolState 0 0 B.empty Just (0xFF, rest) -> case B.uncons rest of Nothing -> BoolState maxBound 0 B.empty Just (0x00, afterMarker) -> BoolState 7 0xFF afterMarker Just (_ , afterMarker) -> initBoolStateJpg afterMarker Just (v, rest) -> BoolState 7 v rest -- | Bitify a list of things to decode. setDecodedString :: B.ByteString -> BoolReader s () setDecodedString str = case B.uncons str of Nothing -> S.put $ BoolState 0 0 B.empty Just (v, rest) -> S.put $ BoolState 0 v rest -- | Drop all bit until the bit of indice 0, usefull to parse restart -- marker, as they are byte aligned, but Huffman might not. byteAlignJpg :: BoolReader s () byteAlignJpg = do BoolState idx _ chain <- S.get when (idx /= 7) (setDecodedStringJpg chain) getNextBitJpg :: BoolReader s Bool {-# INLINE getNextBitJpg #-} getNextBitJpg = do BoolState idx v chain <- S.get let val = (v .&. (1 `unsafeShiftL` idx)) /= 0 if idx == 0 then setDecodedStringJpg chain else S.put $ BoolState (idx - 1) v chain return val getNextIntJpg :: Int -> BoolReader s Int32 {-# INLINE getNextIntJpg #-} getNextIntJpg = go 0 where go !acc !0 = return acc go !acc !n = do BoolState idx v chain <- S.get let !leftBits = 1 + fromIntegral idx if n >= leftBits then do setDecodedStringJpg chain let !remaining = n - leftBits !mask = (1 `unsafeShiftL` leftBits) - 1 !finalV = fromIntegral v .&. mask !theseBits = finalV `unsafeShiftL` remaining go (acc .|. theseBits) remaining else do let !remaining = leftBits - n !mask = (1 `unsafeShiftL` n) - 1 !finalV = fromIntegral v `unsafeShiftR` remaining S.put $ BoolState (fromIntegral remaining - 1) v chain return $ (finalV .&. mask) .|. acc setDecodedStringMSB :: B.ByteString -> BoolReader s () setDecodedStringMSB str = case B.uncons str of Nothing -> S.put $ BoolState 8 0 B.empty Just (v, rest) -> S.put $ BoolState 8 v rest {-# INLINE getNextBitsMSBFirst #-} getNextBitsMSBFirst :: Int -> BoolReader s Word32 getNextBitsMSBFirst requested = go 0 requested where go :: Word32 -> Int -> BoolReader s Word32 go !acc !0 = return acc go !acc !n = do BoolState idx v chain <- S.get let !leftBits = fromIntegral idx if n >= leftBits then do setDecodedStringMSB chain let !theseBits = fromIntegral v `unsafeShiftL` (n - leftBits) go (acc .|. theseBits) (n - leftBits) else do let !remaining = leftBits - n !mask = (1 `unsafeShiftL` remaining) - 1 S.put $ BoolState (fromIntegral remaining) (v .&. mask) chain return $ (fromIntegral v `unsafeShiftR` remaining) .|. acc {-# INLINE getNextBitsLSBFirst #-} getNextBitsLSBFirst :: Int -> BoolReader s Word32 getNextBitsLSBFirst count = aux 0 count where aux acc 0 = return acc aux acc n = do bit <- getNextBit let nextVal | bit = acc .|. (1 `unsafeShiftL` (count - n)) | otherwise = acc aux nextVal (n - 1) {-# INLINE getNextBit #-} getNextBit :: BoolReader s Bool getNextBit = do BoolState idx v chain <- S.get let val = (v .&. (1 `unsafeShiftL` idx)) /= 0 if idx == 7 then setDecodedString chain else S.put $ BoolState (idx + 1) v chain return val -- | Bitify a list of things to decode. Handle Jpeg escape -- code (0xFF 0x00), thus should be only used in JPEG decoding. setDecodedStringJpg :: B.ByteString -> BoolReader s () setDecodedStringJpg str = case B.uncons str of Nothing -> S.put $ BoolState maxBound 0 B.empty Just (0xFF, rest) -> case B.uncons rest of Nothing -> S.put $ BoolState maxBound 0 B.empty Just (0x00, afterMarker) -> -- trace "00" $ S.put $ BoolState 7 0xFF afterMarker Just (_ , afterMarker) -> setDecodedStringJpg afterMarker Just (v, rest) -> S.put $ BoolState 7 v rest -------------------------------------------------- ---- Writer -------------------------------------------------- defaultBufferSize :: Int defaultBufferSize = 256 * 1024 data BoolWriteStateRef s = BoolWriteStateRef { bwsCurrBuffer :: STRef s (M.MVector s Word8) , bwsBufferList :: STRef s [B.ByteString] , bwsWrittenWords :: STRef s Int , bwsBitAcc :: STRef s Word8 , bwsBitReaded :: STRef s Int } newWriteStateRef :: ST s (BoolWriteStateRef s) newWriteStateRef = do origMv <- M.new defaultBufferSize BoolWriteStateRef <$> newSTRef origMv <*> newSTRef [] <*> newSTRef 0 <*> newSTRef 0 <*> newSTRef 0 finalizeBoolWriter :: BoolWriteStateRef s -> ST s L.ByteString finalizeBoolWriter st = do forceBufferFlushing' st L.fromChunks <$> readSTRef (bwsBufferList st) forceBufferFlushing' :: BoolWriteStateRef s -> ST s () forceBufferFlushing' (BoolWriteStateRef { bwsCurrBuffer = vecRef , bwsWrittenWords = countRef , bwsBufferList = lstRef }) = do vec <- readSTRef vecRef count <- readSTRef countRef lst <- readSTRef lstRef nmv <- M.new defaultBufferSize str <- byteStringFromVector vec count writeSTRef vecRef nmv writeSTRef lstRef $ lst ++ [str] writeSTRef countRef 0 flushCurrentBuffer' :: BoolWriteStateRef s -> ST s () flushCurrentBuffer' st = do count <- readSTRef $ bwsWrittenWords st when (count >= defaultBufferSize) (forceBufferFlushing' st) byteStringFromVector :: M.MVector s Word8 -> Int -> ST s B.ByteString byteStringFromVector vec size = do frozen <- VS.unsafeFreeze vec return $ blitVector frozen 0 size setBitCount' :: BoolWriteStateRef s -> Word8 -> Int -> ST s () {-# INLINE setBitCount' #-} setBitCount' st acc count = do writeSTRef (bwsBitAcc st) acc writeSTRef (bwsBitReaded st) count resetBitCount' :: BoolWriteStateRef s -> ST s () {-# INLINE resetBitCount' #-} resetBitCount' st = setBitCount' st 0 0 pushByte' :: BoolWriteStateRef s -> Word8 -> ST s () {-# INLINE pushByte' #-} pushByte' st v = do flushCurrentBuffer' st idx <- readSTRef (bwsWrittenWords st) vec <- readSTRef (bwsCurrBuffer st) M.write vec idx v writeSTRef (bwsWrittenWords st) $ idx + 1 -- | Append some data bits to a Put monad. writeBits' :: BoolWriteStateRef s -> Word32 -- ^ The real data to be stored. Actual data should be in the LSB -> Int -- ^ Number of bit to write from 1 to 32 -> ST s () {-# INLINE writeBits' #-} writeBits' st d c = do currWord <- readSTRef $ bwsBitAcc st currCount <- readSTRef $ bwsBitReaded st serialize d c currWord currCount where dumpByte 0xFF = pushByte' st 0xFF >> pushByte' st 0x00 dumpByte i = pushByte' st i serialize bitData bitCount currentWord count | bitCount + count == 8 = do resetBitCount' st dumpByte (fromIntegral $ (currentWord `unsafeShiftL` bitCount) .|. fromIntegral cleanData) | bitCount + count < 8 = let newVal = currentWord `unsafeShiftL` bitCount in setBitCount' st (newVal .|. fromIntegral cleanData) $ count + bitCount | otherwise = let leftBitCount = 8 - count :: Int highPart = cleanData `unsafeShiftR` (bitCount - leftBitCount) :: Word32 prevPart = fromIntegral currentWord `unsafeShiftL` leftBitCount :: Word32 nextMask = (1 `unsafeShiftL` (bitCount - leftBitCount)) - 1 :: Word32 newData = cleanData .&. nextMask :: Word32 newCount = bitCount - leftBitCount :: Int toWrite = fromIntegral $ prevPart .|. highPart :: Word8 in dumpByte toWrite >> serialize newData newCount 0 0 where cleanMask = (1 `unsafeShiftL` bitCount) - 1 :: Word32 cleanData = bitData .&. cleanMask :: Word32 -- | Append some data bits to a Put monad. writeBitsGif :: BoolWriteStateRef s -> Word32 -- ^ The real data to be stored. Actual data should be in the LSB -> Int -- ^ Number of bit to write from 1 to 32 -> ST s () {-# INLINE writeBitsGif #-} writeBitsGif st d c = do currWord <- readSTRef $ bwsBitAcc st currCount <- readSTRef $ bwsBitReaded st serialize d c currWord currCount where dumpByte = pushByte' st serialize bitData bitCount currentWord count | bitCount + count == 8 = do resetBitCount' st dumpByte (fromIntegral $ currentWord .|. (fromIntegral cleanData `unsafeShiftL` count)) | bitCount + count < 8 = let newVal = fromIntegral cleanData `unsafeShiftL` count in setBitCount' st (newVal .|. currentWord) $ count + bitCount | otherwise = let leftBitCount = 8 - count :: Int newData = cleanData `unsafeShiftR` leftBitCount :: Word32 newCount = bitCount - leftBitCount :: Int toWrite = fromIntegral $ fromIntegral currentWord .|. (cleanData `unsafeShiftL` count) :: Word8 in dumpByte toWrite >> serialize newData newCount 0 0 where cleanMask = (1 `unsafeShiftL` bitCount) - 1 :: Word32 cleanData = bitData .&. cleanMask :: Word32 {-# ANN module "HLint: ignore Reduce duplication" #-}
Chobbes/Juicy.Pixels
src/Codec/Picture/BitWriter.hs
bsd-3-clause
12,796
0
17
4,132
3,372
1,708
1,664
266
5
{-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE TypeFamilies #-} module PCA.Distribution where import Numeric.LinearAlgebra.Data (Vector, Matrix) data family Distr m v data instance Distr Double Double = Gamma Double Double data instance Distr (Vector Double) (Vector Double) = MGamma (Vector Double) (Vector Double) data instance Distr (Vector Double) (Matrix Double) = MNormal (Vector Double) (Matrix Double) data instance Distr (Matrix Double) (Matrix Double) = MatrixMNormal (Matrix Double) (Matrix Double) class Mean m v where mean :: Distr m v -> m instance Mean Double Double where mean (Gamma s r) = s / r instance Mean (Vector Double) (Vector Double) where mean (MGamma s r) = s / r instance Mean (Vector Double) (Matrix Double) where mean (MNormal m v) = m instance Mean (Matrix Double) (Matrix Double) where mean (MatrixMNormal m v) = m class Variance m v where variance :: Distr m v -> v instance Variance (Vector Double) (Matrix Double) where variance (MNormal m v) = v instance Variance (Matrix Double) (Matrix Double) where variance (MatrixMNormal m v) = v
DbIHbKA/vbpca
src/PCA/Distribution.hs
bsd-3-clause
1,430
0
8
471
448
230
218
34
0
module Sequent.Inference (check) where import Control.Applicative (Alternative, empty, (<|>)) import Control.Monad (guard, mzero) import Control.Monad.Writer (tell) import Sequent.Check (Check, liftEnv) import Sequent.Introduce (introduce) import qualified Sequent.Proof as P import Sequent.Theorem (Theorem ((:->))) import qualified Sequent.Theorem as T -- TODO this seems to be a lot of work just to have monadplus-able functions newtype Rule a = Rule { runRule :: IRule a } type IRule a = (P.Proof -> T.Judgment -> Check a) type InferenceRule = IRule () instance Functor Rule where fmap f (Rule g) = Rule (\s t -> fmap f (g s t)) instance Applicative Rule where pure x = Rule (\_ _ -> return x) (Rule f) <*> (Rule g) = Rule (\s t -> f s t <*> g s t) instance Alternative Rule where empty = Rule (\_ _ -> empty) (Rule f) <|> (Rule g) = Rule (\s t -> f s t <|> g s t) logStep :: InferenceRule logStep step (antecedent, succedent) = do let longest [] = 0 longest xs = maximum (fmap length xs) let ants = fmap show antecedent let sucs = fmap show succedent let l = max (longest ants) (longest sucs) tell $ unlines ants ++ "|" ++ replicate (l - 1) '-' tell $ unlines sucs ++ show step tell "\n" mzero thenR :: Rule () -> InferenceRule -> Rule () thenR l r = l <|> Rule r check :: InferenceRule check = runRule $ Rule logStep `thenR` iAxiom `thenR` iContractionSuccedent `thenR` iContractionAntecedent `thenR` iWeakenSuccedent `thenR` iWeakenAntecedent `thenR` iForAllSuccedent `thenR` iForAllAntecedent `thenR` iForSomeSuccedent `thenR` iForSomeAntecedent `thenR` iOrElimLeftSuccedent `thenR` iOrElimRightSuccedent `thenR` iNegationSuccedent `thenR` iNegationAntecedent `thenR` iOrElimAntecedent `thenR` iAndElimSuccedent `thenR` iAndElimRightAntecedent `thenR` iAndElimLeftAntecedent `thenR` iImplicationAntecedent `thenR` iImplicationSuccedent `thenR` iPermuteSuccedent `thenR` iPermuteAntecedent `thenR` iRotateLeftAntecedent `thenR` iRotateLeftSuccedent {- ----------------------- axiom Gamma, T |- T, _ -} iAxiom :: InferenceRule iAxiom P.Axiom (gammaA, t@(T.TTerm _):_) = guard (t `elem` gammaA) iAxiom _ _ = mzero {- Gamma |- A, A, Delta -------------------------- contract right Gamma |- A, Delta -} iContractionSuccedent :: InferenceRule iContractionSuccedent (P.ContractionSuccedent rest) (gamma, a:delta) = check rest (gamma, a:a:delta) iContractionSuccedent _ _ = mzero {- Gamma, A, A |- Delta -------------------------- contract left Gamma, A |- Delta -} iContractionAntecedent :: InferenceRule iContractionAntecedent (P.ContractionAntecedent rest) (a:gamma, delta) = check rest (a:a:gamma, delta) iContractionAntecedent _ _ = mzero {- Gamma |- Delta -------------------------- weaken right Gamma |- _, Delta -} iWeakenSuccedent :: InferenceRule iWeakenSuccedent (P.WeakenSuccedent rest) (gamma, _:delta) = check rest (gamma, delta) iWeakenSuccedent _ _ = mzero {- Gamma |- Delta -------------------------- weaken left Gamma, _ |- Delta -} iWeakenAntecedent :: InferenceRule iWeakenAntecedent (P.WeakenAntecedent rest) (_:gamma, delta) = check rest (gamma, delta) iWeakenAntecedent _ _ = mzero {- Gamma |- A[y/x], Delta -------------------------------- forall right Gamma |- forall x. A, Delta -} iForAllSuccedent :: InferenceRule iForAllSuccedent (P.ForAllSuccedent t) (gamma, T.ForAll f:delta) = do y <- liftEnv introduce check (t y) (gamma, f y:delta) iForAllSuccedent _ _ = mzero {- Gamma, A[y/x] |- Delta -------------------------------- forall left Gamma, forall x. A |- Delta -} iForAllAntecedent :: InferenceRule iForAllAntecedent (P.ForAllAntecedent y rest) (T.ForAll f:gamma, delta) = check rest (f y:gamma, delta) iForAllAntecedent _ _ = mzero {- Gamma |- A[y/x], Delta -------------------------------- forall right Gamma |- there exists x. A, Delta -} iForSomeSuccedent :: InferenceRule iForSomeSuccedent (P.ForSomeSuccedent y rest) (gamma, T.ForSome f:delta) = check rest (gamma, f y:delta) iForSomeSuccedent _ _ = mzero {- Gamma, A[y/x] |- Delta -------------------------------- forall left Gamma, there exists x. A |- Delta -} iForSomeAntecedent :: InferenceRule iForSomeAntecedent (P.ForSomeAntecedent t) (T.ForSome f:gamma, delta) = do y <- liftEnv introduce check (t y) (f y:gamma, delta) iForSomeAntecedent _ _ = mzero {- Gamma |- A, Delta ----------------------------- right or-left Gamma |- A v _, Delta -} iOrElimLeftSuccedent :: InferenceRule iOrElimLeftSuccedent (P.OrElimLeftSuccedent rest) (gamma, T.Or a _:delta) = check rest (gamma, a:delta) iOrElimLeftSuccedent _ _ = mzero {- Gamma |- B, Delta ----------------------------- right or-right Gamma |- _ v B, Delta -} iOrElimRightSuccedent :: InferenceRule iOrElimRightSuccedent (P.OrElimRightSuccedent rest) (gamma, T.Or _ b:delta) = check rest (gamma, b:delta) iOrElimRightSuccedent _ _ = mzero {- Gamma, A |- Delta ----------------------- right not Gamma |- !A, Delta -} iNegationSuccedent :: InferenceRule iNegationSuccedent (P.NegationSuccedent rest) (gamma, T.Not a:delta) = check rest (a:gamma, delta) iNegationSuccedent _ _ = mzero {- Gamma |- A, Delta ----------------------- left not Gamma, !A |- Delta -} iNegationAntecedent :: InferenceRule iNegationAntecedent (P.NegationAntecedent rest) (T.Not a:gamma, delta) = check rest (gamma, a:delta) iNegationAntecedent _ _ = mzero {- Gamma, A |- Delta Sigma, B |- Pi ----------------------------------------- left or Gamma, Sigma, A v B |- Delta, Pi -} iOrElimAntecedent :: InferenceRule iOrElimAntecedent (P.OrElimAntecedent aProof bProof) (T.Or a b:gammaSigma, deltaPi) = do check aProof (a:gammaSigma, deltaPi) check bProof (b:gammaSigma, deltaPi) iOrElimAntecedent _ _ = mzero {- Gamma |- A, Delta Sigma |- B, Pi ----------------------------------------- right and Gamma, Sigma |- A ^ B, Delta, Pi -} iAndElimSuccedent :: InferenceRule iAndElimSuccedent (P.AndElimSuccedent aProof bProof) (gammaSigma, T.And a b:deltaPi) = do check aProof (gammaSigma, a:deltaPi) check bProof (gammaSigma, b:deltaPi) iAndElimSuccedent _ _ = mzero {- Gamma, A |- Delta ------------------------- left left and Gamma, A, _ |- Delta -} iAndElimLeftAntecedent :: InferenceRule iAndElimLeftAntecedent (P.AndElimLeftAntecedent rest) (T.And a _:gamma, delta) = check rest (a:gamma, delta) iAndElimLeftAntecedent _ _ = mzero {- Gamma, B |- Delta ------------------------- right left and Gamma, _, B |- Delta -} iAndElimRightAntecedent :: InferenceRule iAndElimRightAntecedent (P.AndElimRightAntecedent rest) (T.And _ b:gamma, delta) = check rest (b:gamma, delta) iAndElimRightAntecedent _ _ = mzero {- Gamma, A |- B, Delta --------------------------- right implication Gamma |- A -> B, Delta -} iImplicationSuccedent :: InferenceRule iImplicationSuccedent (P.ImplicationSuccedent rest) (gamma, a :-> b:delta) = check rest (a:gamma, b:delta) iImplicationSuccedent _ _ = mzero {- Sigma |- A, Pi Gamma, B |- Delta ----------------------------------------- left implication Gamma, Sigma, A -> B |- Delta, Pi -} iImplicationAntecedent :: InferenceRule iImplicationAntecedent (P.ImplicationAntecedent aProof bProof) (a :-> b:gammaSigma, deltaPi) = do check aProof (gammaSigma, a:deltaPi) check bProof (b:gammaSigma, deltaPi) iImplicationAntecedent _ _ = mzero {- Gamma |- B, A, Delta --------------------------- right permute Gamma |- A, B, Delta -} iPermuteSuccedent :: InferenceRule iPermuteSuccedent (P.PermuteSuccedent rest) (gamma, a:b:delta) = check rest (gamma, b:a:delta) iPermuteSuccedent _ _ = mzero {- Gamma, B, A |- Delta --------------------------- left permute Gamma, A, B |- Delta -} iPermuteAntecedent :: InferenceRule iPermuteAntecedent (P.PermuteAntecedent rest) (a:b:gamma, delta) = check rest (b:a:gamma, delta) iPermuteAntecedent _ _ = mzero {- A_2, ..., A_n, A_1 |- Delta -------------------------------- rotate right left A_1, ..., A_n |- Delta -} iRotateLeftAntecedent :: InferenceRule iRotateLeftAntecedent (P.RotateLeftAntecedent rest) (as, delta) = check rest (rotate as, delta) iRotateLeftAntecedent _ _ = mzero {- Gamma |- A_2, ..., A_n, A_1 -------------------------------- rotate right left Gamma |- A_1, ..., A_n -} iRotateLeftSuccedent :: InferenceRule iRotateLeftSuccedent (P.RotateLeftSuccedent rest) (gamma, as) = check rest (gamma, rotate as) iRotateLeftSuccedent _ _ = mzero rotate :: [a] -> [a] rotate [] = [] rotate (a:as) = as ++ [a]
matthieubulte/sequent
src/Sequent/Inference.hs
bsd-3-clause
9,166
0
29
2,007
2,350
1,259
1,091
159
2
-- The @FamInst@ type: family instance heads {-# LANGUAGE CPP, GADTs #-} module FamInst ( FamInstEnvs, tcGetFamInstEnvs, checkFamInstConsistency, tcExtendLocalFamInstEnv, tcLookupDataFamInst, tcLookupDataFamInst_maybe, tcInstNewTyCon_maybe, tcTopNormaliseNewTypeTF_maybe, newFamInst, -- * Injectivity makeInjectivityErrors, injTyVarsOfType, injTyVarsOfTypes ) where import GhcPrelude import HscTypes import FamInstEnv import InstEnv( roughMatchTcs ) import Coercion import TcEvidence import LoadIface import TcRnMonad import SrcLoc import TyCon import TcType import CoAxiom import DynFlags import Module import Outputable import Util import RdrName import DataCon ( dataConName ) import Maybes import Type import TyCoRep import TcMType import Name import Pair import Panic import VarSet import Bag( Bag, unionBags, unitBag ) import Control.Monad #include "HsVersions.h" {- Note [The type family instance consistency story] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To preserve type safety we must ensure that for any given module, all the type family instances used either in that module or in any module it directly or indirectly imports are consistent. For example, consider module F where type family F a module A where import F( F ) type instance F Int = Bool f :: F Int -> Bool f x = x module B where import F( F ) type instance F Int = Char g :: Char -> F Int g x = x module Bad where import A( f ) import B( g ) bad :: Char -> Int bad c = f (g c) Even though module Bad never mentions the type family F at all, by combining the functions f and g that were type checked in contradictory type family instance environments, the function bad is able to coerce from one type to another. So when we type check Bad we must verify that the type family instances defined in module A are consistent with those defined in module B. How do we ensure that we maintain the necessary consistency? * Call a module which defines at least one type family instance a "family instance module". This flag `mi_finsts` is recorded in the interface file. * For every module we calculate the set of all of its direct and indirect dependencies that are family instance modules. This list `dep_finsts` is also recorded in the interface file so we can compute this list for a module from the lists for its direct dependencies. * When type checking a module M we check consistency of all the type family instances that are either provided by its `dep_finsts` or defined in the module M itself. This is a pairwise check, i.e., for every pair of instances we must check that they are consistent. - For family instances coming from `dep_finsts`, this is checked in checkFamInstConsistency, called from tcRnImports. See Note [Checking family instance consistency] for details on this check (and in particular how we avoid having to do all these checks for every module we compile). - That leaves checking the family instances defined in M itself against instances defined in either M or its `dep_finsts`. This is checked in `tcExtendLocalFamInstEnv'. There are two subtle points in this scheme which have not been addressed yet. * We have checked consistency of the family instances *defined* by M or its imports, but this is not by definition the same thing as the family instances *used* by M or its imports. Specifically, we need to ensure when we use a type family instance while compiling M that this instance was really defined from either M or one of its imports, rather than being an instance that we happened to know about from reading an interface file in the course of compiling an unrelated module. Otherwise, we'll end up with no record of the fact that M depends on this family instance and type safety will be compromised. See #13102. * It can also happen that M uses a function defined in another module which is not transitively imported by M. Examples include the desugaring of various overloaded constructs, and references inserted by Template Haskell splices. If that function's definition makes use of type family instances which are not checked against those visible from M, type safety can again be compromised. See #13251. * When a module C imports a boot module B.hs-boot, we check that C's type family instances are compatible with those visible from B.hs-boot. However, C will eventually be linked against a different module B.hs, which might define additional type family instances which are inconsistent with C's. This can also lead to loss of type safety. See #9562. -} {- ************************************************************************ * * Making a FamInst * * ************************************************************************ -} -- All type variables in a FamInst must be fresh. This function -- creates the fresh variables and applies the necessary substitution -- It is defined here to avoid a dependency from FamInstEnv on the monad -- code. newFamInst :: FamFlavor -> CoAxiom Unbranched -> TcRnIf gbl lcl FamInst -- Freshen the type variables of the FamInst branches -- Called from the vectoriser monad too, hence the rather general type newFamInst flavor axiom@(CoAxiom { co_ax_tc = fam_tc }) = ASSERT2( tyCoVarsOfTypes lhs `subVarSet` tcv_set, text "lhs" <+> pp_ax ) ASSERT2( tyCoVarsOfType rhs `subVarSet` tcv_set, text "rhs" <+> pp_ax ) ASSERT2( lhs_kind `eqType` rhs_kind, text "kind" <+> pp_ax $$ ppr lhs_kind $$ ppr rhs_kind ) do { (subst, tvs') <- freshenTyVarBndrs tvs ; (subst, cvs') <- freshenCoVarBndrsX subst cvs ; return (FamInst { fi_fam = tyConName fam_tc , fi_flavor = flavor , fi_tcs = roughMatchTcs lhs , fi_tvs = tvs' , fi_cvs = cvs' , fi_tys = substTys subst lhs , fi_rhs = substTy subst rhs , fi_axiom = axiom }) } where lhs_kind = typeKind (mkTyConApp fam_tc lhs) rhs_kind = typeKind rhs tcv_set = mkVarSet (tvs ++ cvs) pp_ax = pprCoAxiom axiom CoAxBranch { cab_tvs = tvs , cab_cvs = cvs , cab_lhs = lhs , cab_rhs = rhs } = coAxiomSingleBranch axiom {- ************************************************************************ * * Optimised overlap checking for family instances * * ************************************************************************ Note [Checking family instance consistency] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ For any two family instance modules that we import directly or indirectly, we check whether the instances in the two modules are consistent, *unless* we can be certain that the instances of the two modules have already been checked for consistency during the compilation of modules that we import. Why do we need to check? Consider module X1 where module X2 where data T1 data T2 type instance F T1 b = Int type instance F a T2 = Char f1 :: F T1 a -> Int f2 :: Char -> F a T2 f1 x = x f2 x = x Now if we import both X1 and X2 we could make (f2 . f1) :: Int -> Char. Notice that neither instance is an orphan. How do we know which pairs of modules have already been checked? For each module M we directly import, we look up the family instance modules that M imports (directly or indirectly), say F1, ..., FN. For any two modules among M, F1, ..., FN, we know that the family instances defined in those two modules are consistent--because we checked that when we compiled M. For every other pair of family instance modules we import (directly or indirectly), we check that they are consistent now. (So that we can be certain that the modules in our `HscTypes.dep_finsts' are consistent.) There is some fancy footwork regarding hs-boot module loops, see Note [Don't check hs-boot type family instances too early] Note [Checking family instance optimization] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ As explained in Note [Checking family instance consistency] we need to ensure that every pair of transitive imports that define type family instances is consistent. Let's define df(A) = transitive imports of A that define type family instances + A, if A defines type family instances Then for every direct import A, df(A) is already consistent. Let's name the current module M. We want to make sure that df(M) is consistent. df(M) = df(D_1) U df(D_2) U ... U df(D_i) where D_1 .. D_i are direct imports. We perform the check iteratively, maintaining a set of consistent modules 'C' and trying to add df(D_i) to it. The key part is how to ensure that the union C U df(D_i) is consistent. Let's consider two modules: A and B from C U df(D_i). There are nine possible ways to choose A and B from C U df(D_i): | A in C only | A in C and B in df(D_i) | A in df(D_i) only -------------------------------------------------------------------------------- B in C only | Already checked | Already checked | Needs to be checked | when checking C | when checking C | -------------------------------------------------------------------------------- B in C and | Already checked | Already checked | Already checked when B in df(D_i) | when checking C | when checking C | checking df(D_i) -------------------------------------------------------------------------------- B in df(D_i) | Needs to be | Already checked | Already checked when only | checked | when checking df(D_i) | checking df(D_i) That means to ensure that C U df(D_i) is consistent we need to check every module from C - df(D_i) against every module from df(D_i) - C and every module from df(D_i) - C against every module from C - df(D_i). But since the checks are symmetric it suffices to pick A from C - df(D_i) and B from df(D_i) - C. In other words these are the modules we need to check: [ (m1, m2) | m1 <- C, m1 not in df(D_i) , m2 <- df(D_i), m2 not in C ] One final thing to note here is that if there's lot of overlap between subsequent df(D_i)'s then we expect those set differences to be small. That situation should be pretty common in practice, there's usually a set of utility modules that every module imports directly or indirectly. This is basically the idea from #13092, comment:14. -} -- This function doesn't check ALL instances for consistency, -- only ones that aren't involved in recursive knot-tying -- loops; see Note [Don't check hs-boot type family instances too early]. -- We don't need to check the current module, this is done in -- tcExtendLocalFamInstEnv. -- See Note [The type family instance consistency story]. checkFamInstConsistency :: [Module] -> TcM () checkFamInstConsistency directlyImpMods = do { dflags <- getDynFlags ; (eps, hpt) <- getEpsAndHpt ; traceTc "checkFamInstConsistency" (ppr directlyImpMods) ; let { -- Fetch the iface of a given module. Must succeed as -- all directly imported modules must already have been loaded. modIface mod = case lookupIfaceByModule dflags hpt (eps_PIT eps) mod of Nothing -> panicDoc "FamInst.checkFamInstConsistency" (ppr mod $$ pprHPT hpt) Just iface -> iface -- Which family instance modules were checked for consistency -- when we compiled `mod`? -- Itself (if a family instance module) and its dep_finsts. -- This is df(D_i) from -- Note [Checking family instance optimization] ; modConsistent :: Module -> [Module] ; modConsistent mod = if mi_finsts (modIface mod) then mod:deps else deps where deps = dep_finsts . mi_deps . modIface $ mod ; hmiModule = mi_module . hm_iface ; hmiFamInstEnv = extendFamInstEnvList emptyFamInstEnv . md_fam_insts . hm_details ; hpt_fam_insts = mkModuleEnv [ (hmiModule hmi, hmiFamInstEnv hmi) | hmi <- eltsHpt hpt] } ; checkMany hpt_fam_insts modConsistent directlyImpMods } where -- See Note [Checking family instance optimization] checkMany :: ModuleEnv FamInstEnv -- home package family instances -> (Module -> [Module]) -- given A, modules checked when A was checked -> [Module] -- modules to process -> TcM () checkMany hpt_fam_insts modConsistent mods = go [] emptyModuleSet mods where go :: [Module] -- list of consistent modules -> ModuleSet -- set of consistent modules, same elements as the -- list above -> [Module] -- modules to process -> TcM () go _ _ [] = return () go consistent consistent_set (mod:mods) = do sequence_ [ check hpt_fam_insts m1 m2 | m1 <- to_check_from_mod -- loop over toCheckFromMod first, it's usually smaller, -- it may even be empty , m2 <- to_check_from_consistent ] go consistent' consistent_set' mods where mod_deps_consistent = modConsistent mod mod_deps_consistent_set = mkModuleSet mod_deps_consistent consistent' = to_check_from_mod ++ consistent consistent_set' = extendModuleSetList consistent_set to_check_from_mod to_check_from_consistent = filterOut (`elemModuleSet` mod_deps_consistent_set) consistent to_check_from_mod = filterOut (`elemModuleSet` consistent_set) mod_deps_consistent -- Why don't we just minusModuleSet here? -- We could, but doing so means one of two things: -- -- 1. When looping over the cartesian product we convert -- a set into a non-deterministicly ordered list. Which -- happens to be fine for interface file determinism -- in this case, today, because the order only -- determines the order of deferred checks. But such -- invariants are hard to keep. -- -- 2. When looping over the cartesian product we convert -- a set into a deterministically ordered list - this -- adds some additional cost of sorting for every -- direct import. -- -- That also explains why we need to keep both 'consistent' -- and 'consistentSet'. -- -- See also Note [ModuleEnv performance and determinism]. check hpt_fam_insts m1 m2 = do { env1' <- getFamInsts hpt_fam_insts m1 ; env2' <- getFamInsts hpt_fam_insts m2 -- We're checking each element of env1 against env2. -- The cost of that is dominated by the size of env1, because -- for each instance in env1 we look it up in the type family -- environment env2, and lookup is cheap. -- The code below ensures that env1 is the smaller environment. ; let sizeE1 = famInstEnvSize env1' sizeE2 = famInstEnvSize env2' (env1, env2) = if sizeE1 < sizeE2 then (env1', env2') else (env2', env1') -- Note [Don't check hs-boot type family instances too early] -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Family instance consistency checking involves checking that -- the family instances of our imported modules are consistent with -- one another; this might lead you to think that this process -- has nothing to do with the module we are about to typecheck. -- Not so! Consider the following case: -- -- -- A.hs-boot -- type family F a -- -- -- B.hs -- import {-# SOURCE #-} A -- type instance F Int = Bool -- -- -- A.hs -- import B -- type family F a -- -- When typechecking A, we are NOT allowed to poke the TyThing -- for F until we have typechecked the family. Thus, we -- can't do consistency checking for the instance in B -- (checkFamInstConsistency is called during renaming). -- Failing to defer the consistency check lead to #11062. -- -- Additionally, we should also defer consistency checking when -- type from the hs-boot file of the current module occurs on -- the left hand side, as we will poke its TyThing when checking -- for overlap. -- -- -- F.hs -- type family F a -- -- -- A.hs-boot -- import F -- data T -- -- -- B.hs -- import {-# SOURCE #-} A -- import F -- type instance F T = Int -- -- -- A.hs -- import B -- data T = MkT -- -- In fact, it is even necessary to defer for occurrences in -- the RHS, because we may test for *compatibility* in event -- of an overlap. -- -- Why don't we defer ALL of the checks to later? Well, many -- instances aren't involved in the recursive loop at all. So -- we might as well check them immediately; and there isn't -- a good time to check them later in any case: every time -- we finish kind-checking a type declaration and add it to -- a context, we *then* consistency check all of the instances -- which mentioned that type. We DO want to check instances -- as quickly as possible, so that we aren't typechecking -- values with inconsistent axioms in scope. -- -- See also Note [Tying the knot] and Note [Type-checking inside the knot] -- for why we are doing this at all. ; let check_now = famInstEnvElts env1 ; mapM_ (checkForConflicts (emptyFamInstEnv, env2)) check_now ; mapM_ (checkForInjectivityConflicts (emptyFamInstEnv,env2)) check_now } getFamInsts :: ModuleEnv FamInstEnv -> Module -> TcM FamInstEnv getFamInsts hpt_fam_insts mod | Just env <- lookupModuleEnv hpt_fam_insts mod = return env | otherwise = do { _ <- initIfaceTcRn (loadSysInterface doc mod) ; eps <- getEps ; return (expectJust "checkFamInstConsistency" $ lookupModuleEnv (eps_mod_fam_inst_env eps) mod) } where doc = ppr mod <+> text "is a family-instance module" {- ************************************************************************ * * Lookup * * ************************************************************************ -} -- | If @co :: T ts ~ rep_ty@ then: -- -- > instNewTyCon_maybe T ts = Just (rep_ty, co) -- -- Checks for a newtype, and for being saturated -- Just like Coercion.instNewTyCon_maybe, but returns a TcCoercion tcInstNewTyCon_maybe :: TyCon -> [TcType] -> Maybe (TcType, TcCoercion) tcInstNewTyCon_maybe = instNewTyCon_maybe -- | Like 'tcLookupDataFamInst_maybe', but returns the arguments back if -- there is no data family to unwrap. -- Returns a Representational coercion tcLookupDataFamInst :: FamInstEnvs -> TyCon -> [TcType] -> (TyCon, [TcType], Coercion) tcLookupDataFamInst fam_inst_envs tc tc_args | Just (rep_tc, rep_args, co) <- tcLookupDataFamInst_maybe fam_inst_envs tc tc_args = (rep_tc, rep_args, co) | otherwise = (tc, tc_args, mkRepReflCo (mkTyConApp tc tc_args)) tcLookupDataFamInst_maybe :: FamInstEnvs -> TyCon -> [TcType] -> Maybe (TyCon, [TcType], Coercion) -- ^ Converts a data family type (eg F [a]) to its representation type (eg FList a) -- and returns a coercion between the two: co :: F [a] ~R FList a. tcLookupDataFamInst_maybe fam_inst_envs tc tc_args | isDataFamilyTyCon tc , match : _ <- lookupFamInstEnv fam_inst_envs tc tc_args , FamInstMatch { fim_instance = rep_fam@(FamInst { fi_axiom = ax , fi_cvs = cvs }) , fim_tys = rep_args , fim_cos = rep_cos } <- match , let rep_tc = dataFamInstRepTyCon rep_fam co = mkUnbranchedAxInstCo Representational ax rep_args (mkCoVarCos cvs) = ASSERT( null rep_cos ) -- See Note [Constrained family instances] in FamInstEnv Just (rep_tc, rep_args, co) | otherwise = Nothing -- | 'tcTopNormaliseNewTypeTF_maybe' gets rid of top-level newtypes, -- potentially looking through newtype /instances/. -- -- It is only used by the type inference engine (specifically, when -- solving representational equality), and hence it is careful to unwrap -- only if the relevant data constructor is in scope. That's why -- it get a GlobalRdrEnv argument. -- -- It is careful not to unwrap data/newtype instances if it can't -- continue unwrapping. Such care is necessary for proper error -- messages. -- -- It does not look through type families. -- It does not normalise arguments to a tycon. -- -- If the result is Just (rep_ty, (co, gres), rep_ty), then -- co : ty ~R rep_ty -- gres are the GREs for the data constructors that -- had to be in scope tcTopNormaliseNewTypeTF_maybe :: FamInstEnvs -> GlobalRdrEnv -> Type -> Maybe ((Bag GlobalRdrElt, TcCoercion), Type) tcTopNormaliseNewTypeTF_maybe faminsts rdr_env ty -- cf. FamInstEnv.topNormaliseType_maybe and Coercion.topNormaliseNewType_maybe = topNormaliseTypeX stepper plus ty where plus :: (Bag GlobalRdrElt, TcCoercion) -> (Bag GlobalRdrElt, TcCoercion) -> (Bag GlobalRdrElt, TcCoercion) plus (gres1, co1) (gres2, co2) = ( gres1 `unionBags` gres2 , co1 `mkTransCo` co2 ) stepper :: NormaliseStepper (Bag GlobalRdrElt, TcCoercion) stepper = unwrap_newtype `composeSteppers` unwrap_newtype_instance -- For newtype instances we take a double step or nothing, so that -- we don't return the representation type of the newtype instance, -- which would lead to terrible error messages unwrap_newtype_instance rec_nts tc tys | Just (tc', tys', co) <- tcLookupDataFamInst_maybe faminsts tc tys = mapStepResult (\(gres, co1) -> (gres, co `mkTransCo` co1)) $ unwrap_newtype rec_nts tc' tys' | otherwise = NS_Done unwrap_newtype rec_nts tc tys | Just con <- newTyConDataCon_maybe tc , Just gre <- lookupGRE_Name rdr_env (dataConName con) -- This is where we check that the -- data constructor is in scope = mapStepResult (\co -> (unitBag gre, co)) $ unwrapNewTypeStepper rec_nts tc tys | otherwise = NS_Done {- ************************************************************************ * * Extending the family instance environment * * ************************************************************************ -} -- Add new locally-defined family instances, checking consistency with -- previous locally-defined family instances as well as all instances -- available from imported modules. This requires loading all of our -- imports that define family instances (if we haven't loaded them already). tcExtendLocalFamInstEnv :: [FamInst] -> TcM a -> TcM a -- If we weren't actually given any instances to add, then we don't want -- to go to the bother of loading family instance module dependencies. tcExtendLocalFamInstEnv [] thing_inside = thing_inside -- Otherwise proceed... tcExtendLocalFamInstEnv fam_insts thing_inside = do { env <- getGblEnv ; let this_mod = tcg_mod env imports = tcg_imports env -- Optimization: If we're only defining type family instances -- for type families *defined in the home package*, then we -- only have to load interface files that belong to the home -- package. The reason is that there's no recursion between -- packages, so modules in other packages can't possibly define -- instances for our type families. -- -- (Within the home package, we could import a module M that -- imports us via an hs-boot file, and thereby defines an -- instance of a type family defined in this module. So we can't -- apply the same logic to avoid reading any interface files at -- all, when we define an instances for type family defined in -- the current module.) home_fams_only = all (nameIsHomePackage this_mod . fi_fam) fam_insts want_module mod | mod == this_mod = False | home_fams_only = moduleUnitId mod == moduleUnitId this_mod | otherwise = True ; loadModuleInterfaces (text "Loading family-instance modules") (filter want_module (imp_finsts imports)) ; (inst_env', fam_insts') <- foldlM addLocalFamInst (tcg_fam_inst_env env, tcg_fam_insts env) fam_insts ; let env' = env { tcg_fam_insts = fam_insts' , tcg_fam_inst_env = inst_env' } ; setGblEnv env' thing_inside } -- Check that the proposed new instance is OK, -- and then add it to the home inst env -- This must be lazy in the fam_inst arguments, see Note [Lazy axiom match] -- in FamInstEnv.hs addLocalFamInst :: (FamInstEnv,[FamInst]) -> FamInst -> TcM (FamInstEnv, [FamInst]) addLocalFamInst (home_fie, my_fis) fam_inst -- home_fie includes home package and this module -- my_fies is just the ones from this module = do { traceTc "addLocalFamInst" (ppr fam_inst) -- Unlike the case of class instances, don't override existing -- instances in GHCi; it's unsound. See #7102. ; mod <- getModule ; traceTc "alfi" (ppr mod) -- Fetch imported instances, so that we report -- overlaps correctly. -- Really we ought to only check consistency with -- those instances which are transitively imported -- by the current module, rather than every instance -- we've ever seen. Fixing this is part of #13102. ; eps <- getEps ; let inst_envs = (eps_fam_inst_env eps, home_fie) home_fie' = extendFamInstEnv home_fie fam_inst -- Check for conflicting instance decls and injectivity violations ; no_conflict <- checkForConflicts inst_envs fam_inst ; injectivity_ok <- checkForInjectivityConflicts inst_envs fam_inst ; if no_conflict && injectivity_ok then return (home_fie', fam_inst : my_fis) else return (home_fie, my_fis) } {- ************************************************************************ * * Checking an instance against conflicts with an instance env * * ************************************************************************ Check whether a single family instance conflicts with those in two instance environments (one for the EPS and one for the HPT). -} checkForConflicts :: FamInstEnvs -> FamInst -> TcM Bool checkForConflicts inst_envs fam_inst = do { let conflicts = lookupFamInstEnvConflicts inst_envs fam_inst no_conflicts = null conflicts ; traceTc "checkForConflicts" $ vcat [ ppr (map fim_instance conflicts) , ppr fam_inst -- , ppr inst_envs ] ; unless no_conflicts $ conflictInstErr fam_inst conflicts ; return no_conflicts } -- | Check whether a new open type family equation can be added without -- violating injectivity annotation supplied by the user. Returns True when -- this is possible and False if adding this equation would violate injectivity -- annotation. checkForInjectivityConflicts :: FamInstEnvs -> FamInst -> TcM Bool checkForInjectivityConflicts instEnvs famInst | isTypeFamilyTyCon tycon -- type family is injective in at least one argument , Injective inj <- tyConInjectivityInfo tycon = do { let axiom = coAxiomSingleBranch fi_ax conflicts = lookupFamInstEnvInjectivityConflicts inj instEnvs famInst -- see Note [Verifying injectivity annotation] in FamInstEnv errs = makeInjectivityErrors fi_ax axiom inj conflicts ; mapM_ (\(err, span) -> setSrcSpan span $ addErr err) errs ; return (null errs) } -- if there was no injectivity annotation or tycon does not represent a -- type family we report no conflicts | otherwise = return True where tycon = famInstTyCon famInst fi_ax = fi_axiom famInst -- | Build a list of injectivity errors together with their source locations. makeInjectivityErrors :: CoAxiom br -- ^ Type family for which we generate errors -> CoAxBranch -- ^ Currently checked equation (represented by axiom) -> [Bool] -- ^ Injectivity annotation -> [CoAxBranch] -- ^ List of injectivity conflicts -> [(SDoc, SrcSpan)] makeInjectivityErrors fi_ax axiom inj conflicts = ASSERT2( any id inj, text "No injective type variables" ) let lhs = coAxBranchLHS axiom rhs = coAxBranchRHS axiom are_conflicts = not $ null conflicts unused_inj_tvs = unusedInjTvsInRHS (coAxiomTyCon fi_ax) inj lhs rhs inj_tvs_unused = not $ and (isEmptyVarSet <$> unused_inj_tvs) tf_headed = isTFHeaded rhs bare_variables = bareTvInRHSViolated lhs rhs wrong_bare_rhs = not $ null bare_variables err_builder herald eqns = ( hang herald 2 (vcat (map (pprCoAxBranch fi_ax) eqns)) , coAxBranchSpan (head eqns) ) errorIf p f = if p then [f err_builder axiom] else [] in errorIf are_conflicts (conflictInjInstErr conflicts ) ++ errorIf inj_tvs_unused (unusedInjectiveVarsErr unused_inj_tvs) ++ errorIf tf_headed tfHeadedErr ++ errorIf wrong_bare_rhs (bareVariableInRHSErr bare_variables) -- | Return a list of type variables that the function is injective in and that -- do not appear on injective positions in the RHS of a family instance -- declaration. The returned Pair includes invisible vars followed by visible ones unusedInjTvsInRHS :: TyCon -> [Bool] -> [Type] -> Type -> Pair TyVarSet -- INVARIANT: [Bool] list contains at least one True value -- See Note [Verifying injectivity annotation]. This function implements fourth -- check described there. -- In theory, instead of implementing this whole check in this way, we could -- attempt to unify equation with itself. We would reject exactly the same -- equations but this method gives us more precise error messages by returning -- precise names of variables that are not mentioned in the RHS. unusedInjTvsInRHS tycon injList lhs rhs = (`minusVarSet` injRhsVars) <$> injLHSVars where -- set of type and kind variables in which type family is injective (invis_pairs, vis_pairs) = partitionInvisibles tycon snd (zipEqual "unusedInjTvsInRHS" injList lhs) invis_lhs = uncurry filterByList $ unzip invis_pairs vis_lhs = uncurry filterByList $ unzip vis_pairs invis_vars = tyCoVarsOfTypes invis_lhs Pair invis_vars' vis_vars = splitVisVarsOfTypes vis_lhs injLHSVars = Pair (invis_vars `minusVarSet` vis_vars `unionVarSet` invis_vars') vis_vars -- set of type variables appearing in the RHS on an injective position. -- For all returned variables we assume their associated kind variables -- also appear in the RHS. injRhsVars = injTyVarsOfType rhs injTyVarsOfType :: TcTauType -> TcTyVarSet -- Collect all type variables that are either arguments to a type -- constructor or to /injective/ type families. -- Determining the overall type determines thes variables -- -- E.g. Suppose F is injective in its second arg, but not its first -- then injVarOfType (Either a (F [b] (a,c))) = {a,c} -- Determining the overall type determines a,c but not b. injTyVarsOfType (TyVarTy v) = unitVarSet v `unionVarSet` injTyVarsOfType (tyVarKind v) injTyVarsOfType (TyConApp tc tys) | isTypeFamilyTyCon tc = case tyConInjectivityInfo tc of NotInjective -> emptyVarSet Injective inj -> injTyVarsOfTypes (filterByList inj tys) | otherwise = injTyVarsOfTypes tys injTyVarsOfType (LitTy {}) = emptyVarSet injTyVarsOfType (FunTy arg res) = injTyVarsOfType arg `unionVarSet` injTyVarsOfType res injTyVarsOfType (AppTy fun arg) = injTyVarsOfType fun `unionVarSet` injTyVarsOfType arg -- No forall types in the RHS of a type family injTyVarsOfType (CastTy ty _) = injTyVarsOfType ty injTyVarsOfType (CoercionTy {}) = emptyVarSet injTyVarsOfType (ForAllTy {}) = panic "unusedInjTvsInRHS.injTyVarsOfType" injTyVarsOfTypes :: [Type] -> VarSet injTyVarsOfTypes tys = mapUnionVarSet injTyVarsOfType tys -- | Is type headed by a type family application? isTFHeaded :: Type -> Bool -- See Note [Verifying injectivity annotation]. This function implements third -- check described there. isTFHeaded ty | Just ty' <- coreView ty = isTFHeaded ty' isTFHeaded ty | (TyConApp tc args) <- ty , isTypeFamilyTyCon tc = args `lengthIs` tyConArity tc isTFHeaded _ = False -- | If a RHS is a bare type variable return a set of LHS patterns that are not -- bare type variables. bareTvInRHSViolated :: [Type] -> Type -> [Type] -- See Note [Verifying injectivity annotation]. This function implements second -- check described there. bareTvInRHSViolated pats rhs | isTyVarTy rhs = filter (not . isTyVarTy) pats bareTvInRHSViolated _ _ = [] conflictInstErr :: FamInst -> [FamInstMatch] -> TcRn () conflictInstErr fam_inst conflictingMatch | (FamInstMatch { fim_instance = confInst }) : _ <- conflictingMatch = let (err, span) = makeFamInstsErr (text "Conflicting family instance declarations:") [fam_inst, confInst] in setSrcSpan span $ addErr err | otherwise = panic "conflictInstErr" -- | Type of functions that use error message and a list of axioms to build full -- error message (with a source location) for injective type families. type InjErrorBuilder = SDoc -> [CoAxBranch] -> (SDoc, SrcSpan) -- | Build injecivity error herald common to all injectivity errors. injectivityErrorHerald :: Bool -> SDoc injectivityErrorHerald isSingular = text "Type family equation" <> s isSingular <+> text "violate" <> s (not isSingular) <+> text "injectivity annotation" <> if isSingular then dot else colon -- Above is an ugly hack. We want this: "sentence. herald:" (note the dot and -- colon). But if herald is empty we want "sentence:" (note the colon). We -- can't test herald for emptiness so we rely on the fact that herald is empty -- only when isSingular is False. If herald is non empty it must end with a -- colon. where s False = text "s" s True = empty -- | Build error message for a pair of equations violating an injectivity -- annotation. conflictInjInstErr :: [CoAxBranch] -> InjErrorBuilder -> CoAxBranch -> (SDoc, SrcSpan) conflictInjInstErr conflictingEqns errorBuilder tyfamEqn | confEqn : _ <- conflictingEqns = errorBuilder (injectivityErrorHerald False) [confEqn, tyfamEqn] | otherwise = panic "conflictInjInstErr" -- | Build error message for equation with injective type variables unused in -- the RHS. unusedInjectiveVarsErr :: Pair TyVarSet -> InjErrorBuilder -> CoAxBranch -> (SDoc, SrcSpan) unusedInjectiveVarsErr (Pair invis_vars vis_vars) errorBuilder tyfamEqn = errorBuilder (injectivityErrorHerald True $$ msg) [tyfamEqn] where tvs = invis_vars `unionVarSet` vis_vars has_types = not $ isEmptyVarSet vis_vars has_kinds = not $ isEmptyVarSet invis_vars doc = sep [ what <+> text "variable" <> pluralVarSet tvs <+> pprVarSet tvs (pprQuotedList . toposortTyVars) , text "cannot be inferred from the right-hand side." ] what = case (has_types, has_kinds) of (True, True) -> text "Type and kind" (True, False) -> text "Type" (False, True) -> text "Kind" (False, False) -> pprPanic "mkUnusedInjectiveVarsErr" $ ppr tvs print_kinds_info = ppWhen has_kinds ppSuggestExplicitKinds msg = doc $$ print_kinds_info $$ text "In the type family equation:" -- | Build error message for equation that has a type family call at the top -- level of RHS tfHeadedErr :: InjErrorBuilder -> CoAxBranch -> (SDoc, SrcSpan) tfHeadedErr errorBuilder famInst = errorBuilder (injectivityErrorHerald True $$ text "RHS of injective type family equation cannot" <+> text "be a type family:") [famInst] -- | Build error message for equation that has a bare type variable in the RHS -- but LHS pattern is not a bare type variable. bareVariableInRHSErr :: [Type] -> InjErrorBuilder -> CoAxBranch -> (SDoc, SrcSpan) bareVariableInRHSErr tys errorBuilder famInst = errorBuilder (injectivityErrorHerald True $$ text "RHS of injective type family equation is a bare" <+> text "type variable" $$ text "but these LHS type and kind patterns are not bare" <+> text "variables:" <+> pprQuotedList tys) [famInst] makeFamInstsErr :: SDoc -> [FamInst] -> (SDoc, SrcSpan) makeFamInstsErr herald insts = ASSERT( not (null insts) ) ( hang herald 2 (vcat [ pprCoAxBranchHdr (famInstAxiom fi) 0 | fi <- sorted ]) , srcSpan ) where getSpan = getSrcLoc . famInstAxiom sorted = sortWith getSpan insts fi1 = head sorted srcSpan = coAxBranchSpan (coAxiomSingleBranch (famInstAxiom fi1)) -- The sortWith just arranges that instances are dislayed in order -- of source location, which reduced wobbling in error messages, -- and is better for users tcGetFamInstEnvs :: TcM FamInstEnvs -- Gets both the external-package inst-env -- and the home-pkg inst env (includes module being compiled) tcGetFamInstEnvs = do { eps <- getEps; env <- getGblEnv ; return (eps_fam_inst_env eps, tcg_fam_inst_env env) }
shlevy/ghc
compiler/typecheck/FamInst.hs
bsd-3-clause
39,868
0
17
11,134
4,680
2,541
2,139
-1
-1
module Data.Bijection.Class where import Control.Applicative ((<$>)) import Control.DeepSeq import Data.Aeson import Data.Binary import Data.Serialize import Data.Tuple (swap) import GHC.Generics import Prelude (Bool,Maybe,map,($),Int, maybe, id, (.), seq, Read, Show, Eq, return) import Data.List (foldl') -- | Bijection between finite sets. -- -- Both data types are strict here. data Bimap l r = Bimap !l !r deriving (Read,Show,Eq,Generic) class DomCod z where type Dom z :: * type Cod z :: * member :: z -> Dom z -> Bool lookup :: z -> Dom z -> Maybe (Cod z) deleteDC :: z -> Dom z -> Maybe (Cod z, z) insertDC :: z -> (Dom z,Cod z) -> z toListDC :: z -> [(Dom z, Cod z)] nullDC :: z -> Bool emptyDC :: z sizeDC :: z -> Int fromListDC :: [(Dom z, Cod z)] -> z instance (NFData l, NFData r) => NFData (Bimap l r) where rnf (Bimap l r) = rnf l `seq` rnf r `seq` () instance (Binary l, Binary r) => Binary (Bimap l r) instance (Serialize l, Serialize r) => Serialize (Bimap l r) instance (DomCodCnt l r, ToJSON (Dom l), ToJSON (Dom r)) => ToJSON (Bimap l r) where toJSON = toJSON . toList instance (DomCodCnt l r, FromJSON (Dom l), FromJSON (Dom r)) => FromJSON (Bimap l r) where parseJSON j = fromList <$> parseJSON j type DomCodCnt l r = (DomCod l, DomCod r, Dom l ~ Cod r, Dom r ~ Cod l) contL :: Bimap l r -> l contL (Bimap l r) = l contR :: Bimap l r -> r contR (Bimap l r) = r memberL :: (DomCod l) => Bimap l r -> Dom l -> Bool memberL (Bimap l r) e = member l e memberR :: (DomCod r) => Bimap l r -> Dom r -> Bool memberR (Bimap l r) e = member r e lookupL :: (DomCod l) => Bimap l r -> Dom l -> Maybe (Cod l) lookupL (Bimap l r) k = lookup l k lookupR :: (DomCod r) => Bimap l r -> Dom r -> Maybe (Cod r) lookupR (Bimap l r) k = lookup r k empty :: (DomCodCnt l r) => Bimap l r empty = Bimap emptyDC emptyDC null :: DomCod l => Bimap l r -> Bool null (Bimap l r) = nullDC l size :: DomCod l => Bimap l r -> Int size (Bimap l r) = sizeDC l -- | Given a list of pairs @[(x,y)]@, turn it into a bimap @(x->y, y->x)@. fromList :: DomCodCnt l r => [(Dom l, Dom r)] -> Bimap l r fromList = foldl' insert empty toList :: DomCodCnt l r => Bimap l r -> [(Dom l, Dom r)] toList (Bimap l r) = toListDC l insert :: (DomCodCnt l r) => Bimap l r -> (Dom l, Cod l) -> Bimap l r insert (Bimap l r) (u,v) = Bimap (insertDC l (u,v)) (insertDC r (v,u)) {-# Inline insert #-} deleteByL :: DomCodCnt l r => Bimap l r -> Dom l -> Bimap l r deleteByL b@(Bimap l r) k = maybe b id $ do (k',l') <- deleteDC l k (_ ,r') <- deleteDC r k' return $ Bimap l' r' {-# Inline deleteByL #-} deleteByR :: DomCodCnt l r => Bimap l r -> Dom r -> Bimap l r deleteByR b@(Bimap l r) k = maybe b id $ do (k',r') <- deleteDC r k (_ ,l') <- deleteDC l k' return $ Bimap l' r' {-# Inline deleteByR #-} findWithDefaultL :: DomCodCnt l r => Cod l -> Bimap l r -> Dom l -> Cod l findWithDefaultL def = (maybe def id . ) . lookupL {-# INLINE findWithDefaultL #-} findWithDefaultR :: DomCodCnt l r => Cod r -> Bimap l r -> Dom r -> Cod r findWithDefaultR def = (maybe def id . ) . lookupR {-# INLINE findWithDefaultR #-}
choener/bimaps
lib/Data/Bijection/Class.hs
bsd-3-clause
3,156
0
11
732
1,599
821
778
-1
-1
{-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TypeFamilies #-} module Language.Inferno.UnifierSig where import Data.Foldable (Foldable(..)) import Data.Traversable (Traversable(..)) import Data.Typeable import Control.Monad.Catch import Text.PrettyPrint (Doc) import qualified Text.PrettyPrint as PP -- Systems that use this library must declare types that are instances of the -- following two classes. -- This class specifies the output type of the unifier (i.e. the object -- language types that the elaborator should produce) as well as the -- associated "shallow" type structure of the input types. class (Typeable t, Show t, ZipM (Src t), Traversable (Src t)) => Output t where type Src t :: * -> * tovar :: Int -> t struc :: (Src t) t -> t -- There must be some way to compare "shallow" types for the -- same structure class (Typeable t, Traversable t, Foldable t) => ZipM t where zipM :: (Typeable a, Show a, MonadThrow m) => (a -> a -> m b) -> t a -> t a -> m (t b) zipM_ :: (Typeable a, Show a, MonadThrow m) => (a -> a -> m ()) -> t a -> t a -> m () -- What ever type structure we use must be an instance -- of the ZipM class data ZipError a = ZipError a a deriving (Show, Typeable, Eq) instance (Show a, Typeable a) => Exception (ZipError a) {- -- From Conor's email -- https://mail.haskell.org/pipermail/libraries/2012-July/018249.html class Functor f => HalfZippable f where -- Conor's operation halfZip :: f a -> f b -> Maybe (f (a, b)) -- other versions halfZipWith :: (a -> b -> c) -> f a -> f b -> Maybe (f c) halfZipWith_ :: (a -> b -> ()) -> f a -> f b -> Bool -- other versions halfZipWithM :: (Monad m) => (a -> b -> m c) -> f a -> f b -> m (Maybe (f c)) halfZipWithM_ :: (Monad m) => (a -> b -> m ()) -> f a -> f b -> m Bool -} class (Monad m) => MonadFresh m where fresh :: m Int class Pretty a where ppPrec :: Int -> a -> Doc prec :: a -> Int prec _ = 0 ppList :: [a] -> Doc ppList l = PP.brackets (PP.cat (PP.punctuate (PP.text ",") (map pp l))) pp :: a -> Doc pp = ppPrec 11
sweirich/hs-inferno
src/Language/Inferno/UnifierSig.hs
bsd-3-clause
2,299
0
14
621
522
282
240
36
0
import System.Environment (getArgs) import System.Exit import qualified System.IO as IO import System.Directory (getDirectoryContents, doesDirectoryExist, getCurrentDirectory, doesFileExist, removeFile, renameFile) import System.FilePath.Posix (combine, normalise) import System.Posix.Files (getFileStatus, fileSize) import System.Posix.Types (FileOffset) import System.Process (runInteractiveCommand) import Control.Monad (filterM, foldM) import qualified Data.ByteString.Char8 as B import qualified Data.Map as M import qualified Data.Set as S import Data.List (nub, sortBy) import Data.Function (on) import System.Console.Readline (readline, readKey, initialize) type DB = M.Map Hash Files type Hash = B.ByteString type Files = [B.ByteString] data Action = Keep | KeepRest | Delete | DeleteRest | Skip | SkipRest | Move FilePath deriving (Show) -- ========================================================================================== -- -- USER EDIT HERE... -- -- hashCommand and hashCommandParse are specific to the intended user hash function of choice. -- Comment out only one alternative (specific to the system): -- -- Alternative 1 -- $ sha256 LICENSE [ 8:39AM] -- SHA256 (LICENSE) = 9abf1037bcba4400b53a40305cce721fe61d3de916b9a010693f752054fcaa1e -- -- hashCommand :: FilePath -> String -- hashCommand f = "sha256 \"" ++ f ++ "\"" -- hashCommandParse :: B.ByteString -> B.ByteString -- hashCommandParse h = last $ B.words h -- Alternative 2 -- $ sha256sum LICENSE -- 9abf1037bcba4400b53a40305cce721fe61d3de916b9a010693f752054fcaa1e LICENSE -- hashCommand :: FilePath -> String hashCommand f = "sha256sum \"" ++ f ++ "\"" hashCommandParse :: B.ByteString -> B.ByteString hashCommandParse h = head $ B.words h -- Alternative 3 -- $ md5sum LICENSE -- 0d1912d498fa40178fc569e7f395226e LICENSE -- -- hashCommand :: FilePath -> String -- hashCommand f = "md5sum \"" ++ f ++ "\"" -- hashCommandParse :: B.ByteString -> B.ByteString -- hashCommandParse h = first $ B.words h -- -- ========================================================================================== main :: IO () main = do initialize IO.hSetBuffering IO.stdin IO.NoBuffering IO.hSetBuffering IO.stdout IO.NoBuffering args <- getArgs cur_path <- getCurrentDirectory fs <- foldM (\a b -> do {f <- recurseDir (normalise (combine cur_path b)); return (a ++ f)}) [] args fs' <- filterM doesFileExist fs let files = nub $ filter ignoreFilters $ map B.pack fs' hashes <- mapM (\x -> hashFile x) files let db = foldr (\(f,h) -> (addFile h f)) M.empty (zip files hashes) interactMenu $ findDuplicates db makeAction :: FilePath -> Action -> IO () makeAction f Keep = return () -- (do nothing) makeAction f Skip = do print $ "Skipping " ++ f makeAction f Delete = do {putStrLn $ "Deleting " ++ f ++ " ... "; removeFile f} makeAction f (Move n) = do {putStrLn $ "Moving " ++ f ++ " ... "; renameFile f n} makeAction f _ = error "Action not supported." sortFiles :: [(Hash, Files)] -> IO [(Hash, Files)] sortFiles v = do s1 <- mapM addS v return $ reverse $ map subS $ sortBy (compare `on` fst2) s1 where addS :: (Hash, Files) -> IO (FileOffset, Hash, Files) addS (h,fs) = do s' <- getFileSize $ B.unpack $ head fs let s = s' * (fromIntegral (length fs) :: FileOffset) return (s, h, fs) subS :: (a, b, c) -> (b, c) subS (_,h,fs) = (h,fs) fst2 :: (a,b,c) -> a fst2 (x,_,_) = x getFileSize :: FilePath -> IO FileOffset getFileSize f = do s <- getFileStatus f return $ fileSize s interactMenu :: DB -> IO () interactMenu db = do putStrLn $ "Total Found " ++ (show (M.size db)) ++ " duplicate sets." putStrLn $ take 30 $ repeat '=' sorted <- sortFiles $ M.assocs db if ((length sorted) == 0) then return () -- quit else do putStr $ showUsage res <- mapM (uncurry interactSet) sorted maybeContinue <- confirmPrompt "Last chance to back out. Are you sure you want to continue?" if maybeContinue then sequence_ $ map (uncurry makeAction) $ concat res else return () -- quit where interactSet :: Hash -> Files -> IO [(FilePath, Action)] interactSet h fs = do size <- getFileSize $ B.unpack $ head fs putStrLn $ "\nFound " ++ (show (length fs)) ++ " duplicate files (Size: " ++ (show size) ++ "; Hash " ++ (show h) ++ ")." sequence_ $ map print fs putStrLn "" res <- interactChoices h fs [] return res interactChoices :: Hash -> Files -> [(FilePath, Action)] -> IO [(FilePath, Action)] interactChoices _ [] acc = return acc interactChoices h (f:fs) acc = do let file = B.unpack f action <- readEvalPrintLoop file case action of KeepRest -> return $ map (\f -> (B.unpack f, Keep)) (f:fs) ++ acc SkipRest -> return $ map (\f -> (B.unpack f, Skip)) (f:fs) ++ acc DeleteRest -> return $ map (\f -> (B.unpack f, Delete)) (f:fs) ++ acc otherwise -> interactChoices h fs $ (file,action):acc readEvalPrintLoop :: FilePath -> IO Action readEvalPrintLoop f = do maybeChar <- readChar $ f ++ " >> " case maybeChar of '\EOT' -> exitWith ExitSuccess -- EOF / control-d 'q' -> exitWith ExitSuccess 's' -> return Skip 'S' -> return SkipRest ' ' -> return Keep '\n' -> return KeepRest 'd' -> return Delete 'D' -> return DeleteRest 'm' -> do new <- readline "Enter new full path: " case new of Nothing -> do {putStrLn ""; res <- readEvalPrintLoop f; return res} Just "" -> do {putStrLn ""; res <- readEvalPrintLoop f; return res} Just n -> return $ Move n 'h' -> do putStrLn "User input not valid." putStrLn showUsage res <- readEvalPrintLoop f return res _ -> do putStrLn "User input not valid." putStrLn showUsage res <- readEvalPrintLoop f return res confirmPrompt :: String -> IO Bool confirmPrompt prompt = do c <- readline $ prompt ++ " [y/n] " case c of Just "y" -> return True Just "" -> confirmPrompt prompt _ -> return False addFile :: Hash -> B.ByteString -> DB -> DB addFile h f = M.insertWith' (++) h [f] hashFile :: B.ByteString -> IO B.ByteString hashFile file = do (_,out,_,_) <- runInteractiveCommand $ hashCommand (B.unpack file) h <- B.hGetContents out return $ hashCommandParse h findDuplicates :: DB -> DB findDuplicates = M.filter ((>1) . length) ignoreFilters :: B.ByteString -> Bool ignoreFilters f = not $ (B.isInfixOf (B.pack "/_darcs/") f) || (B.isInfixOf (B.pack "/.git/") f) showUsage :: String showUsage = unlines [ "h -> Print Usage Help" , "q -> Exit" , "(space) -> Keep" , "(enter) -> Keep (this one and all remaining duplicates)" , "d -> Delete" , "D -> Delete (this one and all remaining duplicates)" , "s -> Skip" , "S -> Skip (this one and all remaining duplicates)" , "m -> Move/Rename"] recurseDir :: FilePath -> IO [FilePath] recurseDir f = do is_d <- doesDirectoryExist f if is_d then do files <- getDirectoryContents f subdirs <- mapM recurseDir $ map (combine f) $ filter notDotOrDotDot files return $ foldl (++) [f] subdirs else return [f] where notDotOrDotDot :: FilePath -> Bool notDotOrDotDot f = case f of "." -> False ".." -> False _ -> True readChar :: String -> IO Char readChar prompt = do putStr prompt k <- readKey putStrLn "" return k
pithyless/hlean
hlean.hs
bsd-3-clause
8,531
208
15
2,734
1,785
1,068
717
170
19
{-| Module : Pipes.KeyValueCsv.Internal.Csv Copyright : (c) Marcin Mrotek, 2015 License : BSD3 Maintainer : marcin.jan.mrotek@gmail.com Stability : experimental Helper classes and functions. -} {-# LANGUAGE DataKinds , FlexibleContexts , FlexibleInstances , GADTs , MultiParamTypeClasses , PolyKinds , RankNTypes , TypeOperators #-} module Pipes.KeyValueCsv.Internal.Csv where import Pipes.KeyValueCsv.Internal.Types import Pipes.KeyValueCsv.Common import Pipes.KeyValueCsv.Types.Common import Pipes.KeyValueCsv.Types.Csv import Control.Monad.State.Strict import Data.Reflection (Given(..)) import Data.Validation import Data.Vinyl import Data.Vinyl.Functor import Pipes import qualified Pipes.Prelude as Pipes import Pipes.Group (FreeT(..), FreeF(..)) import qualified Pipes.Group as Group import Pipes.Parse.Tutorial() parseLine :: forall (m :: * -> *) (f :: k -> *) (rs :: [k]) (r :: *) . ( Monad m , Given Delimiter ) => Rec (CellParser m f) rs -> Line m r -> Producer (Rec (WithCsvError :. f) rs) m r -- ^Parse a single row from a stream of text, discard the remaining characters. parseLine parser = parseCells parser . cells parseCells :: forall (m :: * -> *) (f :: k -> *) (rs :: [k]) (x :: *) . Monad m => Rec (CellParser m f) rs -- ^Parser record. -> Cells m x -- ^Stream of cells. -> Producer (Rec (WithCsvError :. f) rs) m x -- ^Parse a row of cells and pack it into a one-shot 'Producer'. parseCells parser stream = do (result, end) <- lift $ fromCells parser stream yield result pure end validateCell :: (Either String :. f) a -> (Validation [CsvError] :. f) a validateCell (Compose e) = Compose r where r = case e of Left err -> Failure [CellParseError err] Right a -> Success a buildFromCells :: Monad m => Rec (CellParser m f) (r ': rs) -- ^Parser record. -> Cells m x -- ^Stream of cells. -> m ( Rec (WithCsvError :. f) rs -> Rec (WithCsvError :. f) (r ': rs) , Cells m x ) -- ^A helper function for the 'FromCells' type class. Build a 'Rec' incrementally from 'Cells'. buildFromCells (Compose (WrapParser parser) :& _) (Cells fs) = do ft <- runFreeT fs case ft of Pure r -> pure (\rs -> Compose (Failure [MissingCell]) :& rs, Cells $ pure r) Free (Cell cell) -> do (result,leftovers) <- runStateT parser cell end <- runEffect $ leftovers >-> Pipes.drain pure (\rs -> validateCell result :& rs, Cells end) fromCells :: Monad m => Rec (CellParser m f) rs -- ^Parser record. -> Cells m x -- ^Stream of cells. -> m (Rec (WithCsvError :. f) rs, x) -- ^Parse a row of cells. For more information about parsing with Pipes, see "Pipes.Parse.Tutorial". fromCells RNil (Cells fs) = do end <- runEffect $ Group.concats ( Group.maps unCell fs) >-> Pipes.drain pure (RNil, end) fromCells parsers@(_ :& ps) stream = do (run, remaining) <- buildFromCells parsers stream (result, end) <- fromCells ps remaining pure (run result, end)
marcinmrotek/pipes-key-value-csv
src/Pipes/KeyValueCsv/Internal/Csv.hs
bsd-3-clause
3,091
0
17
722
962
513
449
73
2
-- | Problem: How do we pattern match on things further than just ADT's? module WadlerViews where -- | "views as described here specify isomorphisms between datatypes" data Nat = Z | S Nat deriving (Show) inNat :: Int -> Nat inNat n | n == 0 = Z | n > 0 = S . inNat $ n - 1 outNat :: Nat -> Int outNat Z = 0 outNat (S n) = outNat n + 1 fib :: Nat -> Nat fib Z = Z fib (S Z) = S Z fib (S (S n)) = plus (fib n) (fib (S n)) where plus Z n = n plus (S m) n = S (plus m n) data EO = Zero | Even EO | Odd EO deriving (Show) inEO :: Int -> EO inEO n | n == 0 = Zero | n > 0 && n `mod` 2 == 0 = Even . inEO $ n `div` 2 | n > 0 && n `mod` 2 == 1 = Odd . inEO $ (n - 1) `div` 2 outEO :: EO -> Int outEO Zero = 0 outEO (Even n) = 2 * outEO n outEO (Odd n) = 2 * outEO n + 1 -- | Divide and conquer algorithm for exponentiation: power :: EO -> EO -> EO power x m = case m of Zero -> inEO 1 Even n -> power (inEO ( outEO x * outEO x)) n Odd n -> inEO (outEO x * outEO (power (inEO ( outEO x * outEO x)) n)) data Polar = Polar Float Float deriving (Show) data Cart= Cart Float Float deriving (Show) inC :: Polar -> Cart inC (Polar r t) = Cart (r * cos t) (r * sin t) outC :: Cart -> Polar outC (Cart x y) = Polar (sqrt $ x * x + y * y) (atan2 x y) add :: Cart -> Cart -> Cart add (Cart x y) (Cart z w) = Cart (x + z) (y + w) mult :: Polar -> Polar -> Polar mult (Polar r a) (Polar s b) = Polar (r * s) (a + b) -- Have our argument and eat it too! data As a = As a a deriving (Show) inAs :: a -> As a inAs x = As x x outAs :: As a -> a outAs (As x _) = x factorial :: As Nat -> As Nat factorial (As _ Z) = inAs $ S Z factorial (As n (S m)) = inAs $ inNat (outNat n * outNat (outAs (factorial $ inAs m))) -- Replace view with Predicate! data ClearInt = EvenP Int | OddP Int -- viewin viewcase :: Int -> (Int -> Int) -> Int -> Int viewcase x s n | n == 0 = x | n > 0 = s (n - 1) zero = 0 suc n = n + 1 fib' m = viewcase zero (\m' -> viewcase (suc zero) (\n -> n + fib' (suc n)) m') m
sleexyz/haskell-fun
WadlerViews.hs
bsd-3-clause
2,072
0
18
618
1,143
581
562
61
3
{-# LANGUAGE QuasiQuotes #-} import LiquidHaskell data Rec s v = R (s -> v) type DBRec = Rec String Value get :: String -> DBRec -> Value get i (R a) = a i set :: String -> Value -> DBRec -> DBRec set i x (R a) = R $ \k -> if k == i then x else a k [lq| empty :: Rec {v:String|0=1} {v : DataBase.Value | v = DataBase.BOT} |] empty :: Rec String Value empty = R $ const BOT data Value = BOT | INT Int | BOOL Bool | STRING String -- | VEC Value Int append a1 a2 = \k -> case a1 k of BOT -> a2 k v -> v
spinda/liquidhaskell
tests/gsoc15/unknown/pos/DataBase.hs
bsd-3-clause
603
1
9
225
227
117
110
18
2
module IORef (module Data.IORef) where import Data.IORef
OS2World/DEV-UTIL-HUGS
oldlib/IORef.hs
bsd-3-clause
57
0
5
7
17
11
6
2
0
module Types ( Package (..) , License (..) ) where data Package = Package { pkgName :: String , version :: String , license :: License , authorName :: Maybe String , email :: Maybe String , description :: Maybe String } deriving Show data License = NoLicense | GPL2 | GPL3 | LGPL2 | LGPL3 | AGPL3 | BSD3 | MIT | Apache | WTFPL deriving (Show, Eq, Enum, Bounded)
cbpark/autotools-project
src/Types.hs
bsd-3-clause
563
0
9
272
130
80
50
23
0
{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} module React.Flux.Mui.Card.CardHeader where import Protolude import Data.Aeson import Data.Aeson.Casing import Data.String (String) import React.Flux import React.Flux.Mui.Util data CardHeader = CardHeader { cardHeaderActAsExpander :: !(Maybe Bool) , cardHeaderExpandable :: !(Maybe Bool) , cardHeaderShowExpandableButton :: !(Maybe Bool) , cardHeaderSubtitleColor :: !(Maybe Text) , cardHeaderTitleColor :: !(Maybe Text) } deriving (Generic, Show) instance ToJSON CardHeader where toJSON = genericToJSON $ aesonDrop (length ("CardHeader" :: String)) camelCase defCardHeader :: CardHeader defCardHeader = CardHeader { cardHeaderActAsExpander = Nothing , cardHeaderExpandable = Nothing , cardHeaderShowExpandableButton = Nothing , cardHeaderSubtitleColor = Nothing , cardHeaderTitleColor = Nothing } cardHeader_ :: CardHeader -> [PropertyOrHandler handler] -> ReactElementM handler () -> ReactElementM handler () cardHeader_ args props = foreign_ "CardHeader" (fromMaybe [] (toProps args) ++ props)
pbogdan/react-flux-mui
react-flux-mui/src/React/Flux/Mui/Card/CardHeader.hs
bsd-3-clause
1,112
0
11
172
280
158
122
43
1
module Git.FastExport.Types where import Data.ByteString data GitRef = GitRef ByteString | GitMark Mark newtype GitData = GitData ByteString type Path = ByteString type Date = ByteString type Branch = ByteString type Change = GChange GitData data GChange inlineData = ChgDelete { chgPath :: !Path } | ChgModify { chgPath :: !Path , chgData :: Either GitRef inlineData , chgMode :: !ByteString } | ChgCopy { chgPath :: !Path , chgFrom :: !Path } | ChgRename { chgPath :: !Path , chgFrom :: !Path } | ChgDeleteAll | ChgNote { chgData :: Either GitRef inlineData , chgRef :: GitRef } data Dated a = Dated { datedDate :: !Date, datedValue :: !a } data Person = Person { personName :: !ByteString, personEmail :: !ByteString} data Reset = Reset Branch (Maybe GitRef) data GitEvent = GECommitHeader CommitHeader | GEReset Reset | GEChange (GChange ()) | GEInfoCmd InfoCmd | GEComment ByteString | GEProgress ByteString | GEBlobHeader (Maybe Mark) | GEData (Either Int ByteString) | GEDataChunk ByteString | GEFeature ByteString (Maybe ByteString) | GEDone data InfoCmd = InfoLs (Maybe GitRef) Path | InfoCatBlob GitRef data CommitHeader = CommitHeader { chBranch :: Branch , chAuthor :: Maybe (Dated Person) , chCommitter :: Dated Person , chMessage :: !GitData , chFrom :: Maybe GitRef , chMerge :: [GitRef] , chMark :: Maybe Mark } type Mark = Int data Commit = Commit { commitHeader :: CommitHeader , commitChanges :: [Change] } commitAuthor = chAuthor . commitHeader commitCommitter = chCommitter . commitHeader commitMessage = chMessage . commitHeader commitFrom = chFrom . commitHeader commitMerge = chMerge . commitHeader commitMark = chMark . commitHeader data GitCmd = GCommit Commit | GReset Branch | GProgress ByteString type CmdFilter = GitCmd -> [GitCmd]
lumimies/git-fastexport-filter
src/Git/FastExport/Types.hs
bsd-3-clause
2,202
0
11
722
533
309
224
86
1
module Jerimum.PostgreSQL.Types.Jsonb -- * CBOR Codec ( jsonbEncoderV0 , jsonbDecoderV0 , encodeJsonb -- * Value constructors , fromText ) where import qualified Codec.CBOR.Decoding as D import qualified Codec.CBOR.Encoding as E import qualified Data.Text as T import Jerimum.PostgreSQL.Types import Jerimum.PostgreSQL.Types.Encoding v0 :: Version v0 = 0 encodeJsonb :: Maybe T.Text -> E.Encoding encodeJsonb = encodeWithVersion v0 jsonbEncoderV0 fromText :: Maybe T.Text -> Value fromText = mkValue (ScalarType TJsonb) encodeJsonb jsonbEncoderV0 :: T.Text -> E.Encoding jsonbEncoderV0 = E.encodeString jsonbDecoderV0 :: D.Decoder s T.Text jsonbDecoderV0 = D.decodeString
dgvncsz0f/nws
src/Jerimum/PostgreSQL/Types/Jsonb.hs
bsd-3-clause
768
0
7
180
170
102
68
20
1
{-# LANGUAGE PackageImports #-} module GHC.Conc.IO (module M) where import "base" GHC.Conc.IO as M
silkapp/base-noprelude
src/GHC/Conc/IO.hs
bsd-3-clause
104
0
4
18
23
17
6
3
0
module Main where import Distribution.ModuleName (ModuleName, toFilePath) import Distribution.PackageDescription import Distribution.Simple import Distribution.Simple.LocalBuildInfo import Distribution.Simple.Setup import System.Exit import System.FilePath import System.IO import System.Process srcFp = "src/Fay/Index.hs" destFp = "static/Index.js" main :: IO () main = defaultMainWithHooks simpleUserHooks { postBuild = buildFay } -- | Build the client. buildFay :: Args -> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO () buildFay _ _ _ _ = do (code,out,err) <- readProcessWithExitCode "fay" [srcFp, "--output", destFp] "" case code of ExitFailure _ -> hPutStrLn stderr $ "fay: Error compiling " ++ srcFp ++ ":\n" ++ err ExitSuccess -> return ()
bergmark/mmdoc
Setup.hs
bsd-3-clause
885
0
14
222
214
117
97
22
2
{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE StandaloneDeriving #-} -- | -- This module provides the primary interface to the combined -- AST/Tokens, and the functions here will ensure that any changes are -- properly synced and propagated. module Language.Haskell.Refact.Utils.MonadFunctions ( -- * Conveniences for state access fetchAnnsFinal , getTypecheckedModule , getRefactStreamModified , setRefactStreamModified , getRefactInscopes , getRefactRenamed , putRefactRenamed , getRefactParsed , putRefactParsed -- * Annotations -- , addRefactAnns , setRefactAnns -- * , putParsedModule , clearParsedModule , getRefactFileName , getRefactTargetModule , getRefactModule , getRefactModuleName , getRefactNameMap , addToNameMap -- * New ghc-exactprint interfacing , liftT -- * State flags for managing generic traversals , getRefactDone , setRefactDone , clearRefactDone , setStateStorage , getStateStorage -- * Parsing source , parseDeclWithAnns -- * Utility , nameSybTransform, nameSybQuery , fileNameFromModSummary , mkNewGhcNamePure , logDataWithAnns , logAnns , logParsedSource , logExactprint -- * For use by the tests only , initRefactModule , initTokenCacheLayout , initRdrNameMap ) where import Control.Monad.State import Data.List import qualified GHC as GHC import qualified GhcMonad as GHC import qualified Module as GHC import qualified Name as GHC import qualified Unique as GHC import qualified Data.Generics as SYB import Language.Haskell.GHC.ExactPrint import Language.Haskell.GHC.ExactPrint.Annotate import Language.Haskell.GHC.ExactPrint.Parsers import Language.Haskell.GHC.ExactPrint.Utils import Language.Haskell.Refact.Utils.Monad import Language.Haskell.Refact.Utils.TypeSyn import Language.Haskell.Refact.Utils.Types import qualified Data.Map as Map -- --------------------------------------------------------------------- -- |fetch the final annotations fetchAnnsFinal :: RefactGhc Anns fetchAnnsFinal = do Just tm <- gets rsModule let anns = (tkCache $ rsTokenCache tm) Map.! mainTid return anns -- --------------------------------------------------------------------- getTypecheckedModule :: RefactGhc GHC.TypecheckedModule getTypecheckedModule = do mtm <- gets rsModule case mtm of Just tm -> return $ rsTypecheckedMod tm Nothing -> error "HaRe: file not loaded for refactoring" getRefactStreamModified :: RefactGhc RefacResult getRefactStreamModified = do Just tm <- gets rsModule return $ rsStreamModified tm -- |For testing setRefactStreamModified :: RefacResult -> RefactGhc () setRefactStreamModified rr = do logm $ "setRefactStreamModified:rr=" ++ show rr st <- get let (Just tm) = rsModule st put $ st { rsModule = Just (tm { rsStreamModified = rr })} return () getRefactInscopes :: RefactGhc InScopes getRefactInscopes = GHC.getNamesInScope getRefactRenamed :: RefactGhc GHC.RenamedSource getRefactRenamed = do mtm <- gets rsModule let tm = gfromJust "getRefactRenamed" mtm return $ gfromJust "getRefactRenamed2" $ GHC.tm_renamed_source $ rsTypecheckedMod tm putRefactRenamed :: GHC.RenamedSource -> RefactGhc () putRefactRenamed renamed = do st <- get mrm <- gets rsModule let rm = gfromJust "putRefactRenamed" mrm let tm = rsTypecheckedMod rm let tm' = tm { GHC.tm_renamed_source = Just renamed } let rm' = rm { rsTypecheckedMod = tm' } put $ st {rsModule = Just rm'} getRefactParsed :: RefactGhc GHC.ParsedSource getRefactParsed = do mtm <- gets rsModule let tm = gfromJust "getRefactParsed" mtm let t = rsTypecheckedMod tm let pm = GHC.tm_parsed_module t return $ GHC.pm_parsed_source pm putRefactParsed :: GHC.ParsedSource -> Anns -> RefactGhc () putRefactParsed parsed newAnns = do logm $ "putRefactParsed:setting rsStreamModified" st <- get mrm <- gets rsModule let rm = gfromJust "putRefactParsed" mrm let tm = rsTypecheckedMod rm -- let tk' = modifyAnns (rsTokenCache rm) (const newAnns) let tk' = modifyAnns (rsTokenCache rm) (mergeAnns newAnns) let pm = (GHC.tm_parsed_module tm) { GHC.pm_parsed_source = parsed } let tm' = tm { GHC.tm_parsed_module = pm } let rm' = rm { rsTypecheckedMod = tm', rsTokenCache = tk', rsStreamModified = RefacModified } put $ st {rsModule = Just rm'} -- --------------------------------------------------------------------- -- |Internal low level interface to access the current annotations from the -- RefactGhc state. getRefactAnns :: RefactGhc Anns getRefactAnns = (Map.! mainTid) . tkCache . rsTokenCache . gfromJust "getRefactAnns" <$> gets rsModule -- |Internal low level interface to access the current annotations from the -- RefactGhc state. setRefactAnns :: Anns -> RefactGhc () setRefactAnns anns = modifyRefactAnns (const anns) -- |Internal low level interface to access the current annotations from the -- RefactGhc state. modifyRefactAnns :: (Anns -> Anns) -> RefactGhc () modifyRefactAnns f = do -- logm $ "modifyRefactAnns:setting rsStreamModified" st <- get mrm <- gets rsModule let rm = gfromJust "modifyRefactAnns" mrm let tk' = modifyAnns (rsTokenCache rm) f let rm' = rm { rsTokenCache = tk', rsStreamModified = RefacModified } put $ st {rsModule = Just rm'} -- |Internal low level interface to access the current annotations from the -- RefactGhc state. modifyAnns :: TokenCache Anns -> (Anns -> Anns) -> TokenCache Anns modifyAnns tk f = tk' where anns = (tkCache tk) Map.! mainTid tk' = tk {tkCache = Map.insert mainTid (f anns) (tkCache tk) } -- ---------------------------------------------------------------------- putParsedModule :: [Comment] -> GHC.TypecheckedModule -> RefactGhc () putParsedModule cppComments tm = do st <- get put $ st { rsModule = initRefactModule cppComments tm } clearParsedModule :: RefactGhc () clearParsedModule = do st <- get put $ st { rsModule = Nothing } -- --------------------------------------------------------------------- {- -- |Replace the Located RdrName in the ParsedSource replaceRdrName :: GHC.Located GHC.RdrName -> RefactGhc () replaceRdrName (GHC.L l newName) = do -- ++AZ++ TODO: move this body to somewhere appropriate logm $ "replaceRdrName:" ++ showGhcQual (l,newName) parsed <- getRefactParsed anns <- getRefactAnns logm $ "replaceRdrName:before:parsed=" ++ showGhc parsed let replaceRdr :: GHC.Located GHC.RdrName -> State Anns (GHC.Located GHC.RdrName) replaceRdr old@(GHC.L ln _) | l == ln = do an <- get let new = (GHC.L l newName) put $ replaceAnnKey old new an return new replaceRdr x = return x replaceHsVar :: GHC.LHsExpr GHC.RdrName -> State Anns (GHC.LHsExpr GHC.RdrName) replaceHsVar (GHC.L ln (GHC.HsVar _)) | l == ln = return (GHC.L l (GHC.HsVar newName)) replaceHsVar x = return x replaceHsTyVar (GHC.L ln (GHC.HsTyVar _)) | l == ln = return (GHC.L l (GHC.HsTyVar newName)) replaceHsTyVar x = return x replacePat (GHC.L ln (GHC.VarPat _)) | l == ln = return (GHC.L l (GHC.VarPat newName)) replacePat x = return x fn :: State Anns GHC.ParsedSource fn = do r <- SYB.everywhereM (SYB.mkM replaceRdr `SYB.extM` replaceHsTyVar `SYB.extM` replaceHsVar `SYB.extM` replacePat) parsed return r (parsed',anns') = runState fn anns logm $ "replaceRdrName:after:parsed'=" ++ showGhc parsed' putRefactParsed parsed' emptyAnns setRefactAnns anns' return () -} -- --------------------------------------------------------------------- refactRunTransformId :: Transform a -> RefactGhc a refactRunTransformId transform = do u <- gets rsUniqState ans <- getRefactAnns let (a,(ans',u'),logLines) = runTransformFrom u ans transform putUnique u' setRefactAnns ans' when (not (null logLines)) $ do logm $ intercalate "\n" logLines return a -- --------------------------------------------------------------------- instance HasTransform RefactGhc where liftT = refactRunTransformId -- --------------------------------------------------------------------- putUnique :: Int -> RefactGhc () putUnique u = do s <- get put $ s { rsUniqState = u } -- --------------------------------------------------------------------- getRefactTargetModule :: RefactGhc TargetModule getRefactTargetModule = do mt <- gets rsCurrentTarget case mt of Nothing -> error $ "HaRe:getRefactTargetModule:no module loaded" Just t -> return t -- --------------------------------------------------------------------- getRefactFileName :: RefactGhc (Maybe FilePath) getRefactFileName = do mtm <- gets rsModule case mtm of Nothing -> return Nothing Just tm -> return $ Just (fileNameFromModSummary $ GHC.pm_mod_summary $ GHC.tm_parsed_module $ rsTypecheckedMod tm) -- --------------------------------------------------------------------- fileNameFromModSummary :: GHC.ModSummary -> FilePath fileNameFromModSummary modSummary = fileName where -- TODO: what if we are loading a compiled only client and do not -- have the original source? Just fileName = GHC.ml_hs_file (GHC.ms_location modSummary) -- --------------------------------------------------------------------- getRefactModule :: RefactGhc GHC.Module getRefactModule = do mtm <- gets rsModule case mtm of Nothing -> error $ "Hare.MonadFunctions.getRefactModule:no module loaded" Just tm -> do let t = rsTypecheckedMod tm let pm = GHC.tm_parsed_module t return (GHC.ms_mod $ GHC.pm_mod_summary pm) -- --------------------------------------------------------------------- getRefactModuleName :: RefactGhc GHC.ModuleName getRefactModuleName = do modu <- getRefactModule return $ GHC.moduleName modu -- --------------------------------------------------------------------- getRefactNameMap :: RefactGhc NameMap getRefactNameMap = do mtm <- gets rsModule case mtm of Nothing -> error $ "Hare.MonadFunctions.getRefacNameMap:no module loaded" Just tm -> return (rsNameMap tm) -- --------------------------------------------------------------------- addToNameMap :: GHC.SrcSpan -> GHC.Name -> RefactGhc () addToNameMap ss n = do s <- get let mtm = rsModule s case mtm of Nothing -> error $ "Hare.MonadFunctions.addToNameMap:no module loaded" Just tm -> do let nm = rsNameMap tm nm' = Map.insert ss n nm mtm' = Just tm { rsNameMap = nm'} put s { rsModule = mtm'} -- --------------------------------------------------------------------- getRefactDone :: RefactGhc Bool getRefactDone = do flags <- gets rsFlags logm $ "getRefactDone: " ++ (show (rsDone flags)) return (rsDone flags) setRefactDone :: RefactGhc () setRefactDone = do logm $ "setRefactDone" st <- get put $ st { rsFlags = RefFlags True } clearRefactDone :: RefactGhc () clearRefactDone = do logm $ "clearRefactDone" st <- get put $ st { rsFlags = RefFlags False } -- --------------------------------------------------------------------- setStateStorage :: StateStorage -> RefactGhc () setStateStorage storage = do st <- get put $ st { rsStorage = storage } getStateStorage :: RefactGhc StateStorage getStateStorage = do storage <- gets rsStorage return storage -- --------------------------------------------------------------------- logDataWithAnns :: (SYB.Data a) => String -> a -> RefactGhc () logDataWithAnns str ast = do anns <- getRefactAnns logm $ str ++ showAnnData anns 0 ast -- --------------------------------------------------------------------- logExactprint :: (Annotate a) => String -> GHC.Located a -> RefactGhc () logExactprint str ast = do anns <- getRefactAnns logm $ str ++ "\n[" ++ exactPrint ast anns ++ "]" -- --------------------------------------------------------------------- logAnns :: String -> RefactGhc () logAnns str = do anns <- getRefactAnns logm $ str ++ showGhc anns -- --------------------------------------------------------------------- logParsedSource :: String -> RefactGhc () logParsedSource str = do parsed <- getRefactParsed logDataWithAnns str parsed -- --------------------------------------------------------------------- initRefactModule :: [Comment] -> GHC.TypecheckedModule -> Maybe RefactModule initRefactModule cppComments tm = Just (RefMod { rsTypecheckedMod = tm , rsNameMap = initRdrNameMap tm , rsTokenCache = initTokenCacheLayout (relativiseApiAnnsWithComments cppComments (GHC.pm_parsed_source $ GHC.tm_parsed_module tm) (GHC.pm_annotations $ GHC.tm_parsed_module tm)) , rsStreamModified = RefacUnmodifed }) initTokenCacheLayout :: a -> TokenCache a initTokenCacheLayout a = TK (Map.fromList [((TId 0),a)]) (TId 0) -- --------------------------------------------------------------------- -- |We need the ParsedSource because it more closely reflects the actual source -- code, but must be able to work with the renamed representation of the names -- involved. This function constructs a map from every Located RdrName in the -- ParsedSource to its corresponding name in the RenamedSource. It also deals -- with the wrinkle that we need to Location of the RdrName to make sure we have -- the right Name, but not all RdrNames have a Location. -- This function is called before the RefactGhc monad is active. initRdrNameMap :: GHC.TypecheckedModule -> NameMap initRdrNameMap tm = r where parsed = GHC.pm_parsed_source $ GHC.tm_parsed_module tm renamed = gfromJust "initRdrNameMap" $ GHC.tm_renamed_source tm checkRdr :: GHC.Located GHC.RdrName -> Maybe [(GHC.SrcSpan,GHC.RdrName)] checkRdr (GHC.L l n@(GHC.Unqual _)) = Just [(l,n)] checkRdr (GHC.L l n@(GHC.Qual _ _)) = Just [(l,n)] checkRdr (GHC.L _ _)= Nothing checkName :: GHC.Located GHC.Name -> Maybe [GHC.Located GHC.Name] checkName ln = Just [ln] rdrNames = gfromJust "initRdrNameMap" $ SYB.everything mappend (nameSybQuery checkRdr ) parsed names = gfromJust "initRdrNameMap" $ SYB.everything mappend (nameSybQuery checkName) renamed nameMap = Map.fromList $ map (\(GHC.L l n) -> (l,n)) names -- If the name does not exist (e.g. a TH Splice that has been expanded, make a new one) -- No attempt is made to make sure that equivalent ones have equivalent names. lookupName l n i = case Map.lookup l nameMap of Just v -> v Nothing -> case n of GHC.Unqual u -> mkNewGhcNamePure 'h' i Nothing (GHC.occNameString u) GHC.Qual q u -> mkNewGhcNamePure 'h' i (Just (GHC.Module (GHC.stringToPackageKey "") q)) (GHC.occNameString u) _ -> error "initRdrNameMap:should not happen" r = Map.fromList $ map (\((l,n),i) -> (l,lookupName l n i)) $ zip rdrNames [1..] -- --------------------------------------------------------------------- mkNewGhcNamePure :: Char -> Int -> Maybe GHC.Module -> String -> GHC.Name mkNewGhcNamePure c i maybeMod name = let un = GHC.mkUnique c i -- H for HaRe :) n = case maybeMod of Nothing -> GHC.mkInternalName un (GHC.mkVarOcc name) GHC.noSrcSpan Just modu -> GHC.mkExternalName un modu (GHC.mkVarOcc name) GHC.noSrcSpan in n -- --------------------------------------------------------------------- nameSybTransform :: (Monad m,SYB.Typeable t) => (GHC.Located GHC.RdrName -> m (GHC.Located GHC.RdrName)) -> t -> m t nameSybTransform changer = q where q = SYB.mkM worker `SYB.extM` workerBind `SYB.extM` workerExpr `SYB.extM` workerLIE `SYB.extM` workerHsTyVarBndr `SYB.extM` workerLHsType worker (pnt :: (GHC.Located GHC.RdrName)) = changer pnt workerBind (GHC.L l (GHC.VarPat name)) = do (GHC.L _ n) <- changer (GHC.L l name) return (GHC.L l (GHC.VarPat n)) workerBind x = return x workerExpr ((GHC.L l (GHC.HsVar name))) = do (GHC.L _ n) <- changer (GHC.L l name) return (GHC.L l (GHC.HsVar n)) workerExpr x = return x workerLIE ((GHC.L l (GHC.IEVar (GHC.L ln name))) :: (GHC.LIE GHC.RdrName)) = do (GHC.L _ n) <- changer (GHC.L ln name) return (GHC.L l (GHC.IEVar (GHC.L ln n))) workerLIE x = return x workerHsTyVarBndr (GHC.L l (GHC.UserTyVar name)) = do (GHC.L _ n) <- changer (GHC.L l name) return (GHC.L l (GHC.UserTyVar n)) workerHsTyVarBndr x = return x workerLHsType (GHC.L l (GHC.HsTyVar name)) = do (GHC.L _ n) <- changer (GHC.L l name) return (GHC.L l (GHC.HsTyVar n)) workerLHsType x = return x -- --------------------------------------------------------------------- nameSybQuery :: (SYB.Typeable a, SYB.Typeable t) => (GHC.Located a -> Maybe r) -> t -> Maybe r nameSybQuery checker = q where q = Nothing `SYB.mkQ` worker `SYB.extQ` workerBind `SYB.extQ` workerExpr -- `SYB.extQ` workerLIE `SYB.extQ` workerHsTyVarBndr `SYB.extQ` workerLHsType worker (pnt :: (GHC.Located a)) = checker pnt workerBind (GHC.L l (GHC.VarPat name)) = checker (GHC.L l name) workerBind _ = Nothing workerExpr ((GHC.L l (GHC.HsVar name))) = checker (GHC.L l name) workerExpr _ = Nothing -- workerLIE ((GHC.L _l (GHC.IEVar (GHC.L ln name))) :: (GHC.LIE a)) -- = checker (GHC.L ln name) -- workerLIE _ = Nothing workerHsTyVarBndr ((GHC.L l (GHC.UserTyVar name))) = checker (GHC.L l name) workerHsTyVarBndr _ = Nothing workerLHsType ((GHC.L l (GHC.HsTyVar name))) = checker (GHC.L l name) workerLHsType _ = Nothing -- --------------------------------------------------------------------- parseDeclWithAnns :: String -> RefactGhc (GHC.LHsDecl GHC.RdrName) parseDeclWithAnns src = do u <- gets rsUniqState putUnique (u+1) let label = "HaRe-" ++ show (u + 1) r <- GHC.liftIO $ withDynFlags (\df -> parseDecl df label src) case r of Left err -> error (show err) Right (anns,decl) -> do -- addRefactAnns anns liftT $ modifyAnnsT (mergeAnns anns) return decl -- EOF
kmate/HaRe
src/Language/Haskell/Refact/Utils/MonadFunctions.hs
bsd-3-clause
19,055
0
20
4,300
4,478
2,276
2,202
352
6
main = 3 `div` 0
roberth/uu-helium
test/thompson/Thompson33.hs
gpl-3.0
17
1
5
5
15
7
8
1
1
{-# LANGUAGE ScopedTypeVariables #-} module ScopedTypeVar where unscoped :: a -> a unscoped = bar where bar :: a -> a bar = id scoped :: forall a . a -> a scoped = bars where bars :: a -> a bars = id
robinp/haskell-indexer
haskell-indexer-backend-ghc/testdata/typelink/ScopedTypeVar.hs
apache-2.0
222
0
7
66
70
41
29
10
1
{-# LANGUAGE OverloadedStrings #-} module System.IO.Streams.Tests.List (tests) where ------------------------------------------------------------------------------ import Control.Monad hiding (mapM) import Prelude hiding (mapM, read) import Test.Framework import Test.Framework.Providers.HUnit import Test.HUnit hiding (Test) ------------------------------------------------------------------------------ import System.IO.Streams.List ------------------------------------------------------------------------------ import System.IO.Streams.Tests.Common (expectExceptionH) tests :: [Test] tests = [ testChunkJoin ] testChunkJoin :: Test testChunkJoin = testCase "list/chunkList and join" $ do expectExceptionH (fromList [1..10::Int] >>= chunkList 0 >>= toList) fromList [1..10 :: Int] >>= chunkList 3 >>= toList >>= assertEqual "chunkList" [ [1,2,3] , [4,5,6] , [7,8,9] , [10] ] fromList [1..12 :: Int] >>= chunkList 3 >>= concatLists >>= toList >>= assertEqual "concatlists" [1..12]
TomMD/io-streams
test/System/IO/Streams/Tests/List.hs
bsd-3-clause
1,494
0
13
608
267
157
110
24
1
{-# LANGUAGE CPP, BangPatterns #-} -- -- (c) The University of Glasgow 2003-2006 -- -- Functions for constructing bitmaps, which are used in various -- places in generated code (stack frame liveness masks, function -- argument liveness masks, SRT bitmaps). module Bitmap ( Bitmap, mkBitmap, intsToBitmap, intsToReverseBitmap, mAX_SMALL_BITMAP_SIZE, seqBitmap, ) where #include "HsVersions.h" #include "../includes/MachDeps.h" import GhcPrelude import SMRep import DynFlags import Util import Data.Foldable (foldl') import Data.Bits {-| A bitmap represented by a sequence of 'StgWord's on the /target/ architecture. These are used for bitmaps in info tables and other generated code which need to be emitted as sequences of StgWords. -} type Bitmap = [StgWord] -- | Make a bitmap from a sequence of bits mkBitmap :: DynFlags -> [Bool] -> Bitmap mkBitmap _ [] = [] mkBitmap dflags stuff = chunkToBitmap dflags chunk : mkBitmap dflags rest where (chunk, rest) = splitAt (wORD_SIZE_IN_BITS dflags) stuff chunkToBitmap :: DynFlags -> [Bool] -> StgWord chunkToBitmap dflags chunk = foldl' (.|.) (toStgWord dflags 0) [ oneAt n | (True,n) <- zip chunk [0..] ] where oneAt :: Int -> StgWord oneAt i = toStgWord dflags 1 `shiftL` i -- | Make a bitmap where the slots specified are the /ones/ in the bitmap. -- eg. @[0,1,3], size 4 ==> 0xb@. -- -- The list of @Int@s /must/ be already sorted. intsToBitmap :: DynFlags -> Int -- ^ size in bits -> [Int] -- ^ sorted indices of ones -> Bitmap intsToBitmap dflags size = go 0 where word_sz = wORD_SIZE_IN_BITS dflags oneAt :: Int -> StgWord oneAt i = toStgWord dflags 1 `shiftL` i -- It is important that we maintain strictness here. -- See Note [Strictness when building Bitmaps]. go :: Int -> [Int] -> Bitmap go !pos slots | size <= pos = [] | otherwise = (foldl' (.|.) (toStgWord dflags 0) (map (\i->oneAt (i - pos)) these)) : go (pos + word_sz) rest where (these,rest) = span (< (pos + word_sz)) slots -- | Make a bitmap where the slots specified are the /zeros/ in the bitmap. -- eg. @[0,1,3], size 4 ==> 0x4@ (we leave any bits outside the size as zero, -- just to make the bitmap easier to read). -- -- The list of @Int@s /must/ be already sorted and duplicate-free. intsToReverseBitmap :: DynFlags -> Int -- ^ size in bits -> [Int] -- ^ sorted indices of zeros free of duplicates -> Bitmap intsToReverseBitmap dflags size = go 0 where word_sz = wORD_SIZE_IN_BITS dflags oneAt :: Int -> StgWord oneAt i = toStgWord dflags 1 `shiftL` i -- It is important that we maintain strictness here. -- See Note [Strictness when building Bitmaps]. go :: Int -> [Int] -> Bitmap go !pos slots | size <= pos = [] | otherwise = (foldl' xor (toStgWord dflags init) (map (\i->oneAt (i - pos)) these)) : go (pos + word_sz) rest where (these,rest) = span (< (pos + word_sz)) slots remain = size - pos init | remain >= word_sz = -1 | otherwise = (1 `shiftL` remain) - 1 {- Note [Strictness when building Bitmaps] ======================================== One of the places where @Bitmap@ is used is in in building Static Reference Tables (SRTs) (in @CmmBuildInfoTables.procpointSRT@). In #7450 it was noticed that some test cases (particularly those whose C-- have large numbers of CAFs) produced large quantities of allocations from this function. The source traced back to 'intsToBitmap', which was lazily subtracting the word size from the elements of the tail of the @slots@ list and recursively invoking itself with the result. This resulted in large numbers of subtraction thunks being built up. Here we take care to avoid passing new thunks to the recursive call. Instead we pass the unmodified tail along with an explicit position accumulator, which get subtracted in the fold when we compute the Word. -} {- | Magic number, must agree with @BITMAP_BITS_SHIFT@ in InfoTables.h. Some kinds of bitmap pack a size\/bitmap into a single word if possible, or fall back to an external pointer when the bitmap is too large. This value represents the largest size of bitmap that can be packed into a single word. -} mAX_SMALL_BITMAP_SIZE :: DynFlags -> Int mAX_SMALL_BITMAP_SIZE dflags | wORD_SIZE dflags == 4 = 27 | otherwise = 58 seqBitmap :: Bitmap -> a -> a seqBitmap = seqList
ezyang/ghc
compiler/cmm/Bitmap.hs
bsd-3-clause
4,600
0
17
1,113
796
435
361
62
1
module TAC.Find where import TAC.Data import qualified TAC.Emit -- import Autolib.Genetic import Genetic.Central import Genetic.Config import Autolib.Util.Zufall import Autolib.ToDoc conf :: Integer -> Config Program ( Integer, Int ) conf target = Config { fitness = \ p -> let out = abs $ value p - target co = sum $ map cost p in ( negate out, negate co ) , threshold = ( 1, 0 ) , present = display , trace = display , size = 5000 , generate = some 5 , combine = \ p q -> do ( px, py ) <- some_split p ( qx, qy ) <- some_split q return $ px ++ qy , num_combine = 5000 , mutate = original_mutator , num_mutate = 5000 , num_compact = 10 , num_parallel = 3 , num_steps = Nothing } original_mutator p = do k <- randomRIO ( 1, 10 ) mehrfach k ( \ p -> do action <- eins [ cut, change_program, shorten ] action p ) p display vas = sequence_ $ do ( v@(val,c), a ) <- reverse $ take 3 vas let p = TAC.Emit.program a return $ do print $ vcat [ text $ replicate 50 '-' , text "length" <+> toDoc ( length a ) , text "cost" <+> toDoc (sum $ map cost a ) , text "fitness" <+> toDoc v , if val == 0 then text $ unwords $ words $ show a else empty , if val == 0 then fsep $ map text $ words $ show p else empty , text "value" <+> toDoc (value a ) , text "transformed length" <+> toDoc ( length p ) ] shorten [] = return [] shorten xs = do k <- randomRIO ( 0, length xs - 1 ) let ( pre, this : post ) = splitAt k xs return $ pre ++ post some_split xs = do k <- randomRIO ( 0, length xs - 1 ) return $ splitAt k xs mehrfach :: Monad m => Int -> ( a -> m a ) -> ( a -> m a ) mehrfach 0 action = return mehrfach k action = \ x -> action x >>= mehrfach (k-1) action cut p = do i <- randomRIO ( 0, length p `div` 2 ) j <- randomRIO ( 0, length p `div` 2 ) return $ take j $ drop i p
florianpilz/autotool
src/TAC/Find.hs
gpl-2.0
2,167
11
15
806
864
447
417
63
3
{-# OPTIONS_GHC -Wwarn #-} {-# LANGUAGE CPP, ScopedTypeVariables, Rank2Types #-} {-# LANGUAGE LambdaCase #-} ----------------------------------------------------------------------------- -- | -- Module : Haddock -- Copyright : (c) Simon Marlow 2003-2006, -- David Waern 2006-2010, -- Mateusz Kowalczyk 2014 -- License : BSD-like -- -- Maintainer : haddock@projects.haskell.org -- Stability : experimental -- Portability : portable -- -- Haddock - A Haskell Documentation Tool -- -- Program entry point and top-level code. ----------------------------------------------------------------------------- module Haddock ( haddock, haddockWithGhc, getGhcDirs, readPackagesAndProcessModules, withGhc ) where import Data.Version import Haddock.Backends.Xhtml import Haddock.Backends.Xhtml.Themes (getThemes) import Haddock.Backends.LaTeX import Haddock.Backends.Hoogle import Haddock.Backends.Hyperlinker import Haddock.Interface import Haddock.Parser import Haddock.Types import Haddock.Version import Haddock.InterfaceFile import Haddock.Options import Haddock.Utils import Control.Monad hiding (forM_) import Control.Applicative import Data.Foldable (forM_) import Data.List (isPrefixOf) import Control.Exception import Data.Maybe import Data.IORef import Data.Map (Map) import qualified Data.Map as Map import System.IO import System.Exit #if defined(mingw32_HOST_OS) import Foreign import Foreign.C import Data.Int #endif #ifdef IN_GHC_TREE import System.FilePath #else import qualified GHC.Paths as GhcPaths import Paths_haddock_api (getDataDir) import System.Directory (doesDirectoryExist) #endif import GHC hiding (verbosity) import Config import DynFlags hiding (projectVersion, verbosity) import StaticFlags (discardStaticFlags) import Packages import Panic (handleGhcException) import Module import FastString -------------------------------------------------------------------------------- -- * Exception handling -------------------------------------------------------------------------------- handleTopExceptions :: IO a -> IO a handleTopExceptions = handleNormalExceptions . handleHaddockExceptions . handleGhcExceptions -- | Either returns normally or throws an ExitCode exception; -- all other exceptions are turned into exit exceptions. handleNormalExceptions :: IO a -> IO a handleNormalExceptions inner = (inner `onException` hFlush stdout) `catches` [ Handler (\(code :: ExitCode) -> exitWith code) , Handler (\(ex :: AsyncException) -> case ex of StackOverflow -> do putStrLn "stack overflow: use -g +RTS -K<size> to increase it" exitFailure _ -> do putStrLn ("haddock: " ++ show ex) exitFailure) , Handler (\(ex :: SomeException) -> do putStrLn ("haddock: internal error: " ++ show ex) exitFailure) ] handleHaddockExceptions :: IO a -> IO a handleHaddockExceptions inner = catches inner [Handler handler] where handler (e::HaddockException) = do putStrLn $ "haddock: " ++ show e exitFailure handleGhcExceptions :: IO a -> IO a handleGhcExceptions = -- error messages propagated as exceptions handleGhcException $ \e -> do hFlush stdout print (e :: GhcException) exitFailure ------------------------------------------------------------------------------- -- * Top level ------------------------------------------------------------------------------- -- | Run Haddock with given list of arguments. -- -- Haddock's own main function is defined in terms of this: -- -- > main = getArgs >>= haddock haddock :: [String] -> IO () haddock args = haddockWithGhc withGhc args haddockWithGhc :: (forall a. [Flag] -> Ghc a -> IO a) -> [String] -> IO () haddockWithGhc ghc args = handleTopExceptions $ do -- Parse command-line flags and handle some of them initially. -- TODO: unify all of this (and some of what's in the 'render' function), -- into one function that returns a record with a field for each option, -- or which exits with an error or help message. (flags, files) <- parseHaddockOpts args shortcutFlags flags qual <- case qualification flags of {Left msg -> throwE msg; Right q -> return q} -- inject dynamic-too into flags before we proceed flags' <- ghc flags $ do df <- getDynFlags case lookup "GHC Dynamic" (compilerInfo df) of Just "YES" -> return $ Flag_OptGhc "-dynamic-too" : flags _ -> return flags unless (Flag_NoWarnings `elem` flags) $ do hypSrcWarnings flags forM_ (warnings args) $ \warning -> do hPutStrLn stderr warning ghc flags' $ do dflags <- getDynFlags if not (null files) then do (packages, ifaces, homeLinks) <- readPackagesAndProcessModules flags files -- Dump an "interface file" (.haddock file), if requested. forM_ (optDumpInterfaceFile flags) $ \path -> liftIO $ do writeInterfaceFile path InterfaceFile { ifInstalledIfaces = map toInstalledIface ifaces , ifLinkEnv = homeLinks } -- Render the interfaces. liftIO $ renderStep dflags flags qual packages ifaces else do when (any (`elem` [Flag_Html, Flag_Hoogle, Flag_LaTeX]) flags) $ throwE "No input file(s)." -- Get packages supplied with --read-interface. packages <- liftIO $ readInterfaceFiles freshNameCache (readIfaceArgs flags) -- Render even though there are no input files (usually contents/index). liftIO $ renderStep dflags flags qual packages [] -- | Create warnings about potential misuse of -optghc warnings :: [String] -> [String] warnings = map format . filter (isPrefixOf "-optghc") where format arg = concat ["Warning: `", arg, "' means `-o ", drop 2 arg, "', did you mean `-", arg, "'?"] withGhc :: [Flag] -> Ghc a -> IO a withGhc flags action = do libDir <- fmap snd (getGhcDirs flags) -- Catches all GHC source errors, then prints and re-throws them. let handleSrcErrors action' = flip handleSourceError action' $ \err -> do printException err liftIO exitFailure withGhc' libDir (ghcFlags flags) (\_ -> handleSrcErrors action) readPackagesAndProcessModules :: [Flag] -> [String] -> Ghc ([(DocPaths, InterfaceFile)], [Interface], LinkEnv) readPackagesAndProcessModules flags files = do -- Get packages supplied with --read-interface. packages <- readInterfaceFiles nameCacheFromGhc (readIfaceArgs flags) -- Create the interfaces -- this is the core part of Haddock. let ifaceFiles = map snd packages (ifaces, homeLinks) <- processModules (verbosity flags) files flags ifaceFiles return (packages, ifaces, homeLinks) renderStep :: DynFlags -> [Flag] -> QualOption -> [(DocPaths, InterfaceFile)] -> [Interface] -> IO () renderStep dflags flags qual pkgs interfaces = do updateHTMLXRefs pkgs let ifaceFiles = map snd pkgs installedIfaces = concatMap ifInstalledIfaces ifaceFiles extSrcMap = Map.fromList $ do ((_, Just path), ifile) <- pkgs iface <- ifInstalledIfaces ifile return (instMod iface, path) render dflags flags qual interfaces installedIfaces extSrcMap -- | Render the interfaces with whatever backend is specified in the flags. render :: DynFlags -> [Flag] -> QualOption -> [Interface] -> [InstalledInterface] -> Map Module FilePath -> IO () render dflags flags qual ifaces installedIfaces extSrcMap = do let title = fromMaybe "" (optTitle flags) unicode = Flag_UseUnicode `elem` flags pretty = Flag_PrettyHtml `elem` flags opt_wiki_urls = wikiUrls flags opt_contents_url = optContentsUrl flags opt_index_url = optIndexUrl flags odir = outputDir flags opt_latex_style = optLaTeXStyle flags opt_source_css = optSourceCssFile flags opt_mathjax = optMathjax flags dflags' | unicode = gopt_set dflags Opt_PrintUnicodeSyntax | otherwise = dflags visibleIfaces = [ i | i <- ifaces, OptHide `notElem` ifaceOptions i ] -- /All/ visible interfaces including external package modules. allIfaces = map toInstalledIface ifaces ++ installedIfaces allVisibleIfaces = [ i | i <- allIfaces, OptHide `notElem` instOptions i ] pkgMod = ifaceMod (head ifaces) pkgKey = moduleUnitId pkgMod pkgStr = Just (unitIdString pkgKey) pkgNameVer = modulePackageInfo dflags flags pkgMod (srcBase, srcModule, srcEntity, srcLEntity) = sourceUrls flags srcModule' | Flag_HyperlinkedSource `elem` flags = Just hypSrcModuleUrlFormat | otherwise = srcModule srcMap = mkSrcMap $ Map.union (Map.map SrcExternal extSrcMap) (Map.fromList [ (ifaceMod iface, SrcLocal) | iface <- ifaces ]) pkgSrcMap = Map.mapKeys moduleUnitId extSrcMap pkgSrcMap' | Flag_HyperlinkedSource `elem` flags = Map.insert pkgKey hypSrcModuleNameUrlFormat pkgSrcMap | Just srcNameUrl <- srcEntity = Map.insert pkgKey srcNameUrl pkgSrcMap | otherwise = pkgSrcMap -- TODO: Get these from the interface files as with srcMap pkgSrcLMap' | Flag_HyperlinkedSource `elem` flags = Map.singleton pkgKey hypSrcModuleLineUrlFormat | Just path <- srcLEntity = Map.singleton pkgKey path | otherwise = Map.empty sourceUrls' = (srcBase, srcModule', pkgSrcMap', pkgSrcLMap') libDir <- getHaddockLibDir flags prologue <- getPrologue dflags' flags themes <- getThemes libDir flags >>= either bye return when (Flag_GenIndex `elem` flags) $ do ppHtmlIndex odir title pkgStr themes opt_mathjax opt_contents_url sourceUrls' opt_wiki_urls allVisibleIfaces pretty copyHtmlBits odir libDir themes when (Flag_GenContents `elem` flags) $ do ppHtmlContents dflags' odir title pkgStr themes opt_mathjax opt_index_url sourceUrls' opt_wiki_urls allVisibleIfaces True prologue pretty (makeContentsQual qual) copyHtmlBits odir libDir themes when (Flag_Html `elem` flags) $ do ppHtml dflags' title pkgStr visibleIfaces odir prologue themes opt_mathjax sourceUrls' opt_wiki_urls opt_contents_url opt_index_url unicode qual pretty copyHtmlBits odir libDir themes -- TODO: we throw away Meta for both Hoogle and LaTeX right now, -- might want to fix that if/when these two get some work on them when (Flag_Hoogle `elem` flags) $ do case pkgNameVer of Nothing -> putStrLn . unlines $ [ "haddock: Unable to find a package providing module " ++ moduleNameString (moduleName pkgMod) ++ ", skipping Hoogle." , "" , " Perhaps try specifying the desired package explicitly" ++ " using the --package-name" , " and --package-version arguments." ] Just (PackageName pkgNameFS, pkgVer) -> let pkgNameStr | unpackFS pkgNameFS == "main" && title /= [] = title | otherwise = unpackFS pkgNameFS in ppHoogle dflags' pkgNameStr pkgVer title (fmap _doc prologue) visibleIfaces odir when (Flag_LaTeX `elem` flags) $ do ppLaTeX title pkgStr visibleIfaces odir (fmap _doc prologue) opt_latex_style libDir when (Flag_HyperlinkedSource `elem` flags && not (null ifaces)) $ do ppHyperlinkedSource odir libDir opt_source_css pretty srcMap ifaces -- | From GHC 7.10, this function has a potential to crash with a -- nasty message such as @expectJust getPackageDetails@ because -- package name and versions can no longer reliably be extracted in -- all cases: if the package is not installed yet then this info is no -- longer available. The @--package-name@ and @--package-version@ -- Haddock flags allow the user to specify this information and it is -- returned here if present: if it is not present, the error will -- occur. Nasty but that's how it is for now. Potential TODO. modulePackageInfo :: DynFlags -> [Flag] -- ^ Haddock flags are checked as they may -- contain the package name or version -- provided by the user which we -- prioritise -> Module -> Maybe (PackageName, Data.Version.Version) modulePackageInfo dflags flags modu = cmdline <|> pkgDb where cmdline = (,) <$> optPackageName flags <*> optPackageVersion flags pkgDb = (\pkg -> (packageName pkg, packageVersion pkg)) <$> lookupPackage dflags (moduleUnitId modu) ------------------------------------------------------------------------------- -- * Reading and dumping interface files ------------------------------------------------------------------------------- readInterfaceFiles :: MonadIO m => NameCacheAccessor m -> [(DocPaths, FilePath)] -> m [(DocPaths, InterfaceFile)] readInterfaceFiles name_cache_accessor pairs = do catMaybes `liftM` mapM tryReadIface pairs where -- try to read an interface, warn if we can't tryReadIface (paths, file) = readInterfaceFile name_cache_accessor file >>= \case Left err -> liftIO $ do putStrLn ("Warning: Cannot read " ++ file ++ ":") putStrLn (" " ++ err) putStrLn "Skipping this interface." return Nothing Right f -> return $ Just (paths, f) ------------------------------------------------------------------------------- -- * Creating a GHC session ------------------------------------------------------------------------------- -- | Start a GHC session with the -haddock flag set. Also turn off -- compilation and linking. Then run the given 'Ghc' action. withGhc' :: String -> [String] -> (DynFlags -> Ghc a) -> IO a withGhc' libDir flags ghcActs = runGhc (Just libDir) $ do dynflags <- getSessionDynFlags dynflags' <- parseGhcFlags (gopt_set dynflags Opt_Haddock) { hscTarget = HscNothing, ghcMode = CompManager, ghcLink = NoLink } let dynflags'' = gopt_unset dynflags' Opt_SplitObjs defaultCleanupHandler dynflags'' $ do -- ignore the following return-value, which is a list of packages -- that may need to be re-linked: Haddock doesn't do any -- dynamic or static linking at all! _ <- setSessionDynFlags dynflags'' ghcActs dynflags'' where parseGhcFlags :: MonadIO m => DynFlags -> m DynFlags parseGhcFlags dynflags = do -- TODO: handle warnings? -- NOTA BENE: We _MUST_ discard any static flags here, because we cannot -- rely on Haddock to parse them, as it only parses the DynFlags. Yet if -- we pass any, Haddock will fail. Since StaticFlags are global to the -- GHC invocation, there's also no way to reparse/save them to set them -- again properly. -- -- This is a bit of a hack until we get rid of the rest of the remaining -- StaticFlags. See GHC issue #8276. let flags' = discardStaticFlags flags (dynflags', rest, _) <- parseDynamicFlags dynflags (map noLoc flags') if not (null rest) then throwE ("Couldn't parse GHC options: " ++ unwords flags') else return dynflags' ------------------------------------------------------------------------------- -- * Misc ------------------------------------------------------------------------------- getHaddockLibDir :: [Flag] -> IO String getHaddockLibDir flags = case [str | Flag_Lib str <- flags] of [] -> do #ifdef IN_GHC_TREE getInTreeDir #else d <- getDataDir -- provided by Cabal doesDirectoryExist d >>= \exists -> case exists of True -> return d False -> do -- If directory does not exist then we are probably invoking from -- ./dist/build/haddock/haddock so we use ./resources as a fallback. doesDirectoryExist "resources" >>= \exists_ -> case exists_ of True -> return "resources" False -> die ("Haddock's resource directory (" ++ d ++ ") does not exist!\n") #endif fs -> return (last fs) getGhcDirs :: [Flag] -> IO (String, String) getGhcDirs flags = do case [ dir | Flag_GhcLibDir dir <- flags ] of [] -> do #ifdef IN_GHC_TREE libDir <- getInTreeDir return (ghcPath, libDir) #else return (ghcPath, GhcPaths.libdir) #endif xs -> return (ghcPath, last xs) where #ifdef IN_GHC_TREE ghcPath = "not available" #else ghcPath = GhcPaths.ghc #endif shortcutFlags :: [Flag] -> IO () shortcutFlags flags = do usage <- getUsage when (Flag_Help `elem` flags) (bye usage) when (Flag_Version `elem` flags) byeVersion when (Flag_InterfaceVersion `elem` flags) (bye (show binaryInterfaceVersion ++ "\n")) when (Flag_CompatibleInterfaceVersions `elem` flags) (bye (unwords (map show binaryInterfaceVersionCompatibility) ++ "\n")) when (Flag_GhcVersion `elem` flags) (bye (cProjectVersion ++ "\n")) when (Flag_PrintGhcPath `elem` flags) $ do dir <- fmap fst (getGhcDirs flags) bye $ dir ++ "\n" when (Flag_PrintGhcLibDir `elem` flags) $ do dir <- fmap snd (getGhcDirs flags) bye $ dir ++ "\n" when (Flag_UseUnicode `elem` flags && Flag_Html `notElem` flags) $ throwE "Unicode can only be enabled for HTML output." when ((Flag_GenIndex `elem` flags || Flag_GenContents `elem` flags) && Flag_Html `elem` flags) $ throwE "-h cannot be used with --gen-index or --gen-contents" when ((Flag_GenIndex `elem` flags || Flag_GenContents `elem` flags) && Flag_Hoogle `elem` flags) $ throwE "--hoogle cannot be used with --gen-index or --gen-contents" when ((Flag_GenIndex `elem` flags || Flag_GenContents `elem` flags) && Flag_LaTeX `elem` flags) $ throwE "--latex cannot be used with --gen-index or --gen-contents" where byeVersion = bye $ "Haddock version " ++ projectVersion ++ ", (c) Simon Marlow 2006\n" ++ "Ported to use the GHC API by David Waern 2006-2008\n" -- | Generate some warnings about potential misuse of @--hyperlinked-source@. hypSrcWarnings :: [Flag] -> IO () hypSrcWarnings flags = do when (hypSrc && any isSourceUrlFlag flags) $ hPutStrLn stderr $ concat [ "Warning: " , "--source-* options are ignored when " , "--hyperlinked-source is enabled." ] when (not hypSrc && any isSourceCssFlag flags) $ hPutStrLn stderr $ concat [ "Warning: " , "source CSS file is specified but " , "--hyperlinked-source is disabled." ] where hypSrc = Flag_HyperlinkedSource `elem` flags isSourceUrlFlag (Flag_SourceBaseURL _) = True isSourceUrlFlag (Flag_SourceModuleURL _) = True isSourceUrlFlag (Flag_SourceEntityURL _) = True isSourceUrlFlag (Flag_SourceLEntityURL _) = True isSourceUrlFlag _ = False isSourceCssFlag (Flag_SourceCss _) = True isSourceCssFlag _ = False updateHTMLXRefs :: [(DocPaths, InterfaceFile)] -> IO () updateHTMLXRefs packages = do writeIORef html_xrefs_ref (Map.fromList mapping) writeIORef html_xrefs_ref' (Map.fromList mapping') where mapping = [ (instMod iface, html) | ((html, _), ifaces) <- packages , iface <- ifInstalledIfaces ifaces ] mapping' = [ (moduleName m, html) | (m, html) <- mapping ] getPrologue :: DynFlags -> [Flag] -> IO (Maybe (MDoc RdrName)) getPrologue dflags flags = case [filename | Flag_Prologue filename <- flags ] of [] -> return Nothing [filename] -> withFile filename ReadMode $ \h -> do hSetEncoding h utf8 str <- hGetContents h return . Just $! parseParas dflags str _ -> throwE "multiple -p/--prologue options" #ifdef IN_GHC_TREE getInTreeDir :: IO String getInTreeDir = getExecDir >>= \case Nothing -> error "No GhcDir found" Just d -> return (d </> ".." </> "lib") getExecDir :: IO (Maybe String) #if defined(mingw32_HOST_OS) getExecDir = try_size 2048 -- plenty, PATH_MAX is 512 under Win32. where try_size size = allocaArray (fromIntegral size) $ \buf -> do ret <- c_GetModuleFileName nullPtr buf size case ret of 0 -> return Nothing _ | ret < size -> fmap (Just . dropFileName) $ peekCWString buf | otherwise -> try_size (size * 2) foreign import stdcall unsafe "windows.h GetModuleFileNameW" c_GetModuleFileName :: Ptr () -> CWString -> Word32 -> IO Word32 #else getExecDir = return Nothing #endif #endif
niteria/haddock
haddock-api/src/Haddock.hs
bsd-2-clause
20,811
0
23
4,952
4,540
2,346
2,194
338
6
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE helpset PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN" "http://java.sun.com/products/javahelp/helpset_2_0.dtd"> <helpset version="2.0" xml:lang="el-GR"> <title>Windows WebDrivers</title> <maps> <homeID>top</homeID> <mapref location="map.jhm"/> </maps> <view> <name>TOC</name> <label>Contents</label> <type>org.zaproxy.zap.extension.help.ZapTocView</type> <data>toc.xml</data> </view> <view> <name>Index</name> <label>Index</label> <type>javax.help.IndexView</type> <data>index.xml</data> </view> <view> <name>Search</name> <label>Search</label> <type>javax.help.SearchView</type> <data engine="com.sun.java.help.search.DefaultSearchEngine"> JavaHelpSearch </data> </view> <view> <name>Favorites</name> <label>Favorites</label> <type>javax.help.FavoritesView</type> </view> </helpset>
kingthorin/zap-extensions
addOns/webdrivers/webdriverwindows/src/main/javahelp/org/zaproxy/zap/extension/webdriverwindows/resources/help_el_GR/helpset_el_GR.hs
apache-2.0
963
77
66
156
407
206
201
-1
-1
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE helpset PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN" "http://java.sun.com/products/javahelp/helpset_2_0.dtd"> <helpset version="2.0" xml:lang="da-DK"> <title>Front-End Scanner | ZAP Extension</title> <maps> <homeID>top</homeID> <mapref location="map.jhm"/> </maps> <view> <name>TOC</name> <label>Contents</label> <type>org.zaproxy.zap.extension.help.ZapTocView</type> <data>toc.xml</data> </view> <view> <name>Index</name> <label>Index</label> <type>javax.help.IndexView</type> <data>index.xml</data> </view> <view> <name>Search</name> <label>Search</label> <type>javax.help.SearchView</type> <data engine="com.sun.java.help.search.DefaultSearchEngine"> JavaHelpSearch </data> </view> <view> <name>Favorites</name> <label>Favorites</label> <type>javax.help.FavoritesView</type> </view> </helpset>
kingthorin/zap-extensions
addOns/frontendscanner/src/main/javahelp/org/zaproxy/zap/extension/frontendscanner/resources/help_da_DK/helpset_da_DK.hs
apache-2.0
978
78
67
159
417
211
206
-1
-1
{-# LANGUAGE DataKinds #-} {-# LANGUAGE ExistentialQuantification #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeFamilyDependencies #-} {-# LANGUAGE PolyKinds #-} module Main where import Data.Kind import Data.Proxy import Language.Haskell.TH hiding (Type) -- Anonymous tyvar binder example newtype Foo1 = Foo1 (Proxy '[False, True, False]) -- Required (dependent) tyvar binder example type family Wurble k (a :: k) :: k newtype Foo2 a = Foo2 (Proxy (Wurble (Maybe a) Nothing)) -- Non-injective type family example type family Foo3Fam1 (a :: Type) :: Type where Foo3Fam1 a = a type family Foo3Fam2 (a :: Foo3Fam1 b) :: b newtype Foo3 = Foo3 (Proxy (Foo3Fam2 Int)) -- Injective type family example type family Foo4Fam1 (a :: Type) = (r :: Type) | r -> a where Foo4Fam1 a = a type family Foo4Fam2 (a :: Foo4Fam1 b) :: b newtype Foo4 = Foo4 (Proxy (Foo4Fam2 Int)) $(return []) main :: IO () main = do putStrLn $(reify ''Foo1 >>= stringE . pprint) putStrLn $(reify ''Foo2 >>= stringE . pprint) putStrLn $(reify ''Foo3 >>= stringE . pprint) putStrLn $(reify ''Foo4 >>= stringE . pprint)
sdiehl/ghc
testsuite/tests/th/T14060.hs
bsd-3-clause
1,108
0
13
199
359
203
156
27
1
{-# LANGUAGE GADTs, RankNTypes, ScopedTypeVariables, Strict, TypeApplications #-} import Data.Typeable zero :: forall x. Typeable x => Maybe x zero = do Refl <- eqT @Int @x pure 0 main :: IO () main = print (zero @())
olsner/ghc
testsuite/tests/deSugar/should_run/T11747.hs
bsd-3-clause
242
0
9
62
82
40
42
8
1
-- !!! test various I/O Requests -- -- import IO import System import Debug.Trace (trace) import Text.Regex import Maybe main = do prog <- getProgName let Just (name:_) = matchRegex (mkRegex ".*(cg025)") prog hPutStr stderr (shows name "\n") args <- getArgs hPutStr stderr (shows args "\n") path <- getEnv "PATH" hPutStr stderr ("GOT PATH\n") stdin_txt <- getContents putStr stdin_txt file_cts <- readFile (head args) hPutStr stderr file_cts trace "hello, trace" $ catch (getEnv "__WURBLE__" >> return ()) (\ e -> error "hello, error")
ghc-android/ghc
testsuite/tests/codeGen/should_run/cgrun025.hs
bsd-3-clause
592
0
12
139
209
98
111
19
1
{-# LANGUAGE PolyKinds, TypeFamilies, DataKinds, TemplateHaskell #-} module T7022 where import T7022b foo :: SList a -> Bool foo = undefined
urbanslug/ghc
testsuite/tests/polykinds/T7022.hs
bsd-3-clause
145
0
6
25
25
15
10
5
1
module RogueLike.Update.Pickup where import RogueLike import RogueLike.Update import Data.Char (digitToInt) import Data.List ((!!)) import Data.Map (Map(..)) import qualified Data.Map as Map (insert, lookup, delete) import Data.Maybe (fromMaybe) import UI.NCurses (Event(..)) updatePickup :: Event -> GameState -> GameState updatePickup (EventCharacter eventChar) curGameState | eventChar == '\ESC' = curGameState{gameMode=GameMode} | eventChar >= '1' && eventChar <= '9' = pickupItem (digitToInt eventChar) | otherwise = curGameState where mapPos = playerPos curGameState oldMapObjects = gameObjects curGameState oldLocObjects = fromMaybe [] (Map.lookup mapPos oldMapObjects) oldInventory = inventory curGameState newInventory index = oldLocObjects !! (index - 1) newLocObjects index = oldLocObjects `withOut` index newMapObjects index = if length oldLocObjects == 1 then Map.delete mapPos oldMapObjects else Map.insert mapPos (newLocObjects index) oldMapObjects pickupItem index = if index > length oldLocObjects then curGameState else curGameState{gameObjects=newMapObjects index,inventory=newInventory index : oldInventory, gameMode=GameMode} updatePickup _ curGameState = curGameState
mgreenly/roguelike
src/RogueLike/Update/Pickup.hs
isc
1,568
0
11
515
369
201
168
29
3
{-# htermination (gtTup0 :: Tup0 -> Tup0 -> MyBool) #-} import qualified Prelude data MyBool = MyTrue | MyFalse data List a = Cons a (List a) | Nil data Tup0 = Tup0 ; data Ordering = LT | EQ | GT ; compareTup0 :: Tup0 -> Tup0 -> Ordering compareTup0 Tup0 Tup0 = EQ; esEsOrdering :: Ordering -> Ordering -> MyBool esEsOrdering LT LT = MyTrue; esEsOrdering LT EQ = MyFalse; esEsOrdering LT GT = MyFalse; esEsOrdering EQ LT = MyFalse; esEsOrdering EQ EQ = MyTrue; esEsOrdering EQ GT = MyFalse; esEsOrdering GT LT = MyFalse; esEsOrdering GT EQ = MyFalse; esEsOrdering GT GT = MyTrue; gtTup0 :: Tup0 -> Tup0 -> MyBool gtTup0 x y = esEsOrdering (compareTup0 x y) GT;
ComputationWithBoundedResources/ara-inference
doc/tpdb_trs/Haskell/basic_haskell/GT_1.hs
mit
688
0
8
150
232
129
103
19
1
{-# LANGUAGE OverloadedStrings, DeriveGeneric #-} module Caurakarman.Type where import Data.Aeson import qualified Data.Text as T import GHC.Generics data Post = Post { uri :: T.Text , body :: T.Text } deriving (Eq, Show, Generic) instance ToJSON Post instance FromJSON Post data Success = Ok deriving (Show) data Created = Created { created :: Bool } deriving (Generic, Show) instance ToJSON Created instance FromJSON Created data PostPersistanceError = GeneralError | DocumentNotCreated deriving (Show)
ardfard/caurakarman
src/Caurakarman/Type.hs
mit
563
0
9
130
150
85
65
16
0
{-# LANGUAGE DataKinds #-} {-# LANGUAGE RecordWildCards #-} module Render ( render ) where import Control.Concurrent import qualified Data.HashMap.Strict as HashMap import Data.Maybe import Data.Monoid ((<>)) import qualified Data.Vector as Vector import Foreign.C.Types import Linear (V4(..), V2(..)) import Linear.Affine (Point(..)) import SDL (($=)) import SDL.Video.Renderer import Item import qualified Resource import State import ViewPort makeRect :: (Num a) => Point V2 a -> a -> Rectangle a makeRect (P (V2 x y)) h = Rectangle (P $ V2 (x - h) (y - h)) (V2 h h) -- FIXME do something better than fromJust... unitToInfo :: Resource.Store -> Unit -> RenderingInfo unitToInfo store' Unit{..} = RenderingInfo { _rPosition = _unitPosition , _rTexture = fromJust $ HashMap.lookup _unitDescription (Resource._units store') , _rSize = _unitSize _unitDescription } buildingToInfo :: Resource.Store -> Building -> RenderingInfo buildingToInfo store' Building{..} = RenderingInfo { _rPosition = _buildingPosition , _rTexture = fromJust $ HashMap.lookup _buildingDescription (Resource._buildings store') , _rSize = _buildingSize _buildingDescription } renderItem :: Renderer -> ViewPort -> RenderingInfo -> IO () renderItem renderer ViewPort{..} RenderingInfo{..} = do copy renderer _rTexture Nothing (Just $ makeRect (P iPos) iSize) where myRound :: RealFrac a => a -> Integer myRound = round transformToViewPort i = (fmap toInt i) - _position toInt = fromIntegral . myRound iPos = fmap fromIntegral $ transformToViewPort _rPosition iSize = CInt $ fromIntegral _rSize render :: Renderer -> MVar State -> IO () render renderer state = do State{..} <- readMVar state let unitsInfo = Vector.map (unitToInfo $ _store) _units let buildingsInfo = Vector.map (buildingToInfo $ _store) _buildings -- Debug unit positions -- forM_ (units s) $ \unit -> print $ unitPosition unit rendererDrawColor renderer $= V4 0 0 0 255 clear renderer sequence_ $ Vector.map (renderItem renderer _viewPort) (unitsInfo <> buildingsInfo) present renderer
Unoriginal-War/unoriginal-war
src/Render.hs
mit
2,142
0
12
407
668
356
312
48
1
{-# LANGUAGE OverloadedStrings #-} module Main ( main ) where import Control.Concurrent (forkIO, threadDelay) import Control.Concurrent.Async (async, waitCatch) import Control.Exception (finally) import Control.Monad (forever, replicateM, void) import Data.ByteString (hGetLine) import Data.ByteString.Char8 (hPutStrLn) import Data.IORef (IORef, atomicModifyIORef', newIORef, readIORef) import Network (PortID (PortNumber), connectTo) import System.Environment (getArgs) import System.IO (BufferMode (LineBuffering), hSetBuffering) main :: IO () main = do [ip, port, spawnCount, pingFreq] <- getArgs count <- newIORef (0 :: Int) void $ forkIO $ watcher count asyncs <- replicateM (read spawnCount) $ async $ echoClient ip (read port) (read pingFreq) count mapM_ waitCatch asyncs echoClient :: String -> Int -> Float -> IORef Int -> IO () echoClient host port pingFreq count = do h <- connectTo host (PortNumber (fromIntegral port)) hSetBuffering h LineBuffering incRef count finally (loop h) (decRef count) where loop h = do hPutStrLn h "PING" _ <- hGetLine h threadDelay (round $ pingFreq*1000000) loop h watcher :: IORef Int -> IO () watcher i = forever $ do count <- readIORef i putStrLn $ "Clients Connected: " ++ (show count) threadDelay (5*1000000) incRef :: Num a => IORef a -> IO () incRef ref = void $ atomicModifyIORef' ref (\x -> (x+1, ())) decRef :: Num a => IORef a -> IO () decRef ref = void $ atomicModifyIORef' ref (\x -> (x-1, ()))
bbangert/echo
EchoClient.hs
mit
1,840
0
12
609
605
311
294
44
1
{-# LANGUAGE RecordWildCards #-} module Main where import XMonad import XMonad.Actions.CycleWS import XMonad.Hooks.DynamicLog import XMonad.Hooks.ManageDocks import XMonad.Hooks.SetWMName import qualified XMonad.StackSet as W import XMonad.Util.Run import XMonad.Util.WorkspaceCompare import qualified Data.Map as M import System.Exit import System.IO main :: IO () main = do hSetBuffering stdout NoBuffering hSetBuffering stderr NoBuffering xmobar <- spawnPipe "xmobar" let pp = PP { ppCurrent = xmobarColor orange base03 . pad , ppVisible = xmobarColor green base03 . pad , ppHidden = xmobarColor green "" . pad , ppHiddenNoWindows = pad , ppUrgent = xmobarColor green red . pad , ppSep = "" , ppWsSep = "" , ppTitle = const "" , ppTitleSanitize = const "" , ppLayout = const "" , ppOrder = id , ppSort = (fmap.fmap) reverse getSortByIndex , ppExtras = [] , ppOutput = hPutStrLn xmobar } myConfig = def { borderWidth = 1 , terminal = "urxvt" , modMask = mod4Mask , startupHook = myStartupHook , handleEventHook = docksEventHook , focusFollowsMouse = True , clickJustFocuses = True , normalBorderColor = black , focusedBorderColor = black , workspaces = map fst tagKeys , layoutHook = avoidStruts myLayoutHook , logHook = fixFloatBorderColor base01 <+> dynamicLogWithPP pp , manageHook = manageDocks , keys = myKeys , mouseBindings = myMouseBindings } xmonad myConfig tagKeys :: [(WorkspaceId, KeySym)] tagKeys = [ ("G", xK_g) , ("F", xK_f) , ("D", xK_d) , ("S", xK_s) , ("A", xK_a) ] fixFloatBorderColor :: String -> X () fixFloatBorderColor color = do keys <- gets $ M.keys . W.floating . windowset withDisplay $ \d -> io $ do mpix <- initColor d color case mpix of Nothing -> error "Main.fixFloatBorderColor" Just pix -> let go w = setWindowBorder d w pix in mapM_ go keys myStartupHook = setWMName "LG3D" myLayoutHook :: Choose Full (Choose Tall (Mirror Tall)) a myLayoutHook = Full ||| tiled ||| Mirror tiled where tiled = Tall nmaster delta ratio nmaster = 1 ratio = 1/2 delta = 3/100 myKeys :: XConfig Layout -> M.Map (KeyMask, KeySym) (X ()) myKeys (XConfig {..}) = M.fromList $ -- # meta -- launching and killing programs [ ((modMask, xK_c), spawn terminal) -- Launch terminal , ((modMask, xK_u), spawn "vlaunch") -- Launch hacky launcher , ((modMask, xK_minus), spawn "vmctl") -- Launch hacky music chooser , ((modMask, xK_equal), spawn "popout 110 30") -- Launch floating urxvt , ((modMask, xK_x), kill) -- Close the focused window -- quit or restart , ((modMask, xK_y), io (exitWith ExitSuccess)) -- Quit xmonad , ((modMask, xK_r), spawn "if type xmonad; then xmonad --recompile && xmonad --restart; else xmessage xmonad not in \\$PATH: \"$PATH\"; fi") -- Restart xmonad -- # inter-workspace -- movement between workspaces adjascent in the config tag list or in time , ((mod1Mask, xK_p ), toggleWS) -- Move to last viewed workspace , ((mod1Mask, xK_Tab), toggleWS) -- Move to last viewed workspace , ((modMask, xK_n ), nextWS ) -- Move to next workspace in stack , ((modMask, xK_p ), prevWS ) -- Move to previous workspace in stack ] ++ -- mod-N: Switch to workspace N -- mod-shift-N: Move client to workspace N [ ((m .|. modMask, k), windows $ f i) | (i, k) <- tagKeys , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)] ] ++ -- mod-{1,2,3}: Switch to physical/Xinerama screens 1, 2, or 3 -- mod-shift-{w,e,r}: Move client to screen 1, 2, or 3 [ ((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f)) | (key, sc) <- zip [xK_1, xK_2, xK_3] [0..] , (f, m) <- [(W.view, 0), (W.shift, shiftMask)] ] ++ -- # intra-workspace -- changing layouts [ ((modMask , xK_space ), sendMessage NextLayout) -- Rotate through the available layout algorithms , ((modMask .|. shiftMask, xK_space ), setLayout layoutHook) -- Reset the layouts on the current workspace to default -- move focus up or down the window stack , ((modMask, xK_j), windows W.focusDown ) -- Move focus to the next window , ((modMask, xK_k), windows W.focusUp ) -- Move focus to the previous window , ((modMask, xK_m), windows W.focusMaster) -- Move focus to the master window -- modifying the window order , ((modMask .|. shiftMask, xK_j ), windows W.swapDown ) -- Swap the focused window with the next window , ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) -- Swap the focused window with the previous window , ((modMask .|. shiftMask, xK_m ), windows W.swapMaster) -- Swap the focused window and the master window -- increase or decrease number of windows in the master area , ((modMask, xK_period), sendMessage (IncMasterN 1 )) -- Increment the number of windows in the master area , ((modMask, xK_comma ), sendMessage (IncMasterN (-1))) -- Deincrement the number of windows in the master area -- resizing the master/slave ratio , ((modMask, xK_h), sendMessage Shrink) -- Shrink the master area , ((modMask, xK_l), sendMessage Expand) -- Expand the master area -- misc , ((modMask, xK_i), withFocused $ windows . W.sink) -- Push window back into tiling ] myMouseBindings :: XConfig Layout -> M.Map (KeyMask, Button) (Window -> X ()) myMouseBindings (XConfig {..}) = M.fromList -- Set the window to floating mode and move by dragging [ ((modMask, button1), \w -> focus w >> mouseMoveWindow w >> windows W.shiftMaster) -- Raise the window to the top of the stack , ((modMask, button2), windows . (W.shiftMaster .) . W.focusWindow) -- Set the window to floating mode and resize by dragging , ((modMask, button3), \w -> focus w >> mouseResizeWindow w >> windows W.shiftMaster) ] -- SOLARIZED COLORS black = "#000000" white = "#ffffff" base03 = "#002b36" base02 = "#073642" base01 = "#586e75" base00 = "#657b83" base0 = "#839496" base1 = "#93a1a1" base2 = "#eee8d5" base3 = "#fdf6e3" yellow = "#b58900" orange = "#cb4b16" red = "#dc322f" magenta = "#d33682" violet = "#6c71c4" blue = "#268bd2" cyan = "#2aa198" green = "#859900"
nickspinale/dotfiles
config/xmonad/xmonad.hs
mit
6,896
0
19
2,028
1,688
989
699
130
2
{-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE UndecidableInstances #-} module Betfair.APING.Types.ExBestOffersOverrides ( ExBestOffersOverrides(..) ) where import Betfair.APING.Types.RollupModel (RollupModel) import Data.Aeson.TH (Options (omitNothingFields), defaultOptions, deriveJSON) import Protolude import Text.PrettyPrint.GenericPretty data ExBestOffersOverrides = ExBestOffersOverrides { bestPricesDepth :: Maybe Int , rollupModel :: RollupModel , rollupLimit :: Maybe Int , rollupLiabilityThreshold :: Maybe Double , rollupLiabilityFactor :: Maybe Int } deriving (Eq, Show, Generic, Pretty) $(deriveJSON defaultOptions {omitNothingFields = True} ''ExBestOffersOverrides)
joe9/betfair-api
src/Betfair/APING/Types/ExBestOffersOverrides.hs
mit
1,029
0
9
237
159
98
61
23
0
--import qualified Data.Set as Set --threes = Set.fromList [0,3..1000] --fives = Set.fromList [0,5..1000] --res = (Set.union threes fives) --main = putStrLn ("The answer to Euler Problem 1 is " ++ show res) res :: Integer main :: IO() res = sum [x | x<-[0..1000], mod x 3 == 0 || mod x 5 == 0] main = print ("The answer to Euler Problem 1 is " ++ show res)
andrew-christianson/Polyglot-Euler
Problem 1.hs
mit
362
0
11
74
89
47
42
4
1
{-# LANGUAGE OverloadedStrings #-} import Prelude hiding (putStrLn, readFile) import qualified Prelude as P import Control.Monad import System.Directory import System.Environment import System.FilePath import System.Posix.Files import Data.Char import Data.ByteString.Char8 import qualified Data.ByteString.Char8 as BS import qualified Data.List as L import Data.Map import GHC.Exts (sortWith) main :: IO () main = do args <- getArgs if P.null args then usage else do sorted_words <- liftM BS.lines $ readFile (P.head args) let word_counts = getWordCounts sorted_words let sorted_word_counts = sortWith (negate . snd) word_counts sequence_ $ P.map (uncurry printCount) sorted_word_counts printCount :: ByteString -> Int -> IO () printCount w c = P.putStr (show c) >> P.putStr " " >> BS.putStrLn w usage :: IO () usage = do name <- getProgName P.putStrLn $ "Usage: " ++ name ++ " FILE" getWordCounts :: [ByteString] -> [(ByteString, Int)] getWordCounts ws = getWordCounts_ ws "" 0 getWordCounts_ :: [ByteString] -> ByteString -> Int -> [(ByteString, Int)] getWordCounts_ [] last_w count = (last_w, count) : [] getWordCounts_ (w:ws) last_w count = if w == last_w then let count' = count+1 in seq count' $ getWordCounts_ ws last_w count' else if count /= 0 then (last_w, count) : (getWordCounts_ ws w 1) else getWordCounts_ ws w 1
bhamrick/puzzlib
analyze_corpus/BuildFrequencyTable.hs
mit
1,445
0
15
317
493
262
231
39
3
#!/usr/bin/env runhaskell {-# LANGUAGE OverloadedStrings #-} {- | Module : Main Description : Easily write speakers notes for pandoc + reveal.js Copyright : (c) Ivan Lazar Miljenovic License : BSD-style (see the file LICENSE) Maintainer : Ivan.Miljenovic@gmail.com -} module Main where import Control.Arrow (first) import Data.List (partition) import Text.Pandoc.JSON -- ----------------------------------------------------------------------------- main :: IO () main = toJSONFilter notify -- ----------------------------------------------------------------------------- notify :: Maybe Format -> Block -> [Block] notify mfmt dl@(DefinitionList dfs) = case getNotes dfs of ([],_) -> [dl] (nts, dfs') -> let dl' = DefinitionList dfs' in case mfmt of Just "revealjs" -> RawBlock (Format "html") "<aside class=\"notes\">" : nts ++ [ RawBlock (Format "html") "</aside>" , dl' ] Just "dzslides" -> [Div ("",[],[("role","note")]) nts, dl'] _ -> [dl'] notify _ bl = [bl] type DefList = [([Inline], [[Block]])] getNotes :: DefList -> ([Block], DefList) getNotes = first merge . partition isNote where isNote ([Str "Notes"],_) = True isNote _ = False merge = concat . concatMap snd
ivan-m/FPSyd-Transmogrification
notify.hs
mit
1,571
0
17
559
351
194
157
26
4
module Main where import Data.Cross(cross3) import Data.Tree(Tree, flatten, unfoldTree) import Diagrams.Backend.SVG.CmdLine(defaultMain) --import Diagrams.Backend.SVG(SVG) import Diagrams.Prelude hiding (rotationAbout, direction, angleBetween) import Diagrams.ThreeD.Transform(aboutY, pointAt', rotationAbout) import Diagrams.ThreeD.Types(unp3, R3, r3, T3, Spherical) import Diagrams.ThreeD.Vector(unitZ, direction, angleBetween) --type TreeNode3 = (P3, R3, Double) --type TreeNode = (P2, R2, Double) --type Dgm = Diagram SVG R2 data TreeConfig = TC { tcScale :: Double, tcCutOff :: Double, tcMinWidth :: Double, tcInitialWidth :: Double, tcWidthTaper :: Double, tcBranchScale :: Double, tcBranchAngle :: Double } deriving (Show) --tc :: TreeConfig tc = TC { tcScale = s, tcCutOff = 0.12 * s, tcMinWidth = 0.01 * s, tcInitialWidth = 0.1 * s, tcWidthTaper = 0.7, tcBranchScale = 0.6, tcBranchAngle = 1/7 } where s = 10000 --main :: IO () main = defaultMain $ pad 1.1 $ renderTree buildTree --renderTree :: Tree TreeNode3 -> Dgm renderTree = mconcat . flatten . fmap drawBranch . fmap projectNode --buildTree :: Tree TreeNode3 buildTree = unfoldTree branches seed --seed :: TreeNode3 seed = (origin, unitZ ^* tcScale tc, tcInitialWidth tc) --projectNode :: TreeNode3 -> TreeNode projectNode (p, v, w) = (p', v', w) where q = p .+^ v q' = projectPtXZ q p' = projectPtXZ p v' = q' .-. p' --projectPtXZ :: P3 -> P2 projectPtXZ p = case unp3 p of (x, _, z) -> p2 (x, z) --inject :: R2 -> R3 inject v = case unr2 v of (x, y) -> r3 (x, y, 0) --drawBranch :: TreeNode -> Dgm drawBranch n@(p, v, w) = place d p where d | w <= tcMinWidth tc = lineSegment v w | otherwise = trapezoid n --lineSegment :: R2 -> Double -> Dgm lineSegment v w = fromOffsets [v] # lw w --trapezoid :: TreeNode -> Dgm trapezoid (p, v, w) = (closeLine . lineFromVertices) [ p, a, b, c, d ] # strokeLoop # fc black # lw 0.01 where p' = p .+^ v w' = taperWidth w n = v # rotateBy (1/4) # normalized w2 = w / 2 ; w2' = w' / 2 a = p .-^ (w2 *^ n) ; b = p' .-^ (w2' *^ n) c = p' .+^ (w2' *^ n) ; d = p .+^ (w2 *^ n) --taperWidth :: Double -> Double taperWidth w = max (w * tcWidthTaper tc) (tcMinWidth tc) --branches :: TreeNode3 -> (TreeNode3, [TreeNode3]) branches n@(_, v, _) | magnitude v < tcCutOff tc = (n, []) | otherwise = (n, branchTips n) -- Build a regular polygon in the XY-plane and tilt it perpendicular -- to the vector it branches from. Orient the polygon to make the -- projection more interesting. --branchTips :: TreeNode3 -> [TreeNode3] branchTips n@(_, v, _) = polygon po # map (.-. origin) # map inject # map (^+^ (unitZ ^* h)) # map (transform (pointAt'' unitZ unitZ v)) # map (^* (magnitude v * tcBranchScale tc)) # map (mkTip n) where po = PolygonOpts (PolyRegular c s) (OrientTo v') origin c = 3 -- number of sides s = 0.782 -- length of side v' = r2 (1,3) -- orientation vector h = 0.623 -- "height" of tips above base -- Copied from http://projects.haskell.org/diagrams/haddock/src/ -- Diagrams-ThreeD-Transform.html#pointAt -- and modified to change the calculation of tilt angle. -- Also eliminating panning, which is done for us automatically -- by virtue of the relative vector spaces of composed subdiagrams. -- There is already a function called pointAt'. --pointAt'' :: R3 -> R3 -> R3 -> T3 pointAt'' about initial final = tilt where tiltAngle = angleBetween initial final tiltDir = direction $ cross3 about final :: Spherical tilt = rotationAbout origin tiltDir tiltAngle --mkTip :: TreeNode3 -> R3 -> TreeNode3 mkTip (p, v, w) v' = (p .+^ v, v', taperWidth w)
bobgru/tree-derivations
src/Deep3D.hs
mit
4,109
0
12
1,178
1,122
634
488
70
1
module BackEnd.Server ( scottyServer ) where import Web.Scotty import Network.Wai.Middleware.Static import Network.Wai.Middleware.RequestLogger import Data.IORef import Data.Aeson (ToJSON) import Control.Monad.IO.Class import BackEnd.Type scottyServer :: ToJSON a => ServerSetting -> IORef a -> IO () scottyServer ServerSetting{..} iref = do scotty serverPort $ do middleware logStdoutDev middleware $ staticPolicy $ noDots >-> addBase monitorPath get "/filelist.json" $ do fileValue <- liftIO $ readIORef iref json (fileValue)
cosmo0920/FileDeliverServer
src/BackEnd/Server.hs
mit
556
0
15
92
168
86
82
-1
-1
{-# LANGUAGE Safe #-} {-| Module : RFC5769 Description : Test Vectors for Session Traversal Utilities for NAT (STUN) from RFC5769 Copyright : (c) Ossi Herrala, 2016 License : MIT Maintainer : oherrala@gmail.com Stability : experimental Portability : portable Test Vectors for Session Traversal Utilities for NAT (STUN) from RFC5769 (https://tools.ietf.org/html/rfc5769) as ByteStrings. -} module RFC5769 ( sampleRequest , sampleIPv4Response , sampleIPv6Response , sampleReqWithLongTermAuth ) where import Data.ByteString (ByteString) import qualified Data.ByteString as ByteString -- | 2.1. Sample Request -- -- Software name: "STUN test client" (without quotes) -- Username: "evtj:h6vY" (without quotes) -- Password: "VOkJxbRl1RmTxUk/WvJxBt" (without quotes) -- sampleRequest :: ByteString sampleRequest = ByteString.pack [ 0x00, 0x01, 0x00, 0x58, -- Request type and message length 0x21, 0x12, 0xa4, 0x42, -- Magic cookie 0xb7, 0xe7, 0xa7, 0x01, -- } 0xbc, 0x34, 0xd6, 0x86, -- } Transaction ID 0xfa, 0x87, 0xdf, 0xae, -- } 0x80, 0x22, 0x00, 0x10, -- SOFTWARE attribute header 0x53, 0x54, 0x55, 0x4e, -- } 0x20, 0x74, 0x65, 0x73, -- } User-agent... 0x74, 0x20, 0x63, 0x6c, -- } ...name 0x69, 0x65, 0x6e, 0x74, -- } 0x00, 0x24, 0x00, 0x04, -- PRIORITY attribute header 0x6e, 0x00, 0x01, 0xff, -- ICE priority value 0x80, 0x29, 0x00, 0x08, -- ICE-CONTROLLED attribute header 0x93, 0x2f, 0xf9, 0xb1, -- } Pseudo-random tie breaker... 0x51, 0x26, 0x3b, 0x36, -- } ...for ICE control 0x00, 0x06, 0x00, 0x09, -- USERNAME attribute header 0x65, 0x76, 0x74, 0x6a, -- } 0x3a, 0x68, 0x36, 0x76, -- } Username (9 bytes) and padding (3 bytes) 0x59, 0x20, 0x20, 0x20, -- } 0x00, 0x08, 0x00, 0x14, -- MESSAGE-INTEGRITY attribute header 0x9a, 0xea, 0xa7, 0x0c, -- } 0xbf, 0xd8, 0xcb, 0x56, -- } 0x78, 0x1e, 0xf2, 0xb5, -- } HMAC-SHA1 fingerprint 0xb2, 0xd3, 0xf2, 0x49, -- } 0xc1, 0xb5, 0x71, 0xa2, -- } 0x80, 0x28, 0x00, 0x04, -- FINGERPRINT attribute header 0xe5, 0x7a, 0x3b, 0xcf -- CRC32 fingerprint ] -- | 2.2. Sample IPv4 Response -- -- Password: "VOkJxbRl1RmTxUk/WvJxBt" (without quotes) -- Software name: "test vector" (without quotes) -- Mapped address: 192.0.2.1 port 32853 -- sampleIPv4Response :: ByteString sampleIPv4Response = ByteString.pack [ 0x01, 0x01, 0x00, 0x3c, -- Response type and message length 0x21, 0x12, 0xa4, 0x42, -- Magic cookie 0xb7, 0xe7, 0xa7, 0x01, -- } 0xbc, 0x34, 0xd6, 0x86, -- } Transaction ID 0xfa, 0x87, 0xdf, 0xae, -- } 0x80, 0x22, 0x00, 0x0b, -- SOFTWARE attribute header 0x74, 0x65, 0x73, 0x74, -- } 0x20, 0x76, 0x65, 0x63, -- } UTF-8 server name 0x74, 0x6f, 0x72, 0x20, -- } 0x00, 0x20, 0x00, 0x08, -- XOR-MAPPED-ADDRESS attribute header 0x00, 0x01, 0xa1, 0x47, -- Address family (IPv4) and xor'd mapped port number (32853) 0xe1, 0x12, 0xa6, 0x43, -- Xor'd mapped IPv4 address (192.0.2.1) 0x00, 0x08, 0x00, 0x14, -- MESSAGE-INTEGRITY attribute header 0x2b, 0x91, 0xf5, 0x99, -- } 0xfd, 0x9e, 0x90, 0xc3, -- } 0x8c, 0x74, 0x89, 0xf9, -- } HMAC-SHA1 fingerprint 0x2a, 0xf9, 0xba, 0x53, -- } 0xf0, 0x6b, 0xe7, 0xd7, -- } 0x80, 0x28, 0x00, 0x04, -- FINGERPRINT attribute header 0xc0, 0x7d, 0x4c, 0x96 -- CRC32 fingerprint ] -- | 2.3. Sample IPv6 Response -- -- Password: "VOkJxbRl1RmTxUk/WvJxBt" (without quotes) -- Software name: "test vector" (without quotes) -- Mapped address: 2001:db8:1234:5678:11:2233:4455:6677 port 32853 -- sampleIPv6Response :: ByteString sampleIPv6Response = ByteString.pack [ 0x01, 0x01, 0x00, 0x48, -- Response type and message length 0x21, 0x12, 0xa4, 0x42, -- Magic cookie 0xb7, 0xe7, 0xa7, 0x01, -- } 0xbc, 0x34, 0xd6, 0x86, -- } Transaction ID 0xfa, 0x87, 0xdf, 0xae, -- } 0x80, 0x22, 0x00, 0x0b, -- SOFTWARE attribute header 0x74, 0x65, 0x73, 0x74, -- } 0x20, 0x76, 0x65, 0x63, -- } UTF-8 server name 0x74, 0x6f, 0x72, 0x20, -- } 0x00, 0x20, 0x00, 0x14, -- XOR-MAPPED-ADDRESS attribute header 0x00, 0x02, 0xa1, 0x47, -- Address family (IPv6) and xor'd mapped port number 0x01, 0x13, 0xa9, 0xfa, -- } 0xa5, 0xd3, 0xf1, 0x79, -- } Xor'd mapped IPv6 address 0xbc, 0x25, 0xf4, 0xb5, -- } 0xbe, 0xd2, 0xb9, 0xd9, -- } 0x00, 0x08, 0x00, 0x14, -- MESSAGE-INTEGRITY attribute header 0xa3, 0x82, 0x95, 0x4e, -- } 0x4b, 0xe6, 0x7b, 0xf1, -- } 0x17, 0x84, 0xc9, 0x7c, -- } HMAC-SHA1 fingerprint 0x82, 0x92, 0xc2, 0x75, -- } 0xbf, 0xe3, 0xed, 0x41, -- } 0x80, 0x28, 0x00, 0x04, -- FINGERPRINT attribute header 0xc8, 0xfb, 0x0b, 0x4c -- CRC32 fingerprint ] -- | 2.4. Sample Request with Long-Term Authentication -- -- Username: "<U+30DE><U+30C8><U+30EA><U+30C3><U+30AF><U+30B9>" (without quotes) -- unaffected by SASLprep [RFC4013] processing -- as UTF-8 string: "マトリックス" -- Password: "The<U+00AD>M<U+00AA>tr<U+2168>" and "TheMatrIX" (without quotes) -- respectively before and after SASLprep processing -- Nonce: "f//499k954d6OL34oL9FSTvy64sA" (without quotes) -- Realm: "example.org" (without quotes) sampleReqWithLongTermAuth :: ByteString sampleReqWithLongTermAuth = ByteString.pack [ 0x00, 0x01, 0x00, 0x60, -- Request type and message length 0x21, 0x12, 0xa4, 0x42, -- Magic cookie 0x78, 0xad, 0x34, 0x33, -- } 0xc6, 0xad, 0x72, 0xc0, -- } Transaction ID 0x29, 0xda, 0x41, 0x2e, -- } 0x00, 0x06, 0x00, 0x12, -- USERNAME attribute header 0xe3, 0x83, 0x9e, 0xe3, -- } 0x83, 0x88, 0xe3, 0x83, -- } 0xaa, 0xe3, 0x83, 0x83, -- } Username value (18 bytes) and padding (2 bytes) 0xe3, 0x82, 0xaf, 0xe3, -- } 0x82, 0xb9, 0x00, 0x00, -- } 0x00, 0x15, 0x00, 0x1c, -- NONCE attribute header 0x66, 0x2f, 0x2f, 0x34, -- } 0x39, 0x39, 0x6b, 0x39, -- } 0x35, 0x34, 0x64, 0x36, -- } 0x4f, 0x4c, 0x33, 0x34, -- } Nonce value 0x6f, 0x4c, 0x39, 0x46, -- } 0x53, 0x54, 0x76, 0x79, -- } 0x36, 0x34, 0x73, 0x41, -- } 0x00, 0x14, 0x00, 0x0b, -- REALM attribute header 0x65, 0x78, 0x61, 0x6d, -- } 0x70, 0x6c, 0x65, 0x2e, -- } Realm value (11 bytes) and padding (1 byte) 0x6f, 0x72, 0x67, 0x00, -- } 0x00, 0x08, 0x00, 0x14, -- MESSAGE-INTEGRITY attribute header 0xf6, 0x70, 0x24, 0x65, -- } 0x6d, 0xd6, 0x4a, 0x3e, -- } 0x02, 0xb8, 0xe0, 0x71, -- } HMAC-SHA1 fingerprint 0x2e, 0x85, 0xc9, 0xa2, -- } 0x8c, 0xa8, 0x96, 0x66 -- } ]
oherrala/haskell-stun
test/RFC5769.hs
mit
6,622
0
6
1,515
1,412
976
436
116
1
{- | Module : Infinitable Description : Provides a datatype and instances for possibly-infinite numbers, designed to wrap any unbounded numeric type. Copyright : (c) 2013 Kenneth Foner License : The MIT License (MIT) Maintainer : kenny.foner@gmail.com Stability : experimental Portability : portable -} module Infinitable where import Data.Ord data Infinitable a = NegInfty | Finite a | Infinity | Indeterminate deriving ( Eq ) instance Bounded (Infinitable a) where minBound = NegInfty maxBound = Infinity mFromEnum :: (Enum a) => Infinitable a -> Maybe Int mFromEnum (Finite x) = Just $ fromEnum x mFromEnum _ = Nothing instance (Enum a, Ord a) => Enum (Infinitable a) where -- Makes an integer an Infinitable number toEnum = Finite . toEnum -- Any type of infinity can't be represented as an integer fromEnum (Finite a) = fromEnum a fromEnum Infinity = error "fromEnum: can't represent infinity as a (finite) integer" fromEnum NegInfty = error "fromEnum: can't represent negative infinity as a (finite) integer" fromEnum Indeterminate = error "fromEnum: can't represent an indeterminate value as an integer" -- Successors succ (Finite n) = Finite (succ n) succ infinity = infinity -- Predecessors pred (Finite n) = Finite (pred n) pred infinity = infinity -- Sequences enumFromThen x y = enumFromThenTo x y Infinity enumFromTo x z = enumFromThenTo x (succ x) Infinity enumFromThenTo Indeterminate _ _ = [Indeterminate] enumFromThenTo x Indeterminate _ = [x,Indeterminate] enumFromThenTo x y Indeterminate = enumFromThen x y enumFromThenTo (Finite x) (Finite y) (Finite z) = map Finite [x, y .. z] enumFromThenTo (Finite x) (Finite y) Infinity | y >= x = map Finite [x, y ..] | otherwise = [] enumFromThenTo (Finite x) (Finite y) NegInfty | y <= x = map Finite [x, y ..] | otherwise = [] enumFromThenTo (Finite x) Infinity (Finite z) | x <= z = [Finite x] | otherwise = [] enumFromThenTo (Finite x) NegInfty (Finite z) | x >= z = [Finite x] | otherwise = [] enumFromThenTo (Finite x) Infinity Infinity = [Finite x,Infinity] enumFromThenTo (Finite _) Infinity NegInfty = [] enumFromThenTo (Finite _) NegInfty Infinity = [] enumFromThenTo (Finite x) NegInfty NegInfty = [Finite x,NegInfty] enumFromThenTo Infinity (Finite y) (Finite z) | y >= z = [Infinity,Finite y] | otherwise = [Infinity] enumFromThenTo NegInfty (Finite y) (Finite z) | y <= z = [NegInfty,Finite y] | otherwise = [NegInfty] enumFromThenTo Infinity (Finite _) Infinity = [Infinity] enumFromThenTo Infinity (Finite y) NegInfty = [Infinity,Finite y,NegInfty] enumFromThenTo NegInfty (Finite y) Infinity = [NegInfty,Finite y,Infinity] enumFromThenTo NegInfty (Finite _) NegInfty = [NegInfty] enumFromThenTo Infinity _ Infinity = [Infinity] enumFromThenTo NegInfty _ NegInfty = [NegInfty] enumFromThenTo Infinity _ NegInfty = repeat Infinity enumFromThenTo NegInfty _ Infinity = repeat NegInfty mCompare :: (Ord a) => Infinitable a -> Infinitable a -> Maybe Ordering mCompare Indeterminate Indeterminate = Just EQ mCompare Indeterminate _ = Nothing mCompare _ Indeterminate = Nothing mCompare x y = Just $ compare x y instance (Ord a) => Ord (Infinitable a) where compare Indeterminate Indeterminate = EQ compare Infinity Infinity = EQ compare NegInfty NegInfty = EQ compare Indeterminate _ = error "compare: can't compare an indeterminate value with a non-indeterminate value" compare _ Indeterminate = error "compare: can't compare an indeterminate value with a non-indeterminate value" compare NegInfty Infinity = LT compare Infinity NegInfty = GT compare NegInfty (Finite n) = LT compare Infinity (Finite n) = GT compare (Finite n) Infinity = LT compare (Finite n) NegInfty = GT compare (Finite a) (Finite b) = compare a b instance (Show a) => Show (Infinitable a) where show NegInfty = "-Infinity" show Infinity = "Infinity" show Indeterminate = "Indeterminate" show (Finite n) = "Finite " ++ show n instance (Eq a, Num a) => Num (Infinitable a) where -- Addition... -- of finite numbers: Finite a + Finite b = Finite (a + b) -- of infinite numbers: NegInfty + NegInfty = NegInfty NegInfty + Infinity = Indeterminate Infinity + Infinity = Infinity -- of mixed numbers: Infinity + Finite n = Infinity NegInfty + Finite n = NegInfty -- for indeterminates Indeterminate + _ = Indeterminate -- switch operands: a + b = b + a -- Multiplication... -- of finite numbers: Finite a * Finite b = Finite (a * b) -- of infinite numbers: NegInfty * NegInfty = Infinity NegInfty * Infinity = NegInfty Infinity * Infinity = Infinity -- of mixed numbers: _ * Finite 0 = Indeterminate Infinity * Finite n | signum n == 1 = Infinity | otherwise = NegInfty NegInfty * Finite n = Infinity * Finite (negate n) -- for indeterminates: Indeterminate * _ = Indeterminate -- switch operands: a * b = b * a -- Negation... negate (Finite n) = Finite (negate n) negate NegInfty = Infinity negate Infinity = NegInfty negate Indeterminate = Indeterminate -- Absolute value... abs (Finite n) = Finite (abs n) abs Infinity = Infinity abs NegInfty = Infinity abs Indeterminate = Indeterminate -- Signum... signum (Finite n) = Finite (signum n) signum NegInfty = -1 signum Infinity = 1 signum Indeterminate = Indeterminate -- From integer... fromInteger = Finite . fromInteger mToRational :: (Real a) => Infinitable a -> Maybe Rational mToRational (Finite x) = Just $ toRational x mToRational _ = Nothing instance (Real a) => Real (Infinitable a) where toRational (Finite x) = toRational x toRational Infinity = error "toRational: can't represent infinity as a (finite) rational" toRational NegInfty = error "toRational: can't represent negative infinity as a (finite) rational" toRational Indeterminate = error "toRational: can't represent an indeterminate value as an rational" mToInteger :: (Integral a) => Infinitable a -> Maybe Integer mToInteger (Finite x) = Just $ toInteger x mToInteger _ = Nothing instance (Eq a, Integral a) => Integral (Infinitable a) where toInteger (Finite x) = toInteger x toInteger Infinity = error "toInteger: can't represent infinity as a (finite) integer" toInteger NegInfty = error "toInteger: can't represent negative infinity as a (finite) integer" toInteger Indeterminate = error "toInteger: can't represent an indeterminate value as an integer" quotRem _ (Finite 0) = (Indeterminate,Indeterminate) quotRem _ Indeterminate = (Indeterminate,Indeterminate) quotRem Indeterminate _ = (Indeterminate,Indeterminate) quotRem (Finite x) (Finite y) = (Finite (quot x y), Finite (rem x y)) quotRem (Finite _) Infinity = (0,Indeterminate) quotRem (Finite _) NegInfty = (0,Indeterminate) quotRem Infinity (Finite n) | signum n == 1 = (Infinity,Indeterminate) | otherwise = (NegInfty,Indeterminate) quotRem NegInfty (Finite n) | signum n == 1 = (NegInfty,Indeterminate) | otherwise = (Infinity,Indeterminate) quotRem _ _ = (Indeterminate,Indeterminate) instance (Eq a, Fractional a) => Fractional (Infinitable a) where _ / Finite 0 = Indeterminate _ / Indeterminate = Indeterminate Indeterminate / _ = Indeterminate Finite a / Finite b = Finite (a / b) Finite _ / Infinity = 0 Finite _ / NegInfty = 0 Infinity / (Finite n) | signum n == 1 = Infinity | otherwise = NegInfty NegInfty / (Finite n) | signum n == 1 = NegInfty | otherwise = Infinity _ / _ = Indeterminate -- Reciprocals... recip (Finite 0) = Indeterminate recip (Finite n) = Finite (recip n) recip Indeterminate = Indeterminate recip _ = 0 -- From rationals... fromRational = Finite . fromRational eitherFromInf :: Infinitable a -> Either (Infinitable a) a eitherFromInf (Finite number) = Right number eitherFromInf infinity = Left infinity
kwf/Infinitable
src/infinitable.hs
mit
8,956
0
10
2,601
2,645
1,309
1,336
155
1
{-# LANGUAGE ExistentialQuantification #-} module HSS.Datatypes where import Data.ByteString.Char8 import Data.String import Control.Applicative import Control.Monad import Data.Monoid import Text.Printf class PropertyName a where displayName :: a -> ByteString instance PropertyName ByteString where displayName = id class PropertyValue a where displayValue :: a -> ByteString instance PropertyValue ByteString where displayValue = id instance PropertyValue Float where displayValue = pack . printf "%f" instance PropertyValue Integer where displayValue = pack . show -- TODO: expand to include all valid css selectors data Selector = Root | Selector { s_tag :: Maybe ByteString , s_classes :: [ByteString] , s_ids :: [ByteString] , s_pseudo_element :: Maybe ByteString } deriving (Eq, Show, Ord) combine :: Selector -> Selector -> Selector combine Root _ = Root combine _ Root = Root combine s1 s2 = Selector { s_tag = (s_tag s1) <|> (s_tag s2) , s_classes = (s_classes s1) ++ (s_classes s2) , s_ids = (s_ids s1) ++ (s_ids s2) , s_pseudo_element = (s_pseudo_element s1) <|> (s_pseudo_element s2) } instance Monoid Selector where mempty = Selector { s_tag = Nothing , s_classes = [] , s_ids = [] , s_pseudo_element = Nothing } mappend = combine data CssM a = Empty | forall b. AddRule Selector (CssM b) | forall b c. Append (CssM b) (CssM c) | forall b c. (PropertyName b, PropertyValue c) => AddProperty b c type Css = CssM () instance Monoid a => Monoid (CssM a) where mempty = Empty mappend = Append instance Monad CssM where return _ = Empty (>>) = Append c1 >>= f = c1 >> f (error "_|_")
bhamrick/HSS
HSS/Datatypes.hs
mit
1,927
0
9
595
550
304
246
52
1
----------------------------------------------------------------------------- -- -- Module : ESTest -- Copyright : -- License : AllRightsReserved -- -- Maintainer : -- Stability : -- Portability : -- -- | This is test code for thee equation solver (MEquSol and MEquUlt). -- It defines terms and the typeclasses that adapt to the equation solver. -- There is small test (but you need to hand verify the correctness of the result). ----------------------------------------------------------------------------- module ESTest ( testEq1 ) where import MEquSol import MEquUtl -- (VKey(..),VD,FreeVarEq(..), VarDiff(..)) import PrivateUtl(fixEither,fixEither2) import Data.List(length, nub, null, map,foldl,concatMap, insertBy,foldr) import Data.Ord import Prelude -- | A simple boolean term structure data Term = Var VKey | Not Term | Const Bool | And [Term] | Or [Term] deriving (Eq, Ord, Show) -- | Equations on terms data Equ = Equ Term deriving Show -- | Return possible values of a term: (false, false) no values, (true, false) might be true. potValue:: Term -> (Bool,Bool) potValue (Var _) = (True,True) potValue (Not term) = (fv, tv) where (tv, fv) = potValue term potValue (Const True) = (True, False) potValue (Const False) = (False, True) potValue (And terms) = foldl fadd (True, False) terms where fadd (t1,f1) term = let (t2, f2) = potValue term in (t1 && t2, f1 || f2) potValue (Or terms) = foldl fadd (False, True) terms where fadd (t1,f1) term = let (t2, f2) = potValue term in (t1 || t2, f1 && f2) -- | Equations that still need resolution type EquHeap = [Equ] -- | A "partial" solution is a list of variable assignments to terms -- and equations that still need resolution. type Sol = ([VD Term],EquHeap) -- | The empty solution: no vars, no equations. emptySol = ([],[])::Sol instance Equation Equ where -- | An equation is valid when it can still can be true. valid (Equ term) = case tv of True -> True False -> False where (tv, _) = potValue term instance FreeVarEq Equ where -- | Collect, and counts, free variables of an equation freeVars (Equ term) = fv term where fv (Var vk) = singletonVKeySet vk fv (Not t) = fv t fv (Const _) = emptyVKeySet fv (And terms) = addVKeySets (Data.List.map fv terms) fv (Or terms) = addVKeySets (Data.List.map fv terms) -- | Simple complexity metric: the number of free variables of the equation. complexity eq = sizeVKeySet (freeVars eq) instance SettableVar Equ (VD Term) where -- | setVar vd (Equ term) = Equ (rewrite' term) where rewrite' t@(Var vk) = case getVarDiff vd of (vk1, Left vk2) | (vk==vk1) -> (Var vk2) (vk1, Right vt) | (vk==vk1) -> vt _ -> t rewrite' (Not x) = Not (rewrite' x) rewrite' t@(Const _) = t rewrite' (And terms) = And (Data.List.map rewrite' terms) rewrite' (Or terms) = Or (Data.List.map rewrite' terms) instance EqSystem Equ (VD Term) where solveOne (Equ (Var fv)) = Just [bindVar (fv, (Const True))] solveOne (Equ (Not(Var fv))) = Just [bindVar (fv, (Const False))] solveOne eq = fmap simple (minKeyVKeySet (freeVars eq)) where simple fv = [bindVar (fv, (Const True)), bindVar (fv, (Const False))] instance Heap Sol Equ where insert eq (m,l) = (m, Data.List.insertBy (\eq2 eq1 -> compare (complexity eq1) (complexity eq2)) eq l) insertMany eql sol = Data.List.foldr insert sol eql deCons (_,[]) = Nothing deCons (m,(h:t)) = Just (h,(m,t)) instance SettableVar [Equ] (VD Term) where setVar vd l = Data.List.map (setVar vd) l instance SettableVar Sol (VD Term) where setVar vd (m,el) = (setVar vd m, setVar vd el) type Space = [Sol] instance Heap Space Sol where insert sol l = Data.List.insertBy (\(m2,_) (m1,_) -> compare (length m1) (length m2)) sol l insertMany eql sol = Data.List.foldr insert sol eql deCons [] = Nothing deCons (h:t) = Just (h,t) dummyEqu = Equ (Const False) dummyVD = (VKey 0,Left (VKey 0))::(VD Term) instance Projectable Sol Equ (VD Term) where reduce vd sys = setVar vd sys instance Solver Space Sol Equ (VD Term) testEq1 = let meq = emptySol -- 1 /\ 2 m1 = insert (Equ (Or([Var (VKey 1),(Var (VKey 2))]))) meq -- ~1 /\ ~2 m2 = insert (Equ (Or([Not(Var (VKey 1)),Not(Var (VKey 2))]))) m1 -- 2 /\ 3 m3 = insert (Equ (Or([Var (VKey 2),(Var (VKey 3))]))) m2 -- 3 /\ ~4 m4 = insert (Equ (Or([Not(Var (VKey 3)),Not(Var (VKey 4))]))) m3 in MEquSol.solve [m4] [] --testEq1 = -- let meq = emptySol -- -- 1 -- m1 = insert (Equ (Var (VKey 1))) meq -- -- ~1 -- m2 = insert (Equ (Not(Var (VKey 1)))) m1 -- -- 2 /\ 3 -- m3 = insert (Equ (Or([Var (VKey 2),(Var (VKey 3))]))) m2 -- -- 3 /\ ~4 -- m4 = insert (Equ (Or([Not(Var (VKey 3)),Not(Var (VKey 4))]))) m3 -- in MEquSol.solve [m4] [] -- --
equational/JL2012
HaskellExamples/src/ESTest.hs
mit
5,138
0
20
1,339
1,812
974
838
-1
-1
module Handler.CreateThread where import Authentification (getValidNickBySession) import Captcha import CustomForms (threadMForm) import Helper (spacesToMinus) import Import import Widgets (accountLinksW, postWidget) getCreateThreadR :: Handler Html getCreateThreadR = do -- captcha equation <- liftIO $ createMathEq setSession "captcha" $ eqResult equation -- form (widget, enctype) <- generateFormPost $ threadMForm equation "Create thread" Nothing Nothing -- widgets let headline = "Create a new thread" :: Text midWidget = postWidget enctype widget defaultLayout $(widgetFile "mid-layout") postCreateThreadR :: Handler Html postCreateThreadR = do -- captcha equation <- liftIO $ createMathEq captcha <- getCaptchaBySession setSession "captcha" $ eqResult equation -- widgets let headline = "Create a new thread" :: Text -- form ((result, widget), enctype) <- runFormPost $ threadMForm equation "Create thread" Nothing Nothing case result of (FormSuccess mthread) -> do (mtitle, user) <- runDB $ do mtitle <- getBy $ UniqueTitle $ threadTitle $ mthread Nothing user <- getValidNickBySession return (mtitle, user) let thread = mthread user case (mtitle, (threadCaptcha thread == captcha)) of (Nothing, True) -> do (_) <- runDB $ insert thread redirect $ ThreadR (spacesToMinus $ threadTitle thread) ((Just _), _) -> do let midWidget = [whamlet|<span .simpleBlack> Error: Sorry, this thread already exists |] >> postWidget enctype widget defaultLayout $(widgetFile "mid-layout") (_, _) -> do let midWidget = [whamlet|<span .simpleBlack> Error: Sorry, the captcha is wrong |] >> postWidget enctype widget defaultLayout $(widgetFile "mid-layout") (FormFailure (err:_)) -> do let midWidget = [whamlet|<span .simpleBlack> Error: #{err} |] >> postWidget enctype widget defaultLayout $(widgetFile "mid-layout") (_) -> do let midWidget = [whamlet|<span .simpleBlack> Error: Something went wrong, please try again |] >> postWidget enctype widget defaultLayout $(widgetFile "mid-layout")
cirquit/HaskellPie
HaskellPie/Handler/CreateThread.hs
mit
2,438
0
21
723
598
303
295
-1
-1
module Proteome.Data.ProjectName where newtype ProjectName = ProjectName Text deriving stock (Eq, Show, Generic) deriving newtype (MsgpackEncode, MsgpackDecode, IsString)
tek/proteome
packages/proteome/lib/Proteome/Data/ProjectName.hs
mit
176
0
6
23
49
28
21
-1
-1
{----------------------------------------------------------------------------------------- Module name: Smutt- a web server Made by: Tomas Möre 2014 Usage: Pass a function of type (HTTPRequest -> IO Response) to the |serve| fucntion exported by module yor function is now responsible for putting together the response. An empty response will be treated as a |200 OK| without any content This library uses STRICT strings internally. Notes for editor: Many functions are splitted into two parts, Any function with the postfix "Real" has a initating function with the same name but without the postfix ------------------------------------------------------------------------------------------} {-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} module Smutt.Util.TCPServer ( makeTCPServer , ServerThunk , module Smutt.HTTP.Server.Settings , ) where import qualified Control.Exception as E import System.IO import System.IO.Error import Control.Concurrent import Control.Monad import Network.Socket import Data.IORef import Data.Maybe import Data.Either import Smutt.HTTP.Server.Settings import qualified Network.BufferedSocket as BS type ServerThunk = (BS.BufferedSocket -> IO ()) makeTCPServer :: ServerThunk -> ServerSettings -> IO () makeTCPServer thunk serverSettings = withSocketsDo $ do -- create socket sock <- socket AF_INET Stream 0 -- make socket immediately reusable - eases debugging. setSocketOption sock ReuseAddr 1 --setSocketOption sock NoDelay 1 -- listen on TCP port 8000 bindSocket sock (SockAddrInet (port serverSettings) iNADDR_ANY) -- Tells the socket that it can have max 1000 connections listen sock $ maxConnections serverSettings let maybeKeepServingRef = keepServing serverSettings Just keepServingRef = maybeKeepServingRef threadTakeover = do socketData <- accept sock newThread <- forkIO (connectionHandler socketData thunk serverSettings) return () keepGoingFun = do serveAnother <- readIORef keepServingRef if serveAnother then threadTakeover >> keepGoingFun else return () choseServingMethod = case isNothing maybeKeepServingRef of True -> forever threadTakeover False -> keepGoingFun -- Makes sure that whatever happends ce close the socket. choseServingMethod `E.onException` (sClose sock) connectionHandler :: (Socket, SockAddr) -> ServerThunk -> ServerSettings -> IO () connectionHandler fullSock@(sock, sockAddr) thunk settings = do -- Defining a prepared sending procedure. This procedure is sent around to all functions that might need to send data bSocket <- BS.makeBufferedSocket fullSock (readBufferSize settings) (writeBufferSize settings) --getTcpNoDelay sock >>= putStrLn . show case (socketKeepAlive settings) of True -> setSocketOption sock KeepAlive 1 False -> return () thunk bSocket sClose sock where bufferSize = readBufferSize settings
black0range/Smutt
src/Smutt/Util/TCPServer.hs
mit
3,481
0
16
1,010
490
256
234
52
3
{-# LANGUAGE OverloadedStrings #-} module Quotes where import Types import Safe import qualified Data.Text as T import qualified Data.Dates as D import qualified Data.HashMap.Strict as H import Data.Aeson import Data.Aeson.Types (Parser) import Control.Monad import Control.Applicative import qualified Data.ByteString.Lazy as B jsonIO = B.readFile "quote.json" instance FromJSON Query where parseJSON (Object o) = do let o' .! f = case o' H.! f of (Object o'') -> o'' _ -> error $ "Bad field: " ++ T.unpack f Query <$> o .! "query" .: "count" <*> o .! "query" .! "results" .: "quote" parseJSON _ = mzero instance FromJSON Quote where parseJSON (Object o) = do let readField :: (Read a) => T.Text -> Parser a readField f = do v <- o .: f case readMay (T.unpack v) of Nothing -> fail $ "Bad field: " ++ T.unpack f Just r -> return r readDate f = do v <- o .: f case map (readMay . T.unpack) $ T.splitOn "-" v of [Just yyyy,Just mm,Just dd] -> return $ D.DateTime yyyy mm dd 0 0 0 _ -> fail $ "Bad field: " ++ T.unpack f Quote <$> readDate "Date" <*> readField "Open" <*> readField "High" <*> readField "Low" <*> readField "Close" <*> readField "Volume" parseJSON _ = mzero
Dawil/SimplePortfolioOptimizer
src/Quotes.hs
mit
1,408
0
18
446
479
242
237
41
1
module Hpack.Haskell ( isModule , isModuleNameComponent , isQualifiedIdentifier , isIdentifier ) where import Data.Char isModule :: [String] -> Bool isModule name = (not . null) name && all isModuleNameComponent name isModuleNameComponent :: String -> Bool isModuleNameComponent name = case name of x : xs -> isUpper x && all isIdChar xs _ -> False isQualifiedIdentifier :: [String] -> Bool isQualifiedIdentifier name = case reverse name of x : xs -> isIdentifier x && isModule xs _ -> False isIdentifier :: String -> Bool isIdentifier name = case name of x : xs -> isLower x && all isIdChar xs && name `notElem` reserved _ -> False reserved :: [String] reserved = [ "case" , "class" , "data" , "default" , "deriving" , "do" , "else" , "foreign" , "if" , "import" , "in" , "infix" , "infixl" , "infixr" , "instance" , "let" , "module" , "newtype" , "of" , "then" , "type" , "where" , "_" ] isIdChar :: Char -> Bool isIdChar c = isAlphaNum c || c == '_' || c == '\''
sol/hpack
src/Hpack/Haskell.hs
mit
1,048
0
11
258
343
188
155
47
2
import System.Random instance (Random x, Random y, Random z) => Random (x, y,z) where randomR ((x1, y1,z1), (x2, y2,z2)) gen1 = let (x, gen2) = randomR (x1, x2) gen1 (y, gen3) = randomR (y1, y2) gen2 (z, gen4) = randomR (z1, z2) gen3 in ((x, y,z), gen4) random g = ((x,y,z),g3) where (x,g1) = random g (y,g2) = random g1 (z,g3) = random g2 data Coin = Head | Tail deriving (Show, Enum, Bounded) instance Random Coin where randomR (a, b) g = case randomR (fromEnum a, fromEnum b) g of (x, g') -> (toEnum x, g') random g = randomR (minBound, maxBound) g main = do let pair = take 10 $ randomRs ((10,20,30),(60,40,60)) $ mkStdGen 10 :: [(Int,Int,Int)] let rhead = take 100 $ randoms $ mkStdGen 1 :: [(Coin,Coin,Coin)] print rhead
Osager/haskell_lib_cookbook
random/random_examples.hs
gpl-2.0
786
0
14
193
462
256
206
21
1
import Control.Exception import Control.Monad import System.Directory import System.Environment main = do args <- getArgs if null args then error "missing operand" else return () forM args $ \name -> do -- try to remove all the arguments, and print stuff if anything goes wrong res <- try (removeFile name) :: IO (Either SomeException ()) case res of Left ex -> putStrLn $ show ex Right _ -> return ()
tomicm/puh-hash
bin/rm.hs
gpl-2.0
441
0
15
108
140
67
73
14
3
{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PackageImports #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE MultiWayIf #-} import "cryptohash" Crypto.Hash import qualified Data.ByteString.Char8 as C8 import Data.Char import Numeric import Options.Applicative data PasswordData = PasswordData { uniqueKey :: {-# UNPACK #-} !String , salt :: {-# UNPACK #-} !String , passwordLength :: {-# UNPACK #-} !Int } plReader :: ReadM Int plReader = eitherReader $ \arg -> case () of _ | [(r, "")] <- readDec arg , r > 0 && r <= 32 -> return r | otherwise -> Left $ "cannot parse value `" ++ arg ++ "'" argsParser :: Parser PasswordData argsParser = PasswordData <$> argument str (metavar "UNIQUEKEY" <> help "Unique key") <*> argument str (metavar "SALT" <> help "Salt") <*> argument plReader (metavar "PASSWORDLENGTH" <> help "Password length (1 ~ 32)") makePassword :: PasswordData -> String makePassword pd@PasswordData{..} = map intToPasswordChar $ take passwordLength $ (splitto . hashToInt . makeHash) pd where intToPasswordChar :: Integer -> Char intToPasswordChar i | i >= 0 && i <= 9 = chr (48 + fromIntegral i) -- 0..9 | i >= 10 && i <= 35 = chr (87 + fromIntegral i) -- a..z | i >= 36 && i <= 61 = chr (29 + fromIntegral i) -- A..Z | otherwise = error "BUG: intToPasswordChar i out of bound" splitto :: Integer -> [Integer] splitto i = let (q, r) = i `quotRem` 61 in r:splitto q hashToInt :: String -> Integer hashToInt = fst . head . readHex makeHash :: PasswordData -> String makeHash PasswordData{..} = C8.unpack $ digestToHexByteString (hash . C8.pack $ (uniqueKey ++ salt) :: Digest SHA256) main :: IO () main = do passwordData <- execParser ( info (helper <*> argsParser) ( fullDesc <> progDesc "Password generator" <> header "Forget Your Password" ) ) putStrLn $ makePassword passwordData
KenetJervet/mapensee
haskell/tools/ForgetYourPassword.hs
gpl-3.0
2,129
0
15
633
626
320
306
43
1
{-# LANGUAGE OverloadedStrings #-} module InnerEar.Widgets.ScoreGraphs where import Reflex import Reflex.Dom import Data.Map import Control.Monad import qualified Data.Text as T import Data.Monoid((<>)) import Data.Maybe (fromJust) import InnerEar.Types.Frequency import InnerEar.Widgets.Utility import InnerEar.Widgets.Lines import InnerEar.Types.Score import InnerEar.Types.GScore import InnerEar.Widgets.Labels import InnerEar.Widgets.Bars import InnerEar.Widgets.Circles --a list of frequencies (a list for the x axis) xPoints :: [Double] xPoints = [0, 1 .. 10000] -- :: [Frequency] --a list to generate points in the y axis linearGraphYPoints :: [Double] linearGraphYPoints = fmap (\x -> x) xPoints --a list to generate points in the y axis steepGraphYpoints :: [Double] steepGraphYpoints = fmap (\x -> (x*x)) xPoints gradualGrapYpoints :: [Double] gradualGrapYpoints = fmap (\x -> sqrt x) xPoints flatGraphYpoints :: [Double] flatGraphYpoints = fmap (\x -> 100) xPoints --a graph generator for spectral shapes graphGen :: MonadWidget t m => [Double] -> [Double] -> m () graphGen xPoints yPoints= do let xAndYPoints = zip xPoints yPoints shapeLine (constDyn "polyline") xAndYPoints return () --an oval graph generator graphGenOval :: MonadWidget t m => Dynamic t (Maybe GScore) -> m () graphGenOval score = do gamifiedGraphLabel (constDyn "ovalGraphLabel") score ovalScoreBar score return () --a circular graph generator graphGenCircular :: MonadWidget t m => Dynamic t (Maybe GScore) -> m () graphGenCircular score = do gamifiedGraphLabel (constDyn "circularGrapLabel") score percentageCircleGraph score return ()
d0kt0r0/InnerEar
src/InnerEar/Widgets/ScoreGraphs.hs
gpl-3.0
1,681
0
10
275
466
254
212
42
1
module Language.Mulang.Analyzer.FragmentParser ( parseFragment', parseFragment) where import Control.Fallible (orFail) import Language.Mulang import Language.Mulang.Parsers (EitherParser, maybeToEither) import Language.Mulang.Parsers.Haskell import Language.Mulang.Parsers.C (parseC) import Language.Mulang.Parsers.JavaScript (parseJavaScript) import Language.Mulang.Parsers.Prolog (parseProlog) import Language.Mulang.Parsers.Java (parseJava) import Language.Mulang.Parsers.Python (parsePython, parsePython2, parsePython3) import Language.Mulang.Analyzer.Analysis (Fragment(..), Language(..)) import Language.Mulang.Transform.Normalizer (normalize, NormalizationOptions) parseFragment' :: Maybe NormalizationOptions -> Fragment -> Expression parseFragment' options = orFail . parseFragment options parseFragment :: Maybe NormalizationOptions -> Fragment -> Either String Expression parseFragment options = fmap (normalizerFor options) . parse where parse (CodeSample language content) = (parserFor language) content parse (MulangSample (Just ast)) = Right ast parse (MulangSample Nothing) = Left "missing AST" parserFor :: Language -> EitherParser parserFor C = parseC parserFor Haskell = parseHaskell parserFor Java = parseJava parserFor JavaScript = maybeToEither parseJavaScript parserFor Prolog = parseProlog parserFor Python = parsePython parserFor Python2 = parsePython2 parserFor Python3 = parsePython3 normalizerFor :: Maybe NormalizationOptions -> (Expression -> Expression) normalizerFor Nothing = id normalizerFor (Just options) = normalize options
mumuki/mulang
src/Language/Mulang/Analyzer/FragmentParser.hs
gpl-3.0
1,751
0
11
344
416
231
185
33
3
{- Merch.Race.Top - Main menu and main game code. Copyright 2013 Alan Manuel K. Gloria This file is part of Merchant's Race. Merchant's Race is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Merchant's Race is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Merchant's Race. If not, see <http://www.gnu.org/licenses/>. -} {- Top-level module for Merchant's Race. -} module Merch.Race.Top ( tryLoadResources , mainGame , GameResources ) where import Prelude hiding(catch) import Merch.Race.GameResources import Merch.Race.Ruleset(Ruleset) import Merch.Race.Ruleset.Load import Merch.Race.Top.MapGen import Merch.Race.UI.Button import qualified Merch.Race.UI.DrawingCombinators as Draw import Merch.Race.UI.DrawingCombinators((%%)) import Merch.Race.UI.Drawing import Merch.Race.UI.Minimap import Paths_merchrace import Control.Exception import Data.IORef import Data.Monoid import qualified Data.Set as Set import qualified Graphics.UI.GLUT as GLUT import Graphics.UI.GLUT(($=)) tryLoadResources :: IO (Either String GameResources) tryLoadResources = catch (loadResources >>= return . Right) (return . Left . (show :: SomeException -> String)) loadResources :: IO GameResources loadResources = do ruleset <- getDataFileName "ruleset" >>= loadRuleset font <- getDataFileName "FreeSans.ttf" >>= Draw.openFont return $ GameResources ruleset font mainGame :: GameResources -> Screen mainGame gr aspect = core where bc = mkButtonConfig [ButtonFont $ grFont gr] mkButton = button bc exitButton = mkButton (0, -0.65) "Exit" exitScreen newButton = mkButton (0, 0.6) "New Game" $ newGameScreen gr loadButton = mkButton (0, 0.3) "Load Game" (notImplemented gr coreScreen) hiButton = mkButton (0, 0.0) "High Score" (notImplemented gr coreScreen) buttons = mconcat [exitButton, newButton, loadButton, hiButton] top = buttons core (KeyDown _ '\ESC') = GLUT.leaveMainLoop >> return NoTopReaction core ReDo = do return $ SetDrawing top core _ = return NoTopReaction coreScreen aspect' | aspect == aspect' = core | otherwise = \_ -> return $ SetScreen $ mainGame gr notImplemented :: GameResources -> Screen -> Screen notImplemented gr src aspect = core where font = grFont gr bc = mkButtonConfig [ButtonFont font] exitButton = button bc (0, -0.75) "Exit" src msgText = "This part is not yet implemented!" message = Draw.text font msgText width = Draw.textWidth font msgText messageCentered = Draw.translate (-1, 0) %% Draw.scale (2/width) (2/width) %% message top = mconcat [ exitButton , drawingStatic messageCentered ] core (KeyDown _ '\ESC') = return $ SetScreen src core ReDo = return $ SetDrawing top core _ = return NoTopReaction exitScreen :: Screen exitScreen aspect _ = GLUT.leaveMainLoop >> return NoTopReaction newGameScreen :: GameResources -> Screen newGameScreen gr _ _ = return $ SetScreen screen1 where screen1 = mapgenScreen gr screen2 (mainGame gr) screen2 tmap = displayTMap tmap -- Temporary screen to just display the resulting map. displayTMap tmap aspect = core where bc = mkButtonConfig [ButtonFont $ grFont gr] drawing = drawingStatic $ minimap tmap Set.empty core ReDo = return $ SetDrawing drawing core (KeyDown _ '\ESC') = return $ SetScreen $ mainGame gr core _ = return NoTopReaction
AmkG/merchants-race
Merch/Race/Top.hs
gpl-3.0
3,948
0
12
847
926
497
429
75
3
{- $Id$ Find the sum of all even-valued Fibonacci numbers until N. Solution to http://projecteuler.net/index.php?section=problems&id=2 Copyright 2007 Victor Engmark This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. -} module Main( main ) where import System( getArgs, getProgName ) fibs :: Num num => [num] fibs = 0 : 1 : [ last + next_last | (last, next_last) <- zip fibs (tail fibs) ] evens :: (Integral integral) => [integral] -> [integral] evens list = filter even list nthFibonacci :: (Num num) => Int -> num nthFibonacci number = fibs !! number fibonaccisUntil :: (Num numord, Ord numord) => numord -> [numord] fibonaccisUntil number = takeWhile (<= number) fibs evenFibonaccisUntil :: (Integral integral) => integral -> [integral] evenFibonaccisUntil number = takeWhile (<= number) (evens fibs) sumEvenFibonaccisUntil :: (Integral integral) => integral -> integral sumEvenFibonaccisUntil number = sum (evenFibonaccisUntil number) usageAndExit :: IO () usageAndExit = do progName <- getProgName putStrLn $ "Usage: runghc \"" ++ progName ++ "\" [integers]" putStrLn $ "where [integers] is a space separated list." main :: IO () main = do args <- getArgs case args of [] -> usageAndExit integers -> putStr . unlines . map (show . sumEvenFibonaccisUntil . read) $ integers
l0b0/Project-Euler
2 - Sum of even Fibonacci numbers up to N.hs
gpl-3.0
1,924
0
15
378
384
203
181
25
2
import System.Environment import System.IO import System.Directory main = do (fileName:_) <- getArgs fileExists <- doesFileExist fileName if fileExists then do contents <- readFile fileName putStrLn $ "This file has " ++ show (length (lines contents))++" lines!" else do putStrLn "The file doesn't exist!"
lamontu/learning_haskell
exist_check.hs
gpl-3.0
347
0
16
84
102
49
53
11
2
{-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE NamedFieldPuns #-} module Trello.Client ( ClientEnv(..) , Key(..) , Token(..) , production , runTrelloClient -- * API Methods , getMyBoards ) where import Control.Monad.Except (ExceptT, mapExceptT) import Control.Monad.IO.Class (MonadIO, liftIO) import Control.Monad.Reader (ReaderT, ask, runReaderT) import Control.Monad.Trans (lift) import Network.HTTP.Client (Manager) import Servant.Client (BaseUrl, ServantError) import Trello.API (Key(..), Token(..)) import Trello.API.Types (Board) import Trello.Client.BaseUrl (production) import qualified Trello.Client.Internal as I data ClientEnv = ClientEnv { manager :: Manager , baseurl :: BaseUrl , key :: Key , token :: Token } newtype Client a = Client (ReaderT ClientEnv (ExceptT ServantError IO) a) deriving (Applicative, Functor, Monad, MonadIO) runTrelloClient :: MonadIO io => ClientEnv -> Client a -> ExceptT ServantError io a runTrelloClient clientEnv (Client areader) = mapExceptT liftIO $ runReaderT areader clientEnv getMyBoards :: Client [Board] getMyBoards = Client $ do ClientEnv{manager, baseurl, key, token} <- ask lift $ I.getMyBoards (Just key) (Just token) manager baseurl
cblp/tasknight-dashboard
trello-client/lib/Trello/Client.hs
gpl-3.0
1,304
0
11
258
383
226
157
36
1
{- Copyright (C) 2013 Ellis Whitehead This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/> -} module Utils ( Validation , concatEithers1 , concatEithersN , eitherStringToValidation , maybeToEither , maybeToValidation , strip , substitute , substituteInList , toStdErr ) where import System.IO (hPutStrLn, stderr) import qualified Data.Text as T type Validation a = Either [String] a -- Extract errors concatEithers1 :: [Either a b] -> Either [a] [b] concatEithers1 xs = concatEithers1' xs [] [] concatEithers1' :: [Either a b] -> [a] -> [b] -> Either [a] [b] concatEithers1' [] [] bs = Right (reverse bs) concatEithers1' [] as _ = Left (reverse as) concatEithers1' ((Left a):xs) as bs = concatEithers1' xs (a:as) bs concatEithers1' ((Right b):xs) as bs = concatEithers1' xs as (b:bs) -- Extract errors concatEithersN :: [Either [a] b] -> Either [a] [b] concatEithersN xs = concatEithersN' xs [] [] concatEithersN' :: [Either [a] b] -> [a] -> [b] -> Either [a] [b] concatEithersN' [] [] bs = Right (reverse bs) concatEithersN' [] as _ = Left (reverse as) concatEithersN' ((Left as'):xs) as bs = concatEithersN' xs (as'++as) bs concatEithersN' ((Right b):xs) as bs = concatEithersN' xs as (b:bs) eitherStringToValidation :: Either String a => Validation a eitherStringToValidation (Left msg) = Left [msg] eitherStringToValidation (Right x) = Right x maybeToEither = flip maybe Right . Left maybeToValidation :: Maybe a -> [String] -> Validation a maybeToValidation m msgs = case m of Just x -> Right x Nothing -> Left msgs strip :: String -> String strip s = (T.unpack . T.strip . T.pack) s substitute :: (Eq a) => a -> a -> a -> a substitute needle new actual = if needle == actual then new else actual substituteInList :: (Eq a) => a -> a -> [a] -> [a] substituteInList needle new l = map (substitute needle new) l toStdErr x = hPutStrLn stderr $ show x
ellis/OnTopOfThings
old-20150308/src/Utils.hs
gpl-3.0
2,440
0
9
435
798
418
380
-1
-1
{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.ConsumerSurveys.Types -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.ConsumerSurveys.Types ( -- * Service Configuration consumerSurveysService -- * OAuth Scopes , userInfoEmailScope , consumerSurveysReadOnlyScope , consumerSurveysScope -- * SurveysListResponse , SurveysListResponse , surveysListResponse , slrRequestId , slrTokenPagination , slrPageInfo , slrResources -- * MobileAppPanel , MobileAppPanel , mobileAppPanel , mapOwners , mapCountry , mapName , mapMobileAppPanelId , mapLanguage , mapIsPublicPanel -- * TokenPagination , TokenPagination , tokenPagination , tpNextPageToken , tpPreviousPageToken -- * ResultsGetRequest , ResultsGetRequest , resultsGetRequest , rgrResultMask -- * MobileAppPanelsListResponse , MobileAppPanelsListResponse , mobileAppPanelsListResponse , maplrRequestId , maplrTokenPagination , maplrPageInfo , maplrResources -- * PageInfo , PageInfo , pageInfo , piResultPerPage , piTotalResults , piStartIndex -- * FieldMask , FieldMask , fieldMask , fmId , fmFields -- * Survey , Survey , survey , sAudience , sState , sOwners , sWantedResponseCount , sSurveyURLId , sCost , sRejectionReason , sCustomerData , sQuestions , sTitle , sDescription -- * SurveysStartResponse , SurveysStartResponse , surveysStartResponse , ssrRequestId -- * SurveysStopResponse , SurveysStopResponse , surveysStopResponse , sRequestId -- * ResultsMask , ResultsMask , resultsMask , rmProjection , rmFields -- * SurveyRejection , SurveyRejection , surveyRejection , srExplanation , srType -- * SurveyResults , SurveyResults , surveyResults , srStatus , srSurveyURLId -- * SurveysStartRequest , SurveysStartRequest , surveysStartRequest , ssrMaxCostPerResponseNanos -- * SurveysDeleteResponse , SurveysDeleteResponse , surveysDeleteResponse , sdrRequestId -- * SurveyQuestionImage , SurveyQuestionImage , surveyQuestionImage , sqiData , sqiURL , sqiAltText -- * SurveyAudience , SurveyAudience , surveyAudience , saCountry , saAges , saLanguages , saGender , saMobileAppPanelId , saCountrySubdivision , saPopulationSource -- * SurveyCost , SurveyCost , surveyCost , scCurrencyCode , scNanos , scMaxCostPerResponseNanos , scCostPerResponseNanos -- * SurveyQuestion , SurveyQuestion , surveyQuestion , sqImages , sqAnswers , sqSingleLineResponse , sqMustPickSuggestion , sqSentimentText , sqThresholdAnswers , sqHasOther , sqOpenTextSuggestions , sqVideoId , sqLastAnswerPositionPinned , sqAnswerOrder , sqOpenTextPlaceholder , sqType , sqUnitOfMeasurementLabel , sqHighValueLabel , sqQuestion , sqNumStars , sqLowValueLabel ) where import Network.Google.ConsumerSurveys.Types.Product import Network.Google.ConsumerSurveys.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v2' of the Consumer Surveys API. This contains the host and root path used as a starting point for constructing service requests. consumerSurveysService :: ServiceConfig consumerSurveysService = defaultService (ServiceId "consumersurveys:v2") "www.googleapis.com" -- | View your email address userInfoEmailScope :: Proxy '["https://www.googleapis.com/auth/userinfo.email"] userInfoEmailScope = Proxy -- | View the results for your surveys consumerSurveysReadOnlyScope :: Proxy '["https://www.googleapis.com/auth/consumersurveys.readonly"] consumerSurveysReadOnlyScope = Proxy -- | View and edit your surveys and results consumerSurveysScope :: Proxy '["https://www.googleapis.com/auth/consumersurveys"] consumerSurveysScope = Proxy
brendanhay/gogol
gogol-consumersurveys/gen/Network/Google/ConsumerSurveys/Types.hs
mpl-2.0
4,509
0
7
1,080
497
337
160
138
1
{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.Analytics.Data.Mcf.Get -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay <brendan.g.hay@gmail.com> -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns Analytics Multi-Channel Funnels data for a view (profile). -- -- /See:/ <https://developers.google.com/analytics/ Google Analytics API Reference> for @analytics.data.mcf.get@. module Network.Google.Resource.Analytics.Data.Mcf.Get ( -- * REST Resource DataMcfGetResource -- * Creating a Request , dataMcfGet , DataMcfGet -- * Request Lenses , dmgMetrics , dmgSamplingLevel , dmgFilters , dmgIds , dmgEndDate , dmgSort , dmgDimensions , dmgStartIndex , dmgMaxResults , dmgStartDate ) where import Network.Google.Analytics.Types import Network.Google.Prelude -- | A resource alias for @analytics.data.mcf.get@ method which the -- 'DataMcfGet' request conforms to. type DataMcfGetResource = "analytics" :> "v3" :> "data" :> "mcf" :> QueryParam "ids" Text :> QueryParam "start-date" Text :> QueryParam "end-date" Text :> QueryParam "metrics" Text :> QueryParam "samplingLevel" DataMcfGetSamplingLevel :> QueryParam "filters" Text :> QueryParam "sort" Text :> QueryParam "dimensions" Text :> QueryParam "start-index" (Textual Int32) :> QueryParam "max-results" (Textual Int32) :> QueryParam "alt" AltJSON :> Get '[JSON] McfData -- | Returns Analytics Multi-Channel Funnels data for a view (profile). -- -- /See:/ 'dataMcfGet' smart constructor. data DataMcfGet = DataMcfGet' { _dmgMetrics :: !Text , _dmgSamplingLevel :: !(Maybe DataMcfGetSamplingLevel) , _dmgFilters :: !(Maybe Text) , _dmgIds :: !Text , _dmgEndDate :: !Text , _dmgSort :: !(Maybe Text) , _dmgDimensions :: !(Maybe Text) , _dmgStartIndex :: !(Maybe (Textual Int32)) , _dmgMaxResults :: !(Maybe (Textual Int32)) , _dmgStartDate :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'DataMcfGet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dmgMetrics' -- -- * 'dmgSamplingLevel' -- -- * 'dmgFilters' -- -- * 'dmgIds' -- -- * 'dmgEndDate' -- -- * 'dmgSort' -- -- * 'dmgDimensions' -- -- * 'dmgStartIndex' -- -- * 'dmgMaxResults' -- -- * 'dmgStartDate' dataMcfGet :: Text -- ^ 'dmgMetrics' -> Text -- ^ 'dmgIds' -> Text -- ^ 'dmgEndDate' -> Text -- ^ 'dmgStartDate' -> DataMcfGet dataMcfGet pDmgMetrics_ pDmgIds_ pDmgEndDate_ pDmgStartDate_ = DataMcfGet' { _dmgMetrics = pDmgMetrics_ , _dmgSamplingLevel = Nothing , _dmgFilters = Nothing , _dmgIds = pDmgIds_ , _dmgEndDate = pDmgEndDate_ , _dmgSort = Nothing , _dmgDimensions = Nothing , _dmgStartIndex = Nothing , _dmgMaxResults = Nothing , _dmgStartDate = pDmgStartDate_ } -- | A comma-separated list of Multi-Channel Funnels metrics. E.g., -- \'mcf:totalConversions,mcf:totalConversionValue\'. At least one metric -- must be specified. dmgMetrics :: Lens' DataMcfGet Text dmgMetrics = lens _dmgMetrics (\ s a -> s{_dmgMetrics = a}) -- | The desired sampling level. dmgSamplingLevel :: Lens' DataMcfGet (Maybe DataMcfGetSamplingLevel) dmgSamplingLevel = lens _dmgSamplingLevel (\ s a -> s{_dmgSamplingLevel = a}) -- | A comma-separated list of dimension or metric filters to be applied to -- the Analytics data. dmgFilters :: Lens' DataMcfGet (Maybe Text) dmgFilters = lens _dmgFilters (\ s a -> s{_dmgFilters = a}) -- | Unique table ID for retrieving Analytics data. Table ID is of the form -- ga:XXXX, where XXXX is the Analytics view (profile) ID. dmgIds :: Lens' DataMcfGet Text dmgIds = lens _dmgIds (\ s a -> s{_dmgIds = a}) -- | End date for fetching Analytics data. Requests can specify a start date -- formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, -- or 7daysAgo). The default value is 7daysAgo. dmgEndDate :: Lens' DataMcfGet Text dmgEndDate = lens _dmgEndDate (\ s a -> s{_dmgEndDate = a}) -- | A comma-separated list of dimensions or metrics that determine the sort -- order for the Analytics data. dmgSort :: Lens' DataMcfGet (Maybe Text) dmgSort = lens _dmgSort (\ s a -> s{_dmgSort = a}) -- | A comma-separated list of Multi-Channel Funnels dimensions. E.g., -- \'mcf:source,mcf:medium\'. dmgDimensions :: Lens' DataMcfGet (Maybe Text) dmgDimensions = lens _dmgDimensions (\ s a -> s{_dmgDimensions = a}) -- | An index of the first entity to retrieve. Use this parameter as a -- pagination mechanism along with the max-results parameter. dmgStartIndex :: Lens' DataMcfGet (Maybe Int32) dmgStartIndex = lens _dmgStartIndex (\ s a -> s{_dmgStartIndex = a}) . mapping _Coerce -- | The maximum number of entries to include in this feed. dmgMaxResults :: Lens' DataMcfGet (Maybe Int32) dmgMaxResults = lens _dmgMaxResults (\ s a -> s{_dmgMaxResults = a}) . mapping _Coerce -- | Start date for fetching Analytics data. Requests can specify a start -- date formatted as YYYY-MM-DD, or as a relative date (e.g., today, -- yesterday, or 7daysAgo). The default value is 7daysAgo. dmgStartDate :: Lens' DataMcfGet Text dmgStartDate = lens _dmgStartDate (\ s a -> s{_dmgStartDate = a}) instance GoogleRequest DataMcfGet where type Rs DataMcfGet = McfData type Scopes DataMcfGet = '["https://www.googleapis.com/auth/analytics", "https://www.googleapis.com/auth/analytics.readonly"] requestClient DataMcfGet'{..} = go (Just _dmgIds) (Just _dmgStartDate) (Just _dmgEndDate) (Just _dmgMetrics) _dmgSamplingLevel _dmgFilters _dmgSort _dmgDimensions _dmgStartIndex _dmgMaxResults (Just AltJSON) analyticsService where go = buildClient (Proxy :: Proxy DataMcfGetResource) mempty
rueshyna/gogol
gogol-analytics/gen/Network/Google/Resource/Analytics/Data/Mcf/Get.hs
mpl-2.0
6,964
0
22
1,778
1,088
629
459
149
1
instance MyClass Int where -- | This data is very important data MyData = IntData { intData :: String , intData2 :: Int } myMethod :: MyData -> Int myMethod = intData2
lspitzner/brittany
data/Test202.hs
agpl-3.0
189
0
9
53
46
26
20
-1
-1
{-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-} import Control.Monad.Error (ErrorT, runErrorT, catchError) import Control.Monad.State import System.IO import Control.Concurrent.Lifted import qualified Data.ByteString.Lazy.Char8 as LBS import Cortex.Common.OptParse (CmdArgs) import Cortex.Common.MonadOptParse import qualified Cortex.Common.OptParse as OptParse import Cortex.Common.Error import Cortex.Common.LazyIO import Cortex.Common.ErrorIO (iSetBuffering, iConnectTo) type StateVars = (String, Int, MVar (Int, Int), MVar ()) makeArgs :: ErrorT String IO CmdArgs makeArgs = execOptParseT $ do addOption ["--host"] "host" "Host Miranda runs on (default is 127.0.0.1)" addOption ["-p", "--port"] "port" "Port Miranda runs on (default is 8205)" -- When you issue N messages it will translate to at least 3*N remote -- operations. addOption ["--messages"] "messages" "How many messages should be sent (default is 10)" addOption ["--concurrency"] "concurrency" "How many concurrent requests should be performed (default is 10)" main :: IO () main = do e <- runErrorT main' report e where report (Left s) = hPutStrLn stderr $ "Error: " ++ s report (Right _) = return () main' :: ErrorT String IO () main' = do -- Buffer stderr output to get sane log messages, not mixed up random -- letters. iSetBuffering stderr LineBuffering options <- makeArgs args <- OptParse.evalArgs options (host :: String) <- OptParse.getOptionWithDefault args "host" "127.0.0.1" (port :: Int) <- OptParse.getOptionWithDefault args "port" 8205 (messages :: Int) <- OptParse.getOptionWithDefault args "messages" 10 (concurrency :: Int) <- OptParse.getOptionWithDefault args "concurrency" 10 let atOnce = min messages concurrency let toDo = messages let next = messages mv <- newMVar (toDo, next) block <- newEmptyMVar runStateT (run atOnce) (host, port, mv, block) return () run :: Int -> StateT StateVars (ErrorT String IO) () run atOnce = do (_, _, _, block) <- get sequence_ [fork runOne | _ <- [1..atOnce]] when (atOnce > 0) (takeMVar block) where runOne = do (_, _, mv, _) <- get (toDo, next) <- takeMVar mv putMVar mv (toDo, next - 1) runInstance next (makeKey next) runInstance :: Int -> LBS.ByteString -> StateT StateVars (ErrorT String IO) () runInstance i k = do { do { perform_set ; perform_get ; perform_delete } `catchError` retry ; (_, _, mv, block) <- get ; (toDo, next) <- takeMVar mv ; putMVar mv (toDo - 1, next - 1) ; when (next > 0) (runInstance next (makeKey next)) ; when (toDo - 1 == 0) $ putMVar block () } where retry e = do reportError e runInstance i k perform_delete = do (host, port, _, _) <- get hdl <- iConnectTo host port lPutStrLn hdl "delete" lPutStrLn hdl k lClose hdl perform_set = do (host, port, _, _) <- get hdl <- iConnectTo host port lPutStrLn hdl "set" lPutStrLn hdl k lPutStrLn hdl k lClose hdl perform_get = do (host, port, _, _) <- get hdl <- iConnectTo host port lPutStrLn hdl "lookup" lPutStrLn hdl k lFlush hdl response <- lGetLine hdl lClose hdl -- Drop the "Just ". when (LBS.drop 5 response /= k) perform_get makeKey :: Int -> LBS.ByteString makeKey i = LBS.concat ["test::", LBS.pack $ show i]
maarons/Cortex
Miranda/test/performance/check.hs
agpl-3.0
3,719
4
12
1,082
1,164
586
578
94
2
module ToiletPaper.A297025 (a297025) where import HelperSequences.A220096 (a220096) countIterations :: (a -> a) -> (a -> Bool) -> a -> Int countIterations iteratingFunction terminatingCondition = recurse 0 where recurse counter value | terminatingCondition value = counter | otherwise = recurse (counter + 1) (iteratingFunction value) a297025 :: Integer -> Int a297025 = countIterations a220096 (==0)
peterokagey/haskellOEIS
src/ToiletPaper/A297025.hs
apache-2.0
413
0
10
66
136
71
65
9
1
{-# LANGUAGE OverloadedStrings #-} module Main where import qualified Data.Text as T main :: IO () main = interact $ (header ++) . (++ footer) . unlines . generateCodes . lines header :: String header = "/*\n" ++ " * Copyright 2015 Omricat Software\n" ++ " *\n" ++ " * Licensed under the Apache License, Version 2.0 (the \"License\");\n" ++ " * you may not use this file except in compliance with the License.\n" ++ " * You may obtain a copy of the License at\n" ++ " *\n" ++ " * http://www.apache.org/licenses/LICENSE-2.0\n" ++ " *\n" ++ " * Unless required by applicable law or agreed to in writing, software\n" ++ " * distributed under the License is distributed on an \"AS IS\" BASIS,\n" ++ " * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" ++ " * See the License for the specific language governing permissions and\n" ++ " * limitations under the License.\n" ++ " */\n" ++ "\npackage com.omricat.yacc.data;\n" ++ "\nimport com.omricat.yacc.data.model.CurrencyCode;\n" ++ "\n/**\n" ++ " * Class containing CurrencyCodes as constants, to be used as test data.\n" ++ " */\n" ++ "public class TestCurrencyCodes {\n" footer :: String footer = "}\n" generateCodes :: [String] -> [String] generateCodes = map (T.unpack . go . T.pack) where go s = T.replace pin s line pin :: T.Text pin = "@@@" line :: T.Text line = " public final static CurrencyCode @@@_CODE = new CurrencyCode(\"@@@\");"
grodin/yacc
debug/src/main/haskell/generate-currency-codes.hs
apache-2.0
1,524
0
24
344
237
130
107
36
1
{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} module Openshift.V1.Capability where import GHC.Generics import qualified Data.Aeson -- | data Capability = Capability { } deriving (Show, Eq, Generic) instance Data.Aeson.FromJSON Capability instance Data.Aeson.ToJSON Capability
minhdoboi/deprecated-openshift-haskell-api
openshift/lib/Openshift/V1/Capability.hs
apache-2.0
412
1
6
60
69
42
27
12
0
module Foundation where import Import.NoFoundation import Database.Persist.Sql (ConnectionPool, runSqlPool) import Text.Hamlet (hamletFile) import Text.Jasmine (minifym) import Yesod.Auth.Dummy (authDummy) import Yesod.Default.Util (addStaticContentExternal) import Yesod.Core.Types (Logger) import qualified Yesod.Core.Unsafe as Unsafe -- | The foundation datatype for your application. This can be a good place to -- keep settings and values requiring initialization before your application -- starts running, such as database connections. Every handler will have -- access to the data present here. data App = App { appSettings :: AppSettings , appStatic :: Static -- ^ Settings for static file serving. , appConnPool :: ConnectionPool -- ^ Database connection pool. , appHttpManager :: Manager , appLogger :: Logger , appAllGames :: TVar (Vector Game) } instance HasHttpManager App where getHttpManager = appHttpManager -- This is where we define all of the routes in our application. For a full -- explanation of the syntax, please see: -- http://www.yesodweb.com/book/routing-and-handlers -- -- Note that this is really half the story; in Application.hs, mkYesodDispatch -- generates the rest of the code. Please see the linked documentation for an -- explanation for this split. mkYesodData "App" $(parseRoutesFile "config/routes") -- | A convenient synonym for creating forms. type Form x = Html -> MForm (HandlerT App IO) (FormResult x, Widget) -- Please see the documentation for the Yesod typeclass. There are a number -- of settings which can be configured by overriding methods here. instance Yesod App where -- Controls the base of generated URLs. For more information on modifying, -- see: https://github.com/yesodweb/yesod/wiki/Overriding-approot approot = ApprootMaster $ appRoot . appSettings -- Store session data on the client in encrypted cookies, -- default session idle timeout is 120 minutes makeSessionBackend _ = fmap Just $ defaultClientSessionBackend 120 -- timeout in minutes "config/client_session_key.aes" defaultLayout widget = do master <- getYesod mmsg <- getMessage -- We break up the default layout into two components: -- default-layout is the contents of the body tag, and -- default-layout-wrapper is the entire page. Since the final -- value passed to hamletToRepHtml cannot be a widget, this allows -- you to use normal widget features in default-layout. pc <- widgetToPageContent $ do addStylesheet $ StaticR css_bootstrap_css $(widgetFile "default-layout") withUrlRenderer $(hamletFile "templates/default-layout-wrapper.hamlet") -- The page to be redirected to when authentication is required. authRoute _ = Just $ AuthR LoginR -- Routes not requiring authentication. isAuthorized (AuthR _) _ = return Authorized isAuthorized FaviconR _ = return Authorized isAuthorized RobotsR _ = return Authorized isAuthorized HomeR False = return Authorized isAuthorized GamesR False = return Authorized isAuthorized GamesR True = allowLoggedIn isAuthorized (GameR _) _ = return Authorized -- Default to Authorized for now. isAuthorized _ _ = return Authorized -- This function creates static content files in the static folder -- and names them based on a hash of their content. This allows -- expiration dates to be set far in the future without worry of -- users receiving stale content. addStaticContent ext mime content = do master <- getYesod let staticDir = appStaticDir $ appSettings master addStaticContentExternal minifym genFileName staticDir (StaticR . flip StaticRoute []) ext mime content where -- Generate a unique filename based on the content itself genFileName lbs = "autogen-" ++ base64md5 lbs -- What messages should be logged. The following includes all messages when -- in development, and warnings and errors in production. shouldLog app _source level = appShouldLogAll (appSettings app) || level == LevelWarn || level == LevelError makeLogger = return . appLogger urlRenderOverride y (StaticR s) = Just $ uncurry (joinPath y (staticRoot $ appSettings y)) $ renderRoute s urlRenderOverride _ _ = Nothing -- | Allow anyone who's logged in to do this action. allowLoggedIn :: YesodAuth site => HandlerT site IO AuthResult allowLoggedIn = do mu <- maybeAuthId return $ case mu of Just _ -> Authorized Nothing -> AuthenticationRequired -- How to run database actions. instance YesodPersist App where type YesodPersistBackend App = SqlBackend runDB action = do master <- getYesod runSqlPool action $ appConnPool master instance YesodPersistRunner App where getDBRunner = defaultGetDBRunner appConnPool instance YesodAuth App where type AuthId App = UserId -- Where to send a user after successful login loginDest _ = HomeR -- Where to send a user after logout logoutDest _ = HomeR -- Override the above two destinations when a Referer: header is present redirectToReferer _ = True getAuthId creds = runDB $ do x <- getBy $ UniqueUser $ credsIdent creds case x of Just (Entity uid _) -> return $ Just uid Nothing -> do fmap Just $ insert User { userIdent = credsIdent creds , userPassword = Nothing } authPlugins app = case method of "dummy" -> [authDummy] _ -> error $ unpack $ ("Unrecognized authentication method: " :: Text) ++ method where settings = appSettings app method = authentication settings authHttpManager = getHttpManager instance YesodAuthPersist App -- This instance is required to use forms. You can modify renderMessage to -- achieve customized and internationalized form validation messages. instance RenderMessage App FormMessage where renderMessage _ _ = defaultFormMessage unsafeHandler :: App -> Handler a -> IO a unsafeHandler = Unsafe.fakeHandlerGetLogger appLogger -- Note: Some functionality previously present in the scaffolding has been -- moved to documentation in the Wiki. Following are some hopefully helpful -- links: -- -- https://github.com/yesodweb/yesod/wiki/Sending-email -- https://github.com/yesodweb/yesod/wiki/Serve-static-files-from-a-separate-domain -- https://github.com/yesodweb/yesod/wiki/i18n-messages-in-the-scaffolding
jml/haverer-api
Foundation.hs
apache-2.0
6,768
0
18
1,619
1,053
553
500
-1
-1
{-# LANGUAGE OverloadedStrings #-} module Fedora.FAS.Client ( -- * Person getPerson , getPeople -- * Group , getGroup , getGroups -- * Utility , localClientConfig , runFasQuery ) where import Control.Exception as E import Control.Lens import Control.Monad.Reader import Data.Aeson (FromJSON) import qualified Data.ByteString.Char8 as C8 import qualified Data.Text as T import Fedora.FAS.Types import Network.HTTP.Types (urlEncode) import Network.Wreq -- TODO: This is inefficient. encodePath :: String -> String encodePath = C8.unpack . urlEncode False . C8.pack {-# INLINE encodePath #-} runFasQuery :: ReaderT r m a -> r -> m a runFasQuery = runReaderT -- | Get a list of something from the API. getList :: FromJSON a => String -- ^ The URL (path) to hit -> Integer -- ^ The page number -> Integer -- ^ The limit -> ReaderT ClientConfig IO (Either E.SomeException (Response a)) getList path page limit = do (ClientConfig b a) <- ask let opts = defaults & param "apikey" .~ [a] & param "page" .~ [T.pack . show $ page] & param "limit" .~ [T.pack . show $ limit] url = b ++ path lift $ E.try $ asJSON =<< getWith opts url -- | Finds a unique person by some unique identifier ('SearchType'). -- -- Internally, this hits @\/api\/people\/<searchtype>\/<query>@. getPerson :: PersonSearchType -- ^ What to filter results by -> String -- ^ The search query -> ReaderT ClientConfig IO (Either E.SomeException (Response PersonResponse)) getPerson search query = do (ClientConfig b a) <- ask let opts = defaults & param "apikey" .~ [a] url = b ++ "/api/people/" ++ show search ++ "/" ++ encodePath query lift $ E.try $ asJSON =<< getWith opts url -- | Get a list of all people. -- -- Internally, this hits @\/api\/people@. getPeople :: Integer -- ^ The page number -> Integer -- ^ The limit -> ReaderT ClientConfig IO (Either E.SomeException (Response PeopleResponse)) getPeople = getList "/api/people" {-# INLINE getPeople #-} -- | Finds a unique group by some unique identifier ('GroupSearchType'). -- -- Internally, this hits @\/api\/groups\/<searchtype>\/<query>@. getGroup :: GroupSearchType -- ^ What to filter results by -> String -- ^ The search query -> ReaderT ClientConfig IO (Either E.SomeException (Response PersonResponse)) getGroup search query = do (ClientConfig b a) <- ask let opts = defaults & param "apikey" .~ [a] url = b ++ "/api/groups/" ++ show search ++ "/" ++ encodePath query lift $ E.try $ asJSON =<< getWith opts url -- | Get a list of all groups. -- -- Internally, this hits @\/api\/group@. getGroups :: Integer -- ^ The page number -> Integer -- ^ The limit -> ReaderT ClientConfig IO (Either E.SomeException (Response GroupResponse)) getGroups = getList "/api/group" {-# INLINE getGroups #-}
fedora-infra/fas3-api-haskell
src/Fedora/FAS/Client.hs
bsd-2-clause
2,928
0
16
655
713
382
331
60
1
{-# OPTIONS -fno-warn-type-defaults #-} {-| Constants contains the Haskell constants The constants in this module are used in Haskell and are also converted to Python. Do not write any definitions in this file other than constants. Do not even write helper functions. The definitions in this module are automatically stripped to build the Makefile.am target 'ListConstants.hs'. If there are helper functions in this module, they will also be dragged and it will cause compilation to fail. Therefore, all helper functions should go to a separate module and imported. -} {- Copyright (C) 2013, 2014 Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -} module Ganeti.Constants where import Control.Arrow ((***),(&&&)) import Data.List ((\\)) import Data.Map (Map) import qualified Data.Map as Map (empty, fromList, keys, insert) import qualified AutoConf import Ganeti.ConstantUtils (PythonChar(..), FrozenSet, Protocol(..), buildVersion) import qualified Ganeti.ConstantUtils as ConstantUtils import qualified Ganeti.HTools.Types as Types import Ganeti.HTools.Types (AutoRepairResult(..), AutoRepairType(..)) import Ganeti.Logging (SyslogUsage(..)) import qualified Ganeti.Logging as Logging (syslogUsageToRaw) import qualified Ganeti.Runtime as Runtime import Ganeti.Runtime (GanetiDaemon(..), MiscGroup(..), GanetiGroup(..), ExtraLogReason(..)) import Ganeti.THH (PyValueEx(..)) import Ganeti.Types import qualified Ganeti.Types as Types import Ganeti.Confd.Types (ConfdRequestType(..), ConfdReqField(..), ConfdReplyStatus(..), ConfdNodeRole(..), ConfdErrorType(..)) import qualified Ganeti.Confd.Types as Types {-# ANN module "HLint: ignore Use camelCase" #-} -- * 'autoconf' constants for Python only ('autotools/build-bash-completion') htoolsProgs :: [String] htoolsProgs = AutoConf.htoolsProgs -- * 'autoconf' constants for Python only ('lib/constants.py') drbdBarriers :: String drbdBarriers = AutoConf.drbdBarriers drbdNoMetaFlush :: Bool drbdNoMetaFlush = AutoConf.drbdNoMetaFlush lvmStripecount :: Int lvmStripecount = AutoConf.lvmStripecount hasGnuLn :: Bool hasGnuLn = AutoConf.hasGnuLn -- * 'autoconf' constants for Python only ('lib/pathutils.py') -- ** Build-time constants exportDir :: String exportDir = AutoConf.exportDir backupDir :: String backupDir = AutoConf.backupDir osSearchPath :: [String] osSearchPath = AutoConf.osSearchPath esSearchPath :: [String] esSearchPath = AutoConf.esSearchPath sshConfigDir :: String sshConfigDir = AutoConf.sshConfigDir xenConfigDir :: String xenConfigDir = AutoConf.xenConfigDir sysconfdir :: String sysconfdir = AutoConf.sysconfdir toolsdir :: String toolsdir = AutoConf.toolsdir localstatedir :: String localstatedir = AutoConf.localstatedir -- ** Paths which don't change for a virtual cluster pkglibdir :: String pkglibdir = AutoConf.pkglibdir sharedir :: String sharedir = AutoConf.sharedir -- * 'autoconf' constants for Python only ('lib/build/sphinx_ext.py') manPages :: Map String Int manPages = Map.fromList AutoConf.manPages -- * 'autoconf' constants for QA cluster only ('qa/qa_cluster.py') versionedsharedir :: String versionedsharedir = AutoConf.versionedsharedir -- * 'autoconf' constants for Python only ('tests/py/docs_unittest.py') gntScripts :: [String] gntScripts = AutoConf.gntScripts -- * Various versions releaseVersion :: String releaseVersion = AutoConf.packageVersion versionMajor :: Int versionMajor = AutoConf.versionMajor versionMinor :: Int versionMinor = AutoConf.versionMinor versionRevision :: Int versionRevision = AutoConf.versionRevision dirVersion :: String dirVersion = AutoConf.dirVersion osApiV10 :: Int osApiV10 = 10 osApiV15 :: Int osApiV15 = 15 osApiV20 :: Int osApiV20 = 20 osApiVersions :: FrozenSet Int osApiVersions = ConstantUtils.mkSet [osApiV10, osApiV15, osApiV20] -- | The version of the backup/export instance description file format we are -- producing when exporting and accepting when importing. The two are currently -- tightly intertwined. exportVersion :: Int exportVersion = 0 rapiVersion :: Int rapiVersion = 2 configMajor :: Int configMajor = AutoConf.versionMajor configMinor :: Int configMinor = AutoConf.versionMinor -- | The configuration is supposed to remain stable across -- revisions. Therefore, the revision number is cleared to '0'. configRevision :: Int configRevision = 0 configVersion :: Int configVersion = buildVersion configMajor configMinor configRevision -- | Similarly to the configuration (see 'configRevision'), the -- protocols are supposed to remain stable across revisions. protocolVersion :: Int protocolVersion = buildVersion configMajor configMinor configRevision -- * User separation daemonsGroup :: String daemonsGroup = Runtime.daemonGroup (ExtraGroup DaemonsGroup) adminGroup :: String adminGroup = Runtime.daemonGroup (ExtraGroup AdminGroup) masterdUser :: String masterdUser = Runtime.daemonUser GanetiMasterd masterdGroup :: String masterdGroup = Runtime.daemonGroup (DaemonGroup GanetiMasterd) metadUser :: String metadUser = Runtime.daemonUser GanetiMetad metadGroup :: String metadGroup = Runtime.daemonGroup (DaemonGroup GanetiMetad) rapiUser :: String rapiUser = Runtime.daemonUser GanetiRapi rapiGroup :: String rapiGroup = Runtime.daemonGroup (DaemonGroup GanetiRapi) confdUser :: String confdUser = Runtime.daemonUser GanetiConfd confdGroup :: String confdGroup = Runtime.daemonGroup (DaemonGroup GanetiConfd) wconfdUser :: String wconfdUser = Runtime.daemonUser GanetiWConfd wconfdGroup :: String wconfdGroup = Runtime.daemonGroup (DaemonGroup GanetiWConfd) kvmdUser :: String kvmdUser = Runtime.daemonUser GanetiKvmd kvmdGroup :: String kvmdGroup = Runtime.daemonGroup (DaemonGroup GanetiKvmd) luxidUser :: String luxidUser = Runtime.daemonUser GanetiLuxid luxidGroup :: String luxidGroup = Runtime.daemonGroup (DaemonGroup GanetiLuxid) nodedUser :: String nodedUser = Runtime.daemonUser GanetiNoded nodedGroup :: String nodedGroup = Runtime.daemonGroup (DaemonGroup GanetiNoded) mondUser :: String mondUser = Runtime.daemonUser GanetiMond mondGroup :: String mondGroup = Runtime.daemonGroup (DaemonGroup GanetiMond) sshLoginUser :: String sshLoginUser = AutoConf.sshLoginUser sshConsoleUser :: String sshConsoleUser = AutoConf.sshConsoleUser -- * Cpu pinning separators and constants cpuPinningSep :: String cpuPinningSep = ":" cpuPinningAll :: String cpuPinningAll = "all" -- | Internal representation of "all" cpuPinningAllVal :: Int cpuPinningAllVal = -1 -- | One "all" entry in a CPU list means CPU pinning is off cpuPinningOff :: [Int] cpuPinningOff = [cpuPinningAllVal] -- | A Xen-specific implementation detail is that there is no way to -- actually say "use any cpu for pinning" in a Xen configuration file, -- as opposed to the command line, where you can say -- @ -- xm vcpu-pin <domain> <vcpu> all -- @ -- -- The workaround used in Xen is "0-63" (see source code function -- "xm_vcpu_pin" in @<xen-source>/tools/python/xen/xm/main.py@). -- -- To support future changes, the following constant is treated as a -- blackbox string that simply means "use any cpu for pinning under -- xen". cpuPinningAllXen :: String cpuPinningAllXen = "0-63" -- * Image and wipe ddCmd :: String ddCmd = "dd" -- | 1 MiB -- The default block size for the 'dd' command ddBlockSize :: Int ddBlockSize = 1024^2 -- | 1GB maxWipeChunk :: Int maxWipeChunk = 1024 minWipeChunkPercent :: Int minWipeChunkPercent = 10 -- * Directories runDirsMode :: Int runDirsMode = 0o775 secureDirMode :: Int secureDirMode = 0o700 secureFileMode :: Int secureFileMode = 0o600 adoptableBlockdevRoot :: String adoptableBlockdevRoot = "/dev/disk/" -- * 'autoconf' enable/disable enableMond :: Bool enableMond = AutoConf.enableMond enableMetad :: Bool enableMetad = AutoConf.enableMetad enableRestrictedCommands :: Bool enableRestrictedCommands = AutoConf.enableRestrictedCommands -- * SSH constants ssh :: String ssh = "ssh" scp :: String scp = "scp" -- * Daemons confd :: String confd = Runtime.daemonName GanetiConfd masterd :: String masterd = Runtime.daemonName GanetiMasterd metad :: String metad = Runtime.daemonName GanetiMetad mond :: String mond = Runtime.daemonName GanetiMond noded :: String noded = Runtime.daemonName GanetiNoded wconfd :: String wconfd = Runtime.daemonName GanetiWConfd luxid :: String luxid = Runtime.daemonName GanetiLuxid rapi :: String rapi = Runtime.daemonName GanetiRapi kvmd :: String kvmd = Runtime.daemonName GanetiKvmd daemons :: FrozenSet String daemons = ConstantUtils.mkSet [confd, luxid, masterd, mond, noded, rapi] defaultConfdPort :: Int defaultConfdPort = 1814 defaultMondPort :: Int defaultMondPort = 1815 defaultMetadPort :: Int defaultMetadPort = 80 defaultNodedPort :: Int defaultNodedPort = 1811 defaultRapiPort :: Int defaultRapiPort = 5080 daemonsPorts :: Map String (Protocol, Int) daemonsPorts = Map.fromList [ (confd, (Udp, defaultConfdPort)) , (metad, (Tcp, defaultMetadPort)) , (mond, (Tcp, defaultMondPort)) , (noded, (Tcp, defaultNodedPort)) , (rapi, (Tcp, defaultRapiPort)) , (ssh, (Tcp, 22)) ] firstDrbdPort :: Int firstDrbdPort = 11000 lastDrbdPort :: Int lastDrbdPort = 14999 daemonsLogbase :: Map String String daemonsLogbase = Map.fromList [ (Runtime.daemonName d, Runtime.daemonLogBase d) | d <- [minBound..] ] daemonsExtraLogbase :: Map String (Map String String) daemonsExtraLogbase = Map.fromList $ map (Runtime.daemonName *** id) [ (GanetiMond, Map.fromList [ ("access", Runtime.daemonsExtraLogbase GanetiMond AccessLog) , ("error", Runtime.daemonsExtraLogbase GanetiMond ErrorLog) ]) ] extraLogreasonAccess :: String extraLogreasonAccess = Runtime.daemonsExtraLogbase GanetiMond AccessLog extraLogreasonError :: String extraLogreasonError = Runtime.daemonsExtraLogbase GanetiMond ErrorLog devConsole :: String devConsole = ConstantUtils.devConsole procMounts :: String procMounts = "/proc/mounts" -- * Luxi (Local UniX Interface) related constants luxiEom :: PythonChar luxiEom = PythonChar '\x03' -- | Environment variable for the luxi override socket luxiOverride :: String luxiOverride = "FORCE_LUXI_SOCKET" luxiOverrideMaster :: String luxiOverrideMaster = "master" luxiOverrideQuery :: String luxiOverrideQuery = "query" luxiVersion :: Int luxiVersion = configVersion -- * Syslog syslogUsage :: String syslogUsage = AutoConf.syslogUsage syslogNo :: String syslogNo = Logging.syslogUsageToRaw SyslogNo syslogYes :: String syslogYes = Logging.syslogUsageToRaw SyslogYes syslogOnly :: String syslogOnly = Logging.syslogUsageToRaw SyslogOnly syslogSocket :: String syslogSocket = "/dev/log" exportConfFile :: String exportConfFile = "config.ini" -- * Xen xenBootloader :: String xenBootloader = AutoConf.xenBootloader xenCmdXl :: String xenCmdXl = "xl" xenCmdXm :: String xenCmdXm = "xm" xenInitrd :: String xenInitrd = AutoConf.xenInitrd xenKernel :: String xenKernel = AutoConf.xenKernel -- FIXME: perhaps rename to 'validXenCommands' for consistency with -- other constants knownXenCommands :: FrozenSet String knownXenCommands = ConstantUtils.mkSet [xenCmdXl, xenCmdXm] -- * KVM and socat kvmPath :: String kvmPath = AutoConf.kvmPath kvmKernel :: String kvmKernel = AutoConf.kvmKernel socatEscapeCode :: String socatEscapeCode = "0x1d" socatPath :: String socatPath = AutoConf.socatPath socatUseCompress :: Bool socatUseCompress = AutoConf.socatUseCompress socatUseEscape :: Bool socatUseEscape = AutoConf.socatUseEscape -- * LXC -- If you are trying to change the value of these default constants, you also -- need to edit the default value declaration in man/gnt-instance.rst. lxcDevicesDefault :: String lxcDevicesDefault = "c 1:3 rw" -- /dev/null ++ ",c 1:5 rw" -- /dev/zero ++ ",c 1:7 rw" -- /dev/full ++ ",c 1:8 rw" -- /dev/random ++ ",c 1:9 rw" -- /dev/urandom ++ ",c 1:10 rw" -- /dev/aio ++ ",c 5:0 rw" -- /dev/tty ++ ",c 5:1 rw" -- /dev/console ++ ",c 5:2 rw" -- /dev/ptmx ++ ",c 136:* rw" -- first block of Unix98 PTY slaves lxcDropCapabilitiesDefault :: String lxcDropCapabilitiesDefault = "mac_override" -- Allow MAC configuration or state changes ++ ",sys_boot" -- Use reboot(2) and kexec_load(2) ++ ",sys_module" -- Load and unload kernel modules ++ ",sys_time" -- Set system clock, set real-time (hardware) clock ++ ",sys_admin" -- Various system administration operations lxcStateRunning :: String lxcStateRunning = "RUNNING" -- * Console types -- | Display a message for console access consMessage :: String consMessage = "msg" -- | Console as SPICE server consSpice :: String consSpice = "spice" -- | Console as SSH command consSsh :: String consSsh = "ssh" -- | Console as VNC server consVnc :: String consVnc = "vnc" consAll :: FrozenSet String consAll = ConstantUtils.mkSet [consMessage, consSpice, consSsh, consVnc] -- | RSA key bit length -- -- For RSA keys more bits are better, but they also make operations -- more expensive. NIST SP 800-131 recommends a minimum of 2048 bits -- from the year 2010 on. rsaKeyBits :: Int rsaKeyBits = 2048 -- | Ciphers allowed for SSL connections. -- -- For the format, see ciphers(1). A better way to disable ciphers -- would be to use the exclamation mark (!), but socat versions below -- 1.5 can't parse exclamation marks in options properly. When -- modifying the ciphers, ensure not to accidentially add something -- after it's been removed. Use the "openssl" utility to check the -- allowed ciphers, e.g. "openssl ciphers -v HIGH:-DES". opensslCiphers :: String opensslCiphers = "HIGH:-DES:-3DES:-EXPORT:-ADH" -- * X509 -- | commonName (CN) used in certificates x509CertCn :: String x509CertCn = "ganeti.example.com" -- | Default validity of certificates in days x509CertDefaultValidity :: Int x509CertDefaultValidity = 365 * 5 x509CertSignatureHeader :: String x509CertSignatureHeader = "X-Ganeti-Signature" -- | Digest used to sign certificates ("openssl x509" uses SHA1 by default) x509CertSignDigest :: String x509CertSignDigest = "SHA1" -- * Import/export daemon mode iemExport :: String iemExport = "export" iemImport :: String iemImport = "import" -- * Import/export transport compression iecGzip :: String iecGzip = "gzip" iecGzipFast :: String iecGzipFast = "gzip-fast" iecGzipSlow :: String iecGzipSlow = "gzip-slow" iecLzop :: String iecLzop = "lzop" iecNone :: String iecNone = "none" iecAll :: [String] iecAll = [iecGzip, iecGzipFast, iecGzipSlow, iecLzop, iecNone] iecDefaultTools :: [String] iecDefaultTools = [iecGzip, iecGzipFast, iecGzipSlow] iecCompressionUtilities :: Map String String iecCompressionUtilities = Map.fromList [ (iecGzipFast, iecGzip) , (iecGzipSlow, iecGzip) ] ieCustomSize :: String ieCustomSize = "fd" -- * Import/export I/O -- | Direct file I/O, equivalent to a shell's I/O redirection using -- '<' or '>' ieioFile :: String ieioFile = "file" -- | Raw block device I/O using "dd" ieioRawDisk :: String ieioRawDisk = "raw" -- | OS definition import/export script ieioScript :: String ieioScript = "script" -- * Values valueDefault :: String valueDefault = "default" valueAuto :: String valueAuto = "auto" valueGenerate :: String valueGenerate = "generate" valueNone :: String valueNone = "none" valueTrue :: String valueTrue = "true" valueFalse :: String valueFalse = "false" -- * Hooks hooksNameCfgupdate :: String hooksNameCfgupdate = "config-update" hooksNameWatcher :: String hooksNameWatcher = "watcher" hooksPath :: String hooksPath = "/sbin:/bin:/usr/sbin:/usr/bin" hooksPhasePost :: String hooksPhasePost = "post" hooksPhasePre :: String hooksPhasePre = "pre" hooksVersion :: Int hooksVersion = 2 -- * Hooks subject type (what object type does the LU deal with) htypeCluster :: String htypeCluster = "CLUSTER" htypeGroup :: String htypeGroup = "GROUP" htypeInstance :: String htypeInstance = "INSTANCE" htypeNetwork :: String htypeNetwork = "NETWORK" htypeNode :: String htypeNode = "NODE" -- * Hkr hkrSkip :: Int hkrSkip = 0 hkrFail :: Int hkrFail = 1 hkrSuccess :: Int hkrSuccess = 2 -- * Storage types stBlock :: String stBlock = Types.storageTypeToRaw StorageBlock stDiskless :: String stDiskless = Types.storageTypeToRaw StorageDiskless stExt :: String stExt = Types.storageTypeToRaw StorageExt stFile :: String stFile = Types.storageTypeToRaw StorageFile stSharedFile :: String stSharedFile = Types.storageTypeToRaw StorageSharedFile stGluster :: String stGluster = Types.storageTypeToRaw StorageGluster stLvmPv :: String stLvmPv = Types.storageTypeToRaw StorageLvmPv stLvmVg :: String stLvmVg = Types.storageTypeToRaw StorageLvmVg stRados :: String stRados = Types.storageTypeToRaw StorageRados storageTypes :: FrozenSet String storageTypes = ConstantUtils.mkSet $ map Types.storageTypeToRaw [minBound..] -- | The set of storage types for which full storage reporting is available stsReport :: FrozenSet String stsReport = ConstantUtils.mkSet [stFile, stLvmPv, stLvmVg] -- | The set of storage types for which node storage reporting is available -- | (as used by LUQueryNodeStorage) stsReportNodeStorage :: FrozenSet String stsReportNodeStorage = ConstantUtils.union stsReport $ ConstantUtils.mkSet [ stSharedFile , stGluster ] -- * Storage fields -- ** First two are valid in LU context only, not passed to backend sfNode :: String sfNode = "node" sfType :: String sfType = "type" -- ** and the rest are valid in backend sfAllocatable :: String sfAllocatable = Types.storageFieldToRaw SFAllocatable sfFree :: String sfFree = Types.storageFieldToRaw SFFree sfName :: String sfName = Types.storageFieldToRaw SFName sfSize :: String sfSize = Types.storageFieldToRaw SFSize sfUsed :: String sfUsed = Types.storageFieldToRaw SFUsed validStorageFields :: FrozenSet String validStorageFields = ConstantUtils.mkSet $ map Types.storageFieldToRaw [minBound..] ++ [sfNode, sfType] modifiableStorageFields :: Map String (FrozenSet String) modifiableStorageFields = Map.fromList [(Types.storageTypeToRaw StorageLvmPv, ConstantUtils.mkSet [sfAllocatable])] -- * Storage operations soFixConsistency :: String soFixConsistency = "fix-consistency" validStorageOperations :: Map String (FrozenSet String) validStorageOperations = Map.fromList [(Types.storageTypeToRaw StorageLvmVg, ConstantUtils.mkSet [soFixConsistency])] -- * Volume fields vfDev :: String vfDev = "dev" vfInstance :: String vfInstance = "instance" vfName :: String vfName = "name" vfNode :: String vfNode = "node" vfPhys :: String vfPhys = "phys" vfSize :: String vfSize = "size" vfVg :: String vfVg = "vg" -- * Local disk status ldsFaulty :: Int ldsFaulty = Types.localDiskStatusToRaw DiskStatusFaulty ldsOkay :: Int ldsOkay = Types.localDiskStatusToRaw DiskStatusOk ldsUnknown :: Int ldsUnknown = Types.localDiskStatusToRaw DiskStatusUnknown ldsSync :: Int ldsSync = Types.localDiskStatusToRaw DiskStatusSync ldsNames :: Map Int String ldsNames = Map.fromList [ (Types.localDiskStatusToRaw ds, localDiskStatusName ds) | ds <- [minBound..] ] -- * Disk template types dtDiskless :: String dtDiskless = Types.diskTemplateToRaw DTDiskless dtFile :: String dtFile = Types.diskTemplateToRaw DTFile dtSharedFile :: String dtSharedFile = Types.diskTemplateToRaw DTSharedFile dtPlain :: String dtPlain = Types.diskTemplateToRaw DTPlain dtBlock :: String dtBlock = Types.diskTemplateToRaw DTBlock dtDrbd8 :: String dtDrbd8 = Types.diskTemplateToRaw DTDrbd8 dtRbd :: String dtRbd = Types.diskTemplateToRaw DTRbd dtExt :: String dtExt = Types.diskTemplateToRaw DTExt dtGluster :: String dtGluster = Types.diskTemplateToRaw DTGluster -- | This is used to order determine the default disk template when -- the list of enabled disk templates is inferred from the current -- state of the cluster. This only happens on an upgrade from a -- version of Ganeti that did not support the 'enabled_disk_templates' -- so far. diskTemplatePreference :: [String] diskTemplatePreference = map Types.diskTemplateToRaw [DTBlock, DTDiskless, DTDrbd8, DTExt, DTFile, DTPlain, DTRbd, DTSharedFile, DTGluster] diskTemplates :: FrozenSet String diskTemplates = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [minBound..] -- | Disk templates that are enabled by default defaultEnabledDiskTemplates :: [String] defaultEnabledDiskTemplates = map Types.diskTemplateToRaw [DTDrbd8, DTPlain] -- | Mapping of disk templates to storage types mapDiskTemplateStorageType :: Map String String mapDiskTemplateStorageType = Map.fromList $ map ( Types.diskTemplateToRaw &&& Types.storageTypeToRaw . diskTemplateToStorageType) [minBound..maxBound] -- | The set of network-mirrored disk templates dtsIntMirror :: FrozenSet String dtsIntMirror = ConstantUtils.mkSet [dtDrbd8] -- | 'DTDiskless' is 'trivially' externally mirrored dtsExtMirror :: FrozenSet String dtsExtMirror = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTDiskless, DTBlock, DTExt, DTSharedFile, DTRbd, DTGluster] -- | The set of non-lvm-based disk templates dtsNotLvm :: FrozenSet String dtsNotLvm = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTSharedFile, DTDiskless, DTBlock, DTExt, DTFile, DTRbd, DTGluster] -- | The set of disk templates which can be grown dtsGrowable :: FrozenSet String dtsGrowable = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTSharedFile, DTDrbd8, DTPlain, DTExt, DTFile, DTRbd, DTGluster] -- | The set of disk templates that allow adoption dtsMayAdopt :: FrozenSet String dtsMayAdopt = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTBlock, DTPlain] -- | The set of disk templates that *must* use adoption dtsMustAdopt :: FrozenSet String dtsMustAdopt = ConstantUtils.mkSet [Types.diskTemplateToRaw DTBlock] -- | The set of disk templates that allow migrations dtsMirrored :: FrozenSet String dtsMirrored = dtsIntMirror `ConstantUtils.union` dtsExtMirror -- | The set of file based disk templates dtsFilebased :: FrozenSet String dtsFilebased = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTSharedFile, DTFile, DTGluster] -- | The set of disk templates that can be moved by copying -- -- Note: a requirement is that they're not accessed externally or -- shared between nodes; in particular, sharedfile is not suitable. dtsCopyable :: FrozenSet String dtsCopyable = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTPlain, DTFile] -- | The set of disk templates that are supported by exclusive_storage dtsExclStorage :: FrozenSet String dtsExclStorage = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTPlain] -- | Templates for which we don't perform checks on free space dtsNoFreeSpaceCheck :: FrozenSet String dtsNoFreeSpaceCheck = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTExt, DTSharedFile, DTFile, DTRbd, DTGluster] dtsBlock :: FrozenSet String dtsBlock = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTPlain, DTDrbd8, DTBlock, DTRbd, DTExt] -- | The set of lvm-based disk templates dtsLvm :: FrozenSet String dtsLvm = diskTemplates `ConstantUtils.difference` dtsNotLvm -- | The set of lvm-based disk templates dtsHaveAccess :: FrozenSet String dtsHaveAccess = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTRbd, DTGluster, DTExt] -- | The set of disk templates that cannot convert from dtsNotConvertibleFrom :: FrozenSet String dtsNotConvertibleFrom = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTDiskless] -- | The set of disk templates that cannot convert to dtsNotConvertibleTo :: FrozenSet String dtsNotConvertibleTo = ConstantUtils.mkSet $ map Types.diskTemplateToRaw [DTDiskless, DTBlock] -- * Drbd drbdHmacAlg :: String drbdHmacAlg = "md5" drbdDefaultNetProtocol :: String drbdDefaultNetProtocol = "C" drbdMigrationNetProtocol :: String drbdMigrationNetProtocol = "C" drbdStatusFile :: String drbdStatusFile = "/proc/drbd" -- | The length of generated DRBD secrets (see also TempRes module). drbdSecretLength :: Int drbdSecretLength = 20 -- | Size of DRBD meta block device drbdMetaSize :: Int drbdMetaSize = 128 -- * Drbd barrier types drbdBDiskBarriers :: String drbdBDiskBarriers = "b" drbdBDiskDrain :: String drbdBDiskDrain = "d" drbdBDiskFlush :: String drbdBDiskFlush = "f" drbdBNone :: String drbdBNone = "n" -- | Valid barrier combinations: "n" or any non-null subset of "bfd" drbdValidBarrierOpt :: FrozenSet (FrozenSet String) drbdValidBarrierOpt = ConstantUtils.mkSet [ ConstantUtils.mkSet [drbdBNone] , ConstantUtils.mkSet [drbdBDiskBarriers] , ConstantUtils.mkSet [drbdBDiskDrain] , ConstantUtils.mkSet [drbdBDiskFlush] , ConstantUtils.mkSet [drbdBDiskDrain, drbdBDiskFlush] , ConstantUtils.mkSet [drbdBDiskBarriers, drbdBDiskDrain] , ConstantUtils.mkSet [drbdBDiskBarriers, drbdBDiskFlush] , ConstantUtils.mkSet [drbdBDiskBarriers, drbdBDiskFlush, drbdBDiskDrain] ] -- | Rbd tool command rbdCmd :: String rbdCmd = "rbd" -- * File backend driver fdBlktap :: String fdBlktap = Types.fileDriverToRaw FileBlktap fdBlktap2 :: String fdBlktap2 = Types.fileDriverToRaw FileBlktap2 fdLoop :: String fdLoop = Types.fileDriverToRaw FileLoop fdDefault :: String fdDefault = fdLoop fileDriver :: FrozenSet String fileDriver = ConstantUtils.mkSet $ map Types.fileDriverToRaw [minBound..] -- | The set of drbd-like disk types dtsDrbd :: FrozenSet String dtsDrbd = ConstantUtils.mkSet [Types.diskTemplateToRaw DTDrbd8] -- * Disk access mode diskRdonly :: String diskRdonly = Types.diskModeToRaw DiskRdOnly diskRdwr :: String diskRdwr = Types.diskModeToRaw DiskRdWr diskAccessSet :: FrozenSet String diskAccessSet = ConstantUtils.mkSet $ map Types.diskModeToRaw [minBound..] -- * Disk replacement mode replaceDiskAuto :: String replaceDiskAuto = Types.replaceDisksModeToRaw ReplaceAuto replaceDiskChg :: String replaceDiskChg = Types.replaceDisksModeToRaw ReplaceNewSecondary replaceDiskPri :: String replaceDiskPri = Types.replaceDisksModeToRaw ReplaceOnPrimary replaceDiskSec :: String replaceDiskSec = Types.replaceDisksModeToRaw ReplaceOnSecondary replaceModes :: FrozenSet String replaceModes = ConstantUtils.mkSet $ map Types.replaceDisksModeToRaw [minBound..] -- * Instance export mode exportModeLocal :: String exportModeLocal = Types.exportModeToRaw ExportModeLocal exportModeRemote :: String exportModeRemote = Types.exportModeToRaw ExportModeRemote exportModes :: FrozenSet String exportModes = ConstantUtils.mkSet $ map Types.exportModeToRaw [minBound..] -- * Instance creation modes instanceCreate :: String instanceCreate = Types.instCreateModeToRaw InstCreate instanceImport :: String instanceImport = Types.instCreateModeToRaw InstImport instanceRemoteImport :: String instanceRemoteImport = Types.instCreateModeToRaw InstRemoteImport instanceCreateModes :: FrozenSet String instanceCreateModes = ConstantUtils.mkSet $ map Types.instCreateModeToRaw [minBound..] -- * Remote import/export handshake message and version rieHandshake :: String rieHandshake = "Hi, I'm Ganeti" rieVersion :: Int rieVersion = 0 -- | Remote import/export certificate validity (seconds) rieCertValidity :: Int rieCertValidity = 24 * 60 * 60 -- | Export only: how long to wait per connection attempt (seconds) rieConnectAttemptTimeout :: Int rieConnectAttemptTimeout = 20 -- | Export only: number of attempts to connect rieConnectRetries :: Int rieConnectRetries = 10 -- | Overall timeout for establishing connection rieConnectTimeout :: Int rieConnectTimeout = 180 -- | Give child process up to 5 seconds to exit after sending a signal childLingerTimeout :: Double childLingerTimeout = 5.0 -- * Import/export config options inisectBep :: String inisectBep = "backend" inisectExp :: String inisectExp = "export" inisectHyp :: String inisectHyp = "hypervisor" inisectIns :: String inisectIns = "instance" inisectOsp :: String inisectOsp = "os" inisectOspPrivate :: String inisectOspPrivate = "os_private" -- * Dynamic device modification ddmAdd :: String ddmAdd = Types.ddmFullToRaw DdmFullAdd ddmAttach :: String ddmAttach = Types.ddmFullToRaw DdmFullAttach ddmModify :: String ddmModify = Types.ddmFullToRaw DdmFullModify ddmRemove :: String ddmRemove = Types.ddmFullToRaw DdmFullRemove ddmDetach :: String ddmDetach = Types.ddmFullToRaw DdmFullDetach ddmsValues :: FrozenSet String ddmsValues = ConstantUtils.mkSet [ddmAdd, ddmAttach, ddmRemove, ddmDetach] ddmsValuesWithModify :: FrozenSet String ddmsValuesWithModify = ConstantUtils.mkSet $ map Types.ddmFullToRaw [minBound..] -- * Common exit codes exitSuccess :: Int exitSuccess = 0 exitFailure :: Int exitFailure = ConstantUtils.exitFailure exitNotcluster :: Int exitNotcluster = 5 exitNotmaster :: Int exitNotmaster = 11 exitNodesetupError :: Int exitNodesetupError = 12 -- | Need user confirmation exitConfirmation :: Int exitConfirmation = 13 -- | Exit code for query operations with unknown fields exitUnknownField :: Int exitUnknownField = 14 -- * Tags tagCluster :: String tagCluster = Types.tagKindToRaw TagKindCluster tagInstance :: String tagInstance = Types.tagKindToRaw TagKindInstance tagNetwork :: String tagNetwork = Types.tagKindToRaw TagKindNetwork tagNode :: String tagNode = Types.tagKindToRaw TagKindNode tagNodegroup :: String tagNodegroup = Types.tagKindToRaw TagKindGroup validTagTypes :: FrozenSet String validTagTypes = ConstantUtils.mkSet $ map Types.tagKindToRaw [minBound..] maxTagLen :: Int maxTagLen = 128 maxTagsPerObj :: Int maxTagsPerObj = 4096 -- * Others defaultBridge :: String defaultBridge = AutoConf.defaultBridge defaultOvs :: String defaultOvs = "switch1" -- | 60 MiB/s, expressed in KiB/s classicDrbdSyncSpeed :: Int classicDrbdSyncSpeed = 60 * 1024 ip4AddressAny :: String ip4AddressAny = "0.0.0.0" ip4AddressLocalhost :: String ip4AddressLocalhost = "127.0.0.1" ip6AddressAny :: String ip6AddressAny = "::" ip6AddressLocalhost :: String ip6AddressLocalhost = "::1" ip4Version :: Int ip4Version = 4 ip6Version :: Int ip6Version = 6 validIpVersions :: FrozenSet Int validIpVersions = ConstantUtils.mkSet [ip4Version, ip6Version] tcpPingTimeout :: Int tcpPingTimeout = 10 defaultVg :: String defaultVg = AutoConf.defaultVg defaultDrbdHelper :: String defaultDrbdHelper = "/bin/true" minVgSize :: Int minVgSize = 20480 defaultMacPrefix :: String defaultMacPrefix = "aa:00:00" -- | Default maximum instance wait time (seconds) defaultShutdownTimeout :: Int defaultShutdownTimeout = 120 -- | Node clock skew (seconds) nodeMaxClockSkew :: Int nodeMaxClockSkew = 150 -- | Time for an intra-cluster disk transfer to wait for a connection diskTransferConnectTimeout :: Int diskTransferConnectTimeout = 60 -- | Disk index separator diskSeparator :: String diskSeparator = AutoConf.diskSeparator ipCommandPath :: String ipCommandPath = AutoConf.ipPath -- | Key for job IDs in opcode result jobIdsKey :: String jobIdsKey = "jobs" -- * Runparts results runpartsErr :: Int runpartsErr = 2 runpartsRun :: Int runpartsRun = 1 runpartsSkip :: Int runpartsSkip = 0 runpartsStatus :: [Int] runpartsStatus = [runpartsErr, runpartsRun, runpartsSkip] -- * RPC rpcEncodingNone :: Int rpcEncodingNone = 0 rpcEncodingZlibBase64 :: Int rpcEncodingZlibBase64 = 1 -- * Timeout table -- -- Various time constants for the timeout table rpcTmoUrgent :: Int rpcTmoUrgent = Types.rpcTimeoutToRaw Urgent rpcTmoFast :: Int rpcTmoFast = Types.rpcTimeoutToRaw Fast rpcTmoNormal :: Int rpcTmoNormal = Types.rpcTimeoutToRaw Normal rpcTmoSlow :: Int rpcTmoSlow = Types.rpcTimeoutToRaw Slow -- | 'rpcTmo_4hrs' contains an underscore to circumvent a limitation -- in the 'Ganeti.THH.deCamelCase' function and generate the correct -- Python name. rpcTmo_4hrs :: Int rpcTmo_4hrs = Types.rpcTimeoutToRaw FourHours -- | 'rpcTmo_1day' contains an underscore to circumvent a limitation -- in the 'Ganeti.THH.deCamelCase' function and generate the correct -- Python name. rpcTmo_1day :: Int rpcTmo_1day = Types.rpcTimeoutToRaw OneDay -- | Timeout for connecting to nodes (seconds) rpcConnectTimeout :: Int rpcConnectTimeout = 5 -- OS osScriptCreate :: String osScriptCreate = "create" osScriptCreateUntrusted :: String osScriptCreateUntrusted = "create_untrusted" osScriptExport :: String osScriptExport = "export" osScriptImport :: String osScriptImport = "import" osScriptRename :: String osScriptRename = "rename" osScriptVerify :: String osScriptVerify = "verify" osScripts :: [String] osScripts = [osScriptCreate, osScriptCreateUntrusted, osScriptExport, osScriptImport, osScriptRename, osScriptVerify] osApiFile :: String osApiFile = "ganeti_api_version" osVariantsFile :: String osVariantsFile = "variants.list" osParametersFile :: String osParametersFile = "parameters.list" osValidateParameters :: String osValidateParameters = "parameters" osValidateCalls :: FrozenSet String osValidateCalls = ConstantUtils.mkSet [osValidateParameters] -- | External Storage (ES) related constants esActionAttach :: String esActionAttach = "attach" esActionCreate :: String esActionCreate = "create" esActionDetach :: String esActionDetach = "detach" esActionGrow :: String esActionGrow = "grow" esActionRemove :: String esActionRemove = "remove" esActionSetinfo :: String esActionSetinfo = "setinfo" esActionVerify :: String esActionVerify = "verify" esActionSnapshot :: String esActionSnapshot = "snapshot" esScriptCreate :: String esScriptCreate = esActionCreate esScriptRemove :: String esScriptRemove = esActionRemove esScriptGrow :: String esScriptGrow = esActionGrow esScriptAttach :: String esScriptAttach = esActionAttach esScriptDetach :: String esScriptDetach = esActionDetach esScriptSetinfo :: String esScriptSetinfo = esActionSetinfo esScriptVerify :: String esScriptVerify = esActionVerify esScriptSnapshot :: String esScriptSnapshot = esActionSnapshot esScripts :: FrozenSet String esScripts = ConstantUtils.mkSet [esScriptAttach, esScriptCreate, esScriptDetach, esScriptGrow, esScriptRemove, esScriptSetinfo, esScriptVerify, esScriptSnapshot] esParametersFile :: String esParametersFile = "parameters.list" -- * Reboot types instanceRebootSoft :: String instanceRebootSoft = Types.rebootTypeToRaw RebootSoft instanceRebootHard :: String instanceRebootHard = Types.rebootTypeToRaw RebootHard instanceRebootFull :: String instanceRebootFull = Types.rebootTypeToRaw RebootFull rebootTypes :: FrozenSet String rebootTypes = ConstantUtils.mkSet $ map Types.rebootTypeToRaw [minBound..] -- * Instance reboot behaviors instanceRebootAllowed :: String instanceRebootAllowed = "reboot" instanceRebootExit :: String instanceRebootExit = "exit" rebootBehaviors :: [String] rebootBehaviors = [instanceRebootAllowed, instanceRebootExit] -- * VTypes vtypeBool :: VType vtypeBool = VTypeBool vtypeInt :: VType vtypeInt = VTypeInt vtypeFloat :: VType vtypeFloat = VTypeFloat vtypeMaybeString :: VType vtypeMaybeString = VTypeMaybeString -- | Size in MiBs vtypeSize :: VType vtypeSize = VTypeSize vtypeString :: VType vtypeString = VTypeString enforceableTypes :: FrozenSet VType enforceableTypes = ConstantUtils.mkSet [minBound..] -- | Constant representing that the user does not specify any IP version ifaceNoIpVersionSpecified :: Int ifaceNoIpVersionSpecified = 0 validSerialSpeeds :: [Int] validSerialSpeeds = [75, 110, 300, 600, 1200, 1800, 2400, 4800, 9600, 14400, 19200, 28800, 38400, 57600, 115200, 230400, 345600, 460800] -- * HV parameter names (global namespace) hvAcpi :: String hvAcpi = "acpi" hvBlockdevPrefix :: String hvBlockdevPrefix = "blockdev_prefix" hvBootloaderArgs :: String hvBootloaderArgs = "bootloader_args" hvBootloaderPath :: String hvBootloaderPath = "bootloader_path" hvBootOrder :: String hvBootOrder = "boot_order" hvCdromImagePath :: String hvCdromImagePath = "cdrom_image_path" hvCpuCap :: String hvCpuCap = "cpu_cap" hvCpuCores :: String hvCpuCores = "cpu_cores" hvCpuMask :: String hvCpuMask = "cpu_mask" hvCpuSockets :: String hvCpuSockets = "cpu_sockets" hvCpuThreads :: String hvCpuThreads = "cpu_threads" hvCpuType :: String hvCpuType = "cpu_type" hvCpuWeight :: String hvCpuWeight = "cpu_weight" hvDeviceModel :: String hvDeviceModel = "device_model" hvDiskCache :: String hvDiskCache = "disk_cache" hvDiskType :: String hvDiskType = "disk_type" hvInitrdPath :: String hvInitrdPath = "initrd_path" hvInitScript :: String hvInitScript = "init_script" hvKernelArgs :: String hvKernelArgs = "kernel_args" hvKernelPath :: String hvKernelPath = "kernel_path" hvKeymap :: String hvKeymap = "keymap" hvKvmCdrom2ImagePath :: String hvKvmCdrom2ImagePath = "cdrom2_image_path" hvKvmCdromDiskType :: String hvKvmCdromDiskType = "cdrom_disk_type" hvKvmExtra :: String hvKvmExtra = "kvm_extra" hvKvmFlag :: String hvKvmFlag = "kvm_flag" hvKvmFloppyImagePath :: String hvKvmFloppyImagePath = "floppy_image_path" hvKvmMachineVersion :: String hvKvmMachineVersion = "machine_version" hvKvmMigrationCaps :: String hvKvmMigrationCaps = "migration_caps" hvKvmPath :: String hvKvmPath = "kvm_path" hvKvmDiskAio :: String hvKvmDiskAio = "disk_aio" hvKvmSpiceAudioCompr :: String hvKvmSpiceAudioCompr = "spice_playback_compression" hvKvmSpiceBind :: String hvKvmSpiceBind = "spice_bind" hvKvmSpiceIpVersion :: String hvKvmSpiceIpVersion = "spice_ip_version" hvKvmSpiceJpegImgCompr :: String hvKvmSpiceJpegImgCompr = "spice_jpeg_wan_compression" hvKvmSpiceLosslessImgCompr :: String hvKvmSpiceLosslessImgCompr = "spice_image_compression" hvKvmSpicePasswordFile :: String hvKvmSpicePasswordFile = "spice_password_file" hvKvmSpiceStreamingVideoDetection :: String hvKvmSpiceStreamingVideoDetection = "spice_streaming_video" hvKvmSpiceTlsCiphers :: String hvKvmSpiceTlsCiphers = "spice_tls_ciphers" hvKvmSpiceUseTls :: String hvKvmSpiceUseTls = "spice_use_tls" hvKvmSpiceUseVdagent :: String hvKvmSpiceUseVdagent = "spice_use_vdagent" hvKvmSpiceZlibGlzImgCompr :: String hvKvmSpiceZlibGlzImgCompr = "spice_zlib_glz_wan_compression" hvKvmUseChroot :: String hvKvmUseChroot = "use_chroot" hvKvmUserShutdown :: String hvKvmUserShutdown = "user_shutdown" hvLxcStartupTimeout :: String hvLxcStartupTimeout = "startup_timeout" hvLxcExtraCgroups :: String hvLxcExtraCgroups = "extra_cgroups" hvLxcDevices :: String hvLxcDevices = "devices" hvLxcDropCapabilities :: String hvLxcDropCapabilities = "drop_capabilities" hvLxcExtraConfig :: String hvLxcExtraConfig = "extra_config" hvLxcNumTtys :: String hvLxcNumTtys = "num_ttys" hvMemPath :: String hvMemPath = "mem_path" hvMigrationBandwidth :: String hvMigrationBandwidth = "migration_bandwidth" hvMigrationDowntime :: String hvMigrationDowntime = "migration_downtime" hvMigrationMode :: String hvMigrationMode = "migration_mode" hvMigrationPort :: String hvMigrationPort = "migration_port" hvNicType :: String hvNicType = "nic_type" hvPae :: String hvPae = "pae" hvPassthrough :: String hvPassthrough = "pci_pass" hvRebootBehavior :: String hvRebootBehavior = "reboot_behavior" hvRootPath :: String hvRootPath = "root_path" hvSecurityDomain :: String hvSecurityDomain = "security_domain" hvSecurityModel :: String hvSecurityModel = "security_model" hvSerialConsole :: String hvSerialConsole = "serial_console" hvSerialSpeed :: String hvSerialSpeed = "serial_speed" hvSoundhw :: String hvSoundhw = "soundhw" hvUsbDevices :: String hvUsbDevices = "usb_devices" hvUsbMouse :: String hvUsbMouse = "usb_mouse" hvUseBootloader :: String hvUseBootloader = "use_bootloader" hvUseLocaltime :: String hvUseLocaltime = "use_localtime" hvVga :: String hvVga = "vga" hvVhostNet :: String hvVhostNet = "vhost_net" hvVirtioNetQueues :: String hvVirtioNetQueues = "virtio_net_queues" hvVifScript :: String hvVifScript = "vif_script" hvVifType :: String hvVifType = "vif_type" hvViridian :: String hvViridian = "viridian" hvVncBindAddress :: String hvVncBindAddress = "vnc_bind_address" hvVncPasswordFile :: String hvVncPasswordFile = "vnc_password_file" hvVncTls :: String hvVncTls = "vnc_tls" hvVncX509 :: String hvVncX509 = "vnc_x509_path" hvVncX509Verify :: String hvVncX509Verify = "vnc_x509_verify" hvVnetHdr :: String hvVnetHdr = "vnet_hdr" hvXenCmd :: String hvXenCmd = "xen_cmd" hvXenCpuid :: String hvXenCpuid = "cpuid" hvsParameterTitles :: Map String String hvsParameterTitles = Map.fromList [(hvAcpi, "ACPI"), (hvBootOrder, "Boot_order"), (hvCdromImagePath, "CDROM_image_path"), (hvCpuType, "cpu_type"), (hvDiskType, "Disk_type"), (hvInitrdPath, "Initrd_path"), (hvKernelPath, "Kernel_path"), (hvNicType, "NIC_type"), (hvPae, "PAE"), (hvPassthrough, "pci_pass"), (hvVncBindAddress, "VNC_bind_address")] hvsParameters :: FrozenSet String hvsParameters = ConstantUtils.mkSet $ Map.keys hvsParameterTypes hvsParameterTypes :: Map String VType hvsParameterTypes = Map.fromList [ (hvAcpi, VTypeBool) , (hvBlockdevPrefix, VTypeString) , (hvBootloaderArgs, VTypeString) , (hvBootloaderPath, VTypeString) , (hvBootOrder, VTypeString) , (hvCdromImagePath, VTypeString) , (hvCpuCap, VTypeInt) , (hvCpuCores, VTypeInt) , (hvCpuMask, VTypeString) , (hvCpuSockets, VTypeInt) , (hvCpuThreads, VTypeInt) , (hvCpuType, VTypeString) , (hvCpuWeight, VTypeInt) , (hvDeviceModel, VTypeString) , (hvDiskCache, VTypeString) , (hvDiskType, VTypeString) , (hvInitrdPath, VTypeString) , (hvInitScript, VTypeString) , (hvKernelArgs, VTypeString) , (hvKernelPath, VTypeString) , (hvKeymap, VTypeString) , (hvKvmCdrom2ImagePath, VTypeString) , (hvKvmCdromDiskType, VTypeString) , (hvKvmExtra, VTypeString) , (hvKvmFlag, VTypeString) , (hvKvmFloppyImagePath, VTypeString) , (hvKvmMachineVersion, VTypeString) , (hvKvmMigrationCaps, VTypeString) , (hvKvmPath, VTypeString) , (hvKvmDiskAio, VTypeString) , (hvKvmSpiceAudioCompr, VTypeBool) , (hvKvmSpiceBind, VTypeString) , (hvKvmSpiceIpVersion, VTypeInt) , (hvKvmSpiceJpegImgCompr, VTypeString) , (hvKvmSpiceLosslessImgCompr, VTypeString) , (hvKvmSpicePasswordFile, VTypeString) , (hvKvmSpiceStreamingVideoDetection, VTypeString) , (hvKvmSpiceTlsCiphers, VTypeString) , (hvKvmSpiceUseTls, VTypeBool) , (hvKvmSpiceUseVdagent, VTypeBool) , (hvKvmSpiceZlibGlzImgCompr, VTypeString) , (hvKvmUseChroot, VTypeBool) , (hvKvmUserShutdown, VTypeBool) , (hvLxcDevices, VTypeString) , (hvLxcDropCapabilities, VTypeString) , (hvLxcExtraCgroups, VTypeString) , (hvLxcExtraConfig, VTypeString) , (hvLxcNumTtys, VTypeInt) , (hvLxcStartupTimeout, VTypeInt) , (hvMemPath, VTypeString) , (hvMigrationBandwidth, VTypeInt) , (hvMigrationDowntime, VTypeInt) , (hvMigrationMode, VTypeString) , (hvMigrationPort, VTypeInt) , (hvNicType, VTypeString) , (hvPae, VTypeBool) , (hvPassthrough, VTypeString) , (hvRebootBehavior, VTypeString) , (hvRootPath, VTypeMaybeString) , (hvSecurityDomain, VTypeString) , (hvSecurityModel, VTypeString) , (hvSerialConsole, VTypeBool) , (hvSerialSpeed, VTypeInt) , (hvSoundhw, VTypeString) , (hvUsbDevices, VTypeString) , (hvUsbMouse, VTypeString) , (hvUseBootloader, VTypeBool) , (hvUseLocaltime, VTypeBool) , (hvVga, VTypeString) , (hvVhostNet, VTypeBool) , (hvVirtioNetQueues, VTypeInt) , (hvVifScript, VTypeString) , (hvVifType, VTypeString) , (hvViridian, VTypeBool) , (hvVncBindAddress, VTypeString) , (hvVncPasswordFile, VTypeString) , (hvVncTls, VTypeBool) , (hvVncX509, VTypeString) , (hvVncX509Verify, VTypeBool) , (hvVnetHdr, VTypeBool) , (hvXenCmd, VTypeString) , (hvXenCpuid, VTypeString) ] -- * Migration statuses hvMigrationActive :: String hvMigrationActive = "active" hvMigrationCancelled :: String hvMigrationCancelled = "cancelled" hvMigrationCompleted :: String hvMigrationCompleted = "completed" hvMigrationFailed :: String hvMigrationFailed = "failed" hvMigrationValidStatuses :: FrozenSet String hvMigrationValidStatuses = ConstantUtils.mkSet [hvMigrationActive, hvMigrationCancelled, hvMigrationCompleted, hvMigrationFailed] hvMigrationFailedStatuses :: FrozenSet String hvMigrationFailedStatuses = ConstantUtils.mkSet [hvMigrationFailed, hvMigrationCancelled] -- | KVM-specific statuses -- -- FIXME: this constant seems unnecessary hvKvmMigrationValidStatuses :: FrozenSet String hvKvmMigrationValidStatuses = hvMigrationValidStatuses -- | Node info keys hvNodeinfoKeyVersion :: String hvNodeinfoKeyVersion = "hv_version" -- * Hypervisor state hvstCpuNode :: String hvstCpuNode = "cpu_node" hvstCpuTotal :: String hvstCpuTotal = "cpu_total" hvstMemoryHv :: String hvstMemoryHv = "mem_hv" hvstMemoryNode :: String hvstMemoryNode = "mem_node" hvstMemoryTotal :: String hvstMemoryTotal = "mem_total" hvstsParameters :: FrozenSet String hvstsParameters = ConstantUtils.mkSet [hvstCpuNode, hvstCpuTotal, hvstMemoryHv, hvstMemoryNode, hvstMemoryTotal] hvstDefaults :: Map String Int hvstDefaults = Map.fromList [(hvstCpuNode, 1), (hvstCpuTotal, 1), (hvstMemoryHv, 0), (hvstMemoryTotal, 0), (hvstMemoryNode, 0)] hvstsParameterTypes :: Map String VType hvstsParameterTypes = Map.fromList [(hvstMemoryTotal, VTypeInt), (hvstMemoryNode, VTypeInt), (hvstMemoryHv, VTypeInt), (hvstCpuTotal, VTypeInt), (hvstCpuNode, VTypeInt)] -- * Disk state dsDiskOverhead :: String dsDiskOverhead = "disk_overhead" dsDiskReserved :: String dsDiskReserved = "disk_reserved" dsDiskTotal :: String dsDiskTotal = "disk_total" dsDefaults :: Map String Int dsDefaults = Map.fromList [(dsDiskTotal, 0), (dsDiskReserved, 0), (dsDiskOverhead, 0)] dssParameterTypes :: Map String VType dssParameterTypes = Map.fromList [(dsDiskTotal, VTypeInt), (dsDiskReserved, VTypeInt), (dsDiskOverhead, VTypeInt)] dssParameters :: FrozenSet String dssParameters = ConstantUtils.mkSet [dsDiskTotal, dsDiskReserved, dsDiskOverhead] dsValidTypes :: FrozenSet String dsValidTypes = ConstantUtils.mkSet [Types.diskTemplateToRaw DTPlain] -- Backend parameter names beAlwaysFailover :: String beAlwaysFailover = "always_failover" beAutoBalance :: String beAutoBalance = "auto_balance" beMaxmem :: String beMaxmem = "maxmem" -- | Deprecated and replaced by max and min mem beMemory :: String beMemory = "memory" beMinmem :: String beMinmem = "minmem" beSpindleUse :: String beSpindleUse = "spindle_use" beVcpus :: String beVcpus = "vcpus" besParameterTypes :: Map String VType besParameterTypes = Map.fromList [(beAlwaysFailover, VTypeBool), (beAutoBalance, VTypeBool), (beMaxmem, VTypeSize), (beMinmem, VTypeSize), (beSpindleUse, VTypeInt), (beVcpus, VTypeInt)] besParameterTitles :: Map String String besParameterTitles = Map.fromList [(beAutoBalance, "Auto_balance"), (beMinmem, "ConfigMinMem"), (beVcpus, "ConfigVCPUs"), (beMaxmem, "ConfigMaxMem")] besParameterCompat :: Map String VType besParameterCompat = Map.insert beMemory VTypeSize besParameterTypes besParameters :: FrozenSet String besParameters = ConstantUtils.mkSet [beAlwaysFailover, beAutoBalance, beMaxmem, beMinmem, beSpindleUse, beVcpus] -- | Instance specs -- -- FIXME: these should be associated with 'Ganeti.HTools.Types.ISpec' ispecMemSize :: String ispecMemSize = ConstantUtils.ispecMemSize ispecCpuCount :: String ispecCpuCount = ConstantUtils.ispecCpuCount ispecDiskCount :: String ispecDiskCount = ConstantUtils.ispecDiskCount ispecDiskSize :: String ispecDiskSize = ConstantUtils.ispecDiskSize ispecNicCount :: String ispecNicCount = ConstantUtils.ispecNicCount ispecSpindleUse :: String ispecSpindleUse = ConstantUtils.ispecSpindleUse ispecsParameterTypes :: Map String VType ispecsParameterTypes = Map.fromList [(ConstantUtils.ispecDiskSize, VTypeInt), (ConstantUtils.ispecCpuCount, VTypeInt), (ConstantUtils.ispecSpindleUse, VTypeInt), (ConstantUtils.ispecMemSize, VTypeInt), (ConstantUtils.ispecNicCount, VTypeInt), (ConstantUtils.ispecDiskCount, VTypeInt)] ispecsParameters :: FrozenSet String ispecsParameters = ConstantUtils.mkSet [ConstantUtils.ispecCpuCount, ConstantUtils.ispecDiskCount, ConstantUtils.ispecDiskSize, ConstantUtils.ispecMemSize, ConstantUtils.ispecNicCount, ConstantUtils.ispecSpindleUse] ispecsMinmax :: String ispecsMinmax = ConstantUtils.ispecsMinmax ispecsMax :: String ispecsMax = "max" ispecsMin :: String ispecsMin = "min" ispecsStd :: String ispecsStd = ConstantUtils.ispecsStd ipolicyDts :: String ipolicyDts = ConstantUtils.ipolicyDts ipolicyVcpuRatio :: String ipolicyVcpuRatio = ConstantUtils.ipolicyVcpuRatio ipolicySpindleRatio :: String ipolicySpindleRatio = ConstantUtils.ipolicySpindleRatio ispecsMinmaxKeys :: FrozenSet String ispecsMinmaxKeys = ConstantUtils.mkSet [ispecsMax, ispecsMin] ipolicyParameters :: FrozenSet String ipolicyParameters = ConstantUtils.mkSet [ConstantUtils.ipolicyVcpuRatio, ConstantUtils.ipolicySpindleRatio] ipolicyAllKeys :: FrozenSet String ipolicyAllKeys = ConstantUtils.union ipolicyParameters $ ConstantUtils.mkSet [ConstantUtils.ipolicyDts, ConstantUtils.ispecsMinmax, ispecsStd] -- | Node parameter names ndExclusiveStorage :: String ndExclusiveStorage = "exclusive_storage" ndOobProgram :: String ndOobProgram = "oob_program" ndSpindleCount :: String ndSpindleCount = "spindle_count" ndOvs :: String ndOvs = "ovs" ndOvsLink :: String ndOvsLink = "ovs_link" ndOvsName :: String ndOvsName = "ovs_name" ndSshPort :: String ndSshPort = "ssh_port" ndCpuSpeed :: String ndCpuSpeed = "cpu_speed" ndsParameterTypes :: Map String VType ndsParameterTypes = Map.fromList [(ndExclusiveStorage, VTypeBool), (ndOobProgram, VTypeString), (ndOvs, VTypeBool), (ndOvsLink, VTypeMaybeString), (ndOvsName, VTypeMaybeString), (ndSpindleCount, VTypeInt), (ndSshPort, VTypeInt), (ndCpuSpeed, VTypeFloat)] ndsParameters :: FrozenSet String ndsParameters = ConstantUtils.mkSet (Map.keys ndsParameterTypes) ndsParameterTitles :: Map String String ndsParameterTitles = Map.fromList [(ndExclusiveStorage, "ExclusiveStorage"), (ndOobProgram, "OutOfBandProgram"), (ndOvs, "OpenvSwitch"), (ndOvsLink, "OpenvSwitchLink"), (ndOvsName, "OpenvSwitchName"), (ndSpindleCount, "SpindleCount")] -- * Logical Disks parameters ldpAccess :: String ldpAccess = "access" ldpBarriers :: String ldpBarriers = "disabled-barriers" ldpDefaultMetavg :: String ldpDefaultMetavg = "default-metavg" ldpDelayTarget :: String ldpDelayTarget = "c-delay-target" ldpDiskCustom :: String ldpDiskCustom = "disk-custom" ldpDynamicResync :: String ldpDynamicResync = "dynamic-resync" ldpFillTarget :: String ldpFillTarget = "c-fill-target" ldpMaxRate :: String ldpMaxRate = "c-max-rate" ldpMinRate :: String ldpMinRate = "c-min-rate" ldpNetCustom :: String ldpNetCustom = "net-custom" ldpNoMetaFlush :: String ldpNoMetaFlush = "disable-meta-flush" ldpPlanAhead :: String ldpPlanAhead = "c-plan-ahead" ldpPool :: String ldpPool = "pool" ldpProtocol :: String ldpProtocol = "protocol" ldpResyncRate :: String ldpResyncRate = "resync-rate" ldpStripes :: String ldpStripes = "stripes" diskLdTypes :: Map String VType diskLdTypes = Map.fromList [(ldpAccess, VTypeString), (ldpResyncRate, VTypeInt), (ldpStripes, VTypeInt), (ldpBarriers, VTypeString), (ldpNoMetaFlush, VTypeBool), (ldpDefaultMetavg, VTypeString), (ldpDiskCustom, VTypeString), (ldpNetCustom, VTypeString), (ldpProtocol, VTypeString), (ldpDynamicResync, VTypeBool), (ldpPlanAhead, VTypeInt), (ldpFillTarget, VTypeInt), (ldpDelayTarget, VTypeInt), (ldpMaxRate, VTypeInt), (ldpMinRate, VTypeInt), (ldpPool, VTypeString)] diskLdParameters :: FrozenSet String diskLdParameters = ConstantUtils.mkSet (Map.keys diskLdTypes) -- * Disk template parameters -- -- Disk template parameters can be set/changed by the user via -- gnt-cluster and gnt-group) drbdResyncRate :: String drbdResyncRate = "resync-rate" drbdDataStripes :: String drbdDataStripes = "data-stripes" drbdMetaStripes :: String drbdMetaStripes = "meta-stripes" drbdDiskBarriers :: String drbdDiskBarriers = "disk-barriers" drbdMetaBarriers :: String drbdMetaBarriers = "meta-barriers" drbdDefaultMetavg :: String drbdDefaultMetavg = "metavg" drbdDiskCustom :: String drbdDiskCustom = "disk-custom" drbdNetCustom :: String drbdNetCustom = "net-custom" drbdProtocol :: String drbdProtocol = "protocol" drbdDynamicResync :: String drbdDynamicResync = "dynamic-resync" drbdPlanAhead :: String drbdPlanAhead = "c-plan-ahead" drbdFillTarget :: String drbdFillTarget = "c-fill-target" drbdDelayTarget :: String drbdDelayTarget = "c-delay-target" drbdMaxRate :: String drbdMaxRate = "c-max-rate" drbdMinRate :: String drbdMinRate = "c-min-rate" lvStripes :: String lvStripes = "stripes" rbdAccess :: String rbdAccess = "access" rbdPool :: String rbdPool = "pool" diskDtTypes :: Map String VType diskDtTypes = Map.fromList [(drbdResyncRate, VTypeInt), (drbdDataStripes, VTypeInt), (drbdMetaStripes, VTypeInt), (drbdDiskBarriers, VTypeString), (drbdMetaBarriers, VTypeBool), (drbdDefaultMetavg, VTypeString), (drbdDiskCustom, VTypeString), (drbdNetCustom, VTypeString), (drbdProtocol, VTypeString), (drbdDynamicResync, VTypeBool), (drbdPlanAhead, VTypeInt), (drbdFillTarget, VTypeInt), (drbdDelayTarget, VTypeInt), (drbdMaxRate, VTypeInt), (drbdMinRate, VTypeInt), (lvStripes, VTypeInt), (rbdAccess, VTypeString), (rbdPool, VTypeString), (glusterHost, VTypeString), (glusterVolume, VTypeString), (glusterPort, VTypeInt) ] diskDtParameters :: FrozenSet String diskDtParameters = ConstantUtils.mkSet (Map.keys diskDtTypes) -- * Dynamic disk parameters ddpLocalIp :: String ddpLocalIp = "local-ip" ddpRemoteIp :: String ddpRemoteIp = "remote-ip" ddpPort :: String ddpPort = "port" ddpLocalMinor :: String ddpLocalMinor = "local-minor" ddpRemoteMinor :: String ddpRemoteMinor = "remote-minor" -- * OOB supported commands oobPowerOn :: String oobPowerOn = Types.oobCommandToRaw OobPowerOn oobPowerOff :: String oobPowerOff = Types.oobCommandToRaw OobPowerOff oobPowerCycle :: String oobPowerCycle = Types.oobCommandToRaw OobPowerCycle oobPowerStatus :: String oobPowerStatus = Types.oobCommandToRaw OobPowerStatus oobHealth :: String oobHealth = Types.oobCommandToRaw OobHealth oobCommands :: FrozenSet String oobCommands = ConstantUtils.mkSet $ map Types.oobCommandToRaw [minBound..] oobPowerStatusPowered :: String oobPowerStatusPowered = "powered" -- | 60 seconds oobTimeout :: Int oobTimeout = 60 -- | 2 seconds oobPowerDelay :: Double oobPowerDelay = 2.0 oobStatusCritical :: String oobStatusCritical = Types.oobStatusToRaw OobStatusCritical oobStatusOk :: String oobStatusOk = Types.oobStatusToRaw OobStatusOk oobStatusUnknown :: String oobStatusUnknown = Types.oobStatusToRaw OobStatusUnknown oobStatusWarning :: String oobStatusWarning = Types.oobStatusToRaw OobStatusWarning oobStatuses :: FrozenSet String oobStatuses = ConstantUtils.mkSet $ map Types.oobStatusToRaw [minBound..] -- | Instance Parameters Profile ppDefault :: String ppDefault = "default" -- * nic* constants are used inside the ganeti config nicLink :: String nicLink = "link" nicMode :: String nicMode = "mode" nicVlan :: String nicVlan = "vlan" nicsParameterTypes :: Map String VType nicsParameterTypes = Map.fromList [(nicMode, vtypeString), (nicLink, vtypeString), (nicVlan, vtypeString)] nicsParameters :: FrozenSet String nicsParameters = ConstantUtils.mkSet (Map.keys nicsParameterTypes) nicModeBridged :: String nicModeBridged = Types.nICModeToRaw NMBridged nicModeRouted :: String nicModeRouted = Types.nICModeToRaw NMRouted nicModeOvs :: String nicModeOvs = Types.nICModeToRaw NMOvs nicIpPool :: String nicIpPool = Types.nICModeToRaw NMPool nicValidModes :: FrozenSet String nicValidModes = ConstantUtils.mkSet $ map Types.nICModeToRaw [minBound..] releaseAction :: String releaseAction = "release" reserveAction :: String reserveAction = "reserve" -- * idisk* constants are used in opcodes, to create/change disks idiskAdopt :: String idiskAdopt = "adopt" idiskMetavg :: String idiskMetavg = "metavg" idiskMode :: String idiskMode = "mode" idiskName :: String idiskName = "name" idiskSize :: String idiskSize = "size" idiskSpindles :: String idiskSpindles = "spindles" idiskVg :: String idiskVg = "vg" idiskProvider :: String idiskProvider = "provider" idiskAccess :: String idiskAccess = "access" idiskParamsTypes :: Map String VType idiskParamsTypes = Map.fromList [(idiskSize, VTypeSize), (idiskSpindles, VTypeInt), (idiskMode, VTypeString), (idiskAdopt, VTypeString), (idiskVg, VTypeString), (idiskMetavg, VTypeString), (idiskProvider, VTypeString), (idiskAccess, VTypeString), (idiskName, VTypeMaybeString)] idiskParams :: FrozenSet String idiskParams = ConstantUtils.mkSet (Map.keys idiskParamsTypes) modifiableIdiskParamsTypes :: Map String VType modifiableIdiskParamsTypes = Map.fromList [(idiskMode, VTypeString), (idiskName, VTypeString)] modifiableIdiskParams :: FrozenSet String modifiableIdiskParams = ConstantUtils.mkSet (Map.keys modifiableIdiskParamsTypes) -- * inic* constants are used in opcodes, to create/change nics inicBridge :: String inicBridge = "bridge" inicIp :: String inicIp = "ip" inicLink :: String inicLink = "link" inicMac :: String inicMac = "mac" inicMode :: String inicMode = "mode" inicName :: String inicName = "name" inicNetwork :: String inicNetwork = "network" inicVlan :: String inicVlan = "vlan" inicParamsTypes :: Map String VType inicParamsTypes = Map.fromList [(inicBridge, VTypeMaybeString), (inicIp, VTypeMaybeString), (inicLink, VTypeString), (inicMac, VTypeString), (inicMode, VTypeString), (inicName, VTypeMaybeString), (inicNetwork, VTypeMaybeString), (inicVlan, VTypeMaybeString)] inicParams :: FrozenSet String inicParams = ConstantUtils.mkSet (Map.keys inicParamsTypes) -- * Hypervisor constants htXenPvm :: String htXenPvm = Types.hypervisorToRaw XenPvm htFake :: String htFake = Types.hypervisorToRaw Fake htXenHvm :: String htXenHvm = Types.hypervisorToRaw XenHvm htKvm :: String htKvm = Types.hypervisorToRaw Kvm htChroot :: String htChroot = Types.hypervisorToRaw Chroot htLxc :: String htLxc = Types.hypervisorToRaw Lxc hyperTypes :: FrozenSet String hyperTypes = ConstantUtils.mkSet $ map Types.hypervisorToRaw [minBound..] htsReqPort :: FrozenSet String htsReqPort = ConstantUtils.mkSet [htXenHvm, htKvm] vncBasePort :: Int vncBasePort = 5900 vncDefaultBindAddress :: String vncDefaultBindAddress = ip4AddressAny -- * NIC types htNicE1000 :: String htNicE1000 = "e1000" htNicI82551 :: String htNicI82551 = "i82551" htNicI8259er :: String htNicI8259er = "i82559er" htNicI85557b :: String htNicI85557b = "i82557b" htNicNe2kIsa :: String htNicNe2kIsa = "ne2k_isa" htNicNe2kPci :: String htNicNe2kPci = "ne2k_pci" htNicParavirtual :: String htNicParavirtual = "paravirtual" htNicPcnet :: String htNicPcnet = "pcnet" htNicRtl8139 :: String htNicRtl8139 = "rtl8139" htHvmValidNicTypes :: FrozenSet String htHvmValidNicTypes = ConstantUtils.mkSet [htNicE1000, htNicNe2kIsa, htNicNe2kPci, htNicParavirtual, htNicRtl8139] htKvmValidNicTypes :: FrozenSet String htKvmValidNicTypes = ConstantUtils.mkSet [htNicE1000, htNicI82551, htNicI8259er, htNicI85557b, htNicNe2kIsa, htNicNe2kPci, htNicParavirtual, htNicPcnet, htNicRtl8139] -- * Vif types -- | Default vif type in xen-hvm htHvmVifIoemu :: String htHvmVifIoemu = "ioemu" htHvmVifVif :: String htHvmVifVif = "vif" htHvmValidVifTypes :: FrozenSet String htHvmValidVifTypes = ConstantUtils.mkSet [htHvmVifIoemu, htHvmVifVif] -- * Disk types htDiskIde :: String htDiskIde = "ide" htDiskIoemu :: String htDiskIoemu = "ioemu" htDiskMtd :: String htDiskMtd = "mtd" htDiskParavirtual :: String htDiskParavirtual = "paravirtual" htDiskPflash :: String htDiskPflash = "pflash" htDiskScsi :: String htDiskScsi = "scsi" htDiskSd :: String htDiskSd = "sd" htHvmValidDiskTypes :: FrozenSet String htHvmValidDiskTypes = ConstantUtils.mkSet [htDiskIoemu, htDiskParavirtual] htKvmValidDiskTypes :: FrozenSet String htKvmValidDiskTypes = ConstantUtils.mkSet [htDiskIde, htDiskMtd, htDiskParavirtual, htDiskPflash, htDiskScsi, htDiskSd] htCacheDefault :: String htCacheDefault = "default" htCacheNone :: String htCacheNone = "none" htCacheWback :: String htCacheWback = "writeback" htCacheWthrough :: String htCacheWthrough = "writethrough" htValidCacheTypes :: FrozenSet String htValidCacheTypes = ConstantUtils.mkSet [htCacheDefault, htCacheNone, htCacheWback, htCacheWthrough] htKvmAioThreads :: String htKvmAioThreads = "threads" htKvmAioNative :: String htKvmAioNative = "native" htKvmValidAioTypes :: FrozenSet String htKvmValidAioTypes = ConstantUtils.mkSet [htKvmAioThreads, htKvmAioNative] -- * Mouse types htMouseMouse :: String htMouseMouse = "mouse" htMouseTablet :: String htMouseTablet = "tablet" htKvmValidMouseTypes :: FrozenSet String htKvmValidMouseTypes = ConstantUtils.mkSet [htMouseMouse, htMouseTablet] -- * Boot order htBoCdrom :: String htBoCdrom = "cdrom" htBoDisk :: String htBoDisk = "disk" htBoFloppy :: String htBoFloppy = "floppy" htBoNetwork :: String htBoNetwork = "network" htKvmValidBoTypes :: FrozenSet String htKvmValidBoTypes = ConstantUtils.mkSet [htBoCdrom, htBoDisk, htBoFloppy, htBoNetwork] -- * SPICE lossless image compression options htKvmSpiceLosslessImgComprAutoGlz :: String htKvmSpiceLosslessImgComprAutoGlz = "auto_glz" htKvmSpiceLosslessImgComprAutoLz :: String htKvmSpiceLosslessImgComprAutoLz = "auto_lz" htKvmSpiceLosslessImgComprGlz :: String htKvmSpiceLosslessImgComprGlz = "glz" htKvmSpiceLosslessImgComprLz :: String htKvmSpiceLosslessImgComprLz = "lz" htKvmSpiceLosslessImgComprOff :: String htKvmSpiceLosslessImgComprOff = "off" htKvmSpiceLosslessImgComprQuic :: String htKvmSpiceLosslessImgComprQuic = "quic" htKvmSpiceValidLosslessImgComprOptions :: FrozenSet String htKvmSpiceValidLosslessImgComprOptions = ConstantUtils.mkSet [htKvmSpiceLosslessImgComprAutoGlz, htKvmSpiceLosslessImgComprAutoLz, htKvmSpiceLosslessImgComprGlz, htKvmSpiceLosslessImgComprLz, htKvmSpiceLosslessImgComprOff, htKvmSpiceLosslessImgComprQuic] htKvmSpiceLossyImgComprAlways :: String htKvmSpiceLossyImgComprAlways = "always" htKvmSpiceLossyImgComprAuto :: String htKvmSpiceLossyImgComprAuto = "auto" htKvmSpiceLossyImgComprNever :: String htKvmSpiceLossyImgComprNever = "never" htKvmSpiceValidLossyImgComprOptions :: FrozenSet String htKvmSpiceValidLossyImgComprOptions = ConstantUtils.mkSet [htKvmSpiceLossyImgComprAlways, htKvmSpiceLossyImgComprAuto, htKvmSpiceLossyImgComprNever] -- * SPICE video stream detection htKvmSpiceVideoStreamDetectionAll :: String htKvmSpiceVideoStreamDetectionAll = "all" htKvmSpiceVideoStreamDetectionFilter :: String htKvmSpiceVideoStreamDetectionFilter = "filter" htKvmSpiceVideoStreamDetectionOff :: String htKvmSpiceVideoStreamDetectionOff = "off" htKvmSpiceValidVideoStreamDetectionOptions :: FrozenSet String htKvmSpiceValidVideoStreamDetectionOptions = ConstantUtils.mkSet [htKvmSpiceVideoStreamDetectionAll, htKvmSpiceVideoStreamDetectionFilter, htKvmSpiceVideoStreamDetectionOff] -- * Security models htSmNone :: String htSmNone = "none" htSmPool :: String htSmPool = "pool" htSmUser :: String htSmUser = "user" htKvmValidSmTypes :: FrozenSet String htKvmValidSmTypes = ConstantUtils.mkSet [htSmNone, htSmPool, htSmUser] -- * Kvm flag values htKvmDisabled :: String htKvmDisabled = "disabled" htKvmEnabled :: String htKvmEnabled = "enabled" htKvmFlagValues :: FrozenSet String htKvmFlagValues = ConstantUtils.mkSet [htKvmDisabled, htKvmEnabled] -- * Migration type htMigrationLive :: String htMigrationLive = Types.migrationModeToRaw MigrationLive htMigrationNonlive :: String htMigrationNonlive = Types.migrationModeToRaw MigrationNonLive htMigrationModes :: FrozenSet String htMigrationModes = ConstantUtils.mkSet $ map Types.migrationModeToRaw [minBound..] -- * Cluster verify steps verifyNplusoneMem :: String verifyNplusoneMem = Types.verifyOptionalChecksToRaw VerifyNPlusOneMem verifyOptionalChecks :: FrozenSet String verifyOptionalChecks = ConstantUtils.mkSet $ map Types.verifyOptionalChecksToRaw [minBound..] -- * Cluster Verify error classes cvTcluster :: String cvTcluster = "cluster" cvTgroup :: String cvTgroup = "group" cvTnode :: String cvTnode = "node" cvTinstance :: String cvTinstance = "instance" -- * Cluster Verify error levels cvWarning :: String cvWarning = "WARNING" cvError :: String cvError = "ERROR" -- * Cluster Verify error codes and documentation cvEclustercert :: (String, String, String) cvEclustercert = ("cluster", Types.cVErrorCodeToRaw CvECLUSTERCERT, "Cluster certificate files verification failure") cvEclusterclientcert :: (String, String, String) cvEclusterclientcert = ("cluster", Types.cVErrorCodeToRaw CvECLUSTERCLIENTCERT, "Cluster client certificate files verification failure") cvEclustercfg :: (String, String, String) cvEclustercfg = ("cluster", Types.cVErrorCodeToRaw CvECLUSTERCFG, "Cluster configuration verification failure") cvEclusterdanglinginst :: (String, String, String) cvEclusterdanglinginst = ("node", Types.cVErrorCodeToRaw CvECLUSTERDANGLINGINST, "Some instances have a non-existing primary node") cvEclusterdanglingnodes :: (String, String, String) cvEclusterdanglingnodes = ("node", Types.cVErrorCodeToRaw CvECLUSTERDANGLINGNODES, "Some nodes belong to non-existing groups") cvEclusterfilecheck :: (String, String, String) cvEclusterfilecheck = ("cluster", Types.cVErrorCodeToRaw CvECLUSTERFILECHECK, "Cluster configuration verification failure") cvEgroupdifferentpvsize :: (String, String, String) cvEgroupdifferentpvsize = ("group", Types.cVErrorCodeToRaw CvEGROUPDIFFERENTPVSIZE, "PVs in the group have different sizes") cvEinstancebadnode :: (String, String, String) cvEinstancebadnode = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEBADNODE, "Instance marked as running lives on an offline node") cvEinstancedown :: (String, String, String) cvEinstancedown = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEDOWN, "Instance not running on its primary node") cvEinstancefaultydisk :: (String, String, String) cvEinstancefaultydisk = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEFAULTYDISK, "Impossible to retrieve status for a disk") cvEinstancelayout :: (String, String, String) cvEinstancelayout = ("instance", Types.cVErrorCodeToRaw CvEINSTANCELAYOUT, "Instance has multiple secondary nodes") cvEinstancemissingcfgparameter :: (String, String, String) cvEinstancemissingcfgparameter = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEMISSINGCFGPARAMETER, "A configuration parameter for an instance is missing") cvEinstancemissingdisk :: (String, String, String) cvEinstancemissingdisk = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEMISSINGDISK, "Missing volume on an instance") cvEinstancepolicy :: (String, String, String) cvEinstancepolicy = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEPOLICY, "Instance does not meet policy") cvEinstancesplitgroups :: (String, String, String) cvEinstancesplitgroups = ("instance", Types.cVErrorCodeToRaw CvEINSTANCESPLITGROUPS, "Instance with primary and secondary nodes in different groups") cvEinstanceunsuitablenode :: (String, String, String) cvEinstanceunsuitablenode = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEUNSUITABLENODE, "Instance running on nodes that are not suitable for it") cvEinstancewrongnode :: (String, String, String) cvEinstancewrongnode = ("instance", Types.cVErrorCodeToRaw CvEINSTANCEWRONGNODE, "Instance running on the wrong node") cvEnodedrbd :: (String, String, String) cvEnodedrbd = ("node", Types.cVErrorCodeToRaw CvENODEDRBD, "Error parsing the DRBD status file") cvEnodedrbdhelper :: (String, String, String) cvEnodedrbdhelper = ("node", Types.cVErrorCodeToRaw CvENODEDRBDHELPER, "Error caused by the DRBD helper") cvEnodedrbdversion :: (String, String, String) cvEnodedrbdversion = ("node", Types.cVErrorCodeToRaw CvENODEDRBDVERSION, "DRBD version mismatch within a node group") cvEnodefilecheck :: (String, String, String) cvEnodefilecheck = ("node", Types.cVErrorCodeToRaw CvENODEFILECHECK, "Error retrieving the checksum of the node files") cvEnodefilestoragepaths :: (String, String, String) cvEnodefilestoragepaths = ("node", Types.cVErrorCodeToRaw CvENODEFILESTORAGEPATHS, "Detected bad file storage paths") cvEnodefilestoragepathunusable :: (String, String, String) cvEnodefilestoragepathunusable = ("node", Types.cVErrorCodeToRaw CvENODEFILESTORAGEPATHUNUSABLE, "File storage path unusable") cvEnodehooks :: (String, String, String) cvEnodehooks = ("node", Types.cVErrorCodeToRaw CvENODEHOOKS, "Communication failure in hooks execution") cvEnodehv :: (String, String, String) cvEnodehv = ("node", Types.cVErrorCodeToRaw CvENODEHV, "Hypervisor parameters verification failure") cvEnodelvm :: (String, String, String) cvEnodelvm = ("node", Types.cVErrorCodeToRaw CvENODELVM, "LVM-related node error") cvEnoden1 :: (String, String, String) cvEnoden1 = ("node", Types.cVErrorCodeToRaw CvENODEN1, "Not enough memory to accommodate instance failovers") cvEnodenet :: (String, String, String) cvEnodenet = ("node", Types.cVErrorCodeToRaw CvENODENET, "Network-related node error") cvEnodeoobpath :: (String, String, String) cvEnodeoobpath = ("node", Types.cVErrorCodeToRaw CvENODEOOBPATH, "Invalid Out Of Band path") cvEnodeorphaninstance :: (String, String, String) cvEnodeorphaninstance = ("node", Types.cVErrorCodeToRaw CvENODEORPHANINSTANCE, "Unknown intance running on a node") cvEnodeorphanlv :: (String, String, String) cvEnodeorphanlv = ("node", Types.cVErrorCodeToRaw CvENODEORPHANLV, "Unknown LVM logical volume") cvEnodeos :: (String, String, String) cvEnodeos = ("node", Types.cVErrorCodeToRaw CvENODEOS, "OS-related node error") cvEnoderpc :: (String, String, String) cvEnoderpc = ("node", Types.cVErrorCodeToRaw CvENODERPC, "Error during connection to the primary node of an instance") cvEnodesetup :: (String, String, String) cvEnodesetup = ("node", Types.cVErrorCodeToRaw CvENODESETUP, "Node setup error") cvEnodesharedfilestoragepathunusable :: (String, String, String) cvEnodesharedfilestoragepathunusable = ("node", Types.cVErrorCodeToRaw CvENODESHAREDFILESTORAGEPATHUNUSABLE, "Shared file storage path unusable") cvEnodeglusterstoragepathunusable :: (String, String, String) cvEnodeglusterstoragepathunusable = ("node", Types.cVErrorCodeToRaw CvENODEGLUSTERSTORAGEPATHUNUSABLE, "Gluster storage path unusable") cvEnodessh :: (String, String, String) cvEnodessh = ("node", Types.cVErrorCodeToRaw CvENODESSH, "SSH-related node error") cvEnodetime :: (String, String, String) cvEnodetime = ("node", Types.cVErrorCodeToRaw CvENODETIME, "Node returned invalid time") cvEnodeuserscripts :: (String, String, String) cvEnodeuserscripts = ("node", Types.cVErrorCodeToRaw CvENODEUSERSCRIPTS, "User scripts not present or not executable") cvEnodeversion :: (String, String, String) cvEnodeversion = ("node", Types.cVErrorCodeToRaw CvENODEVERSION, "Protocol version mismatch or Ganeti version mismatch") cvAllEcodes :: FrozenSet (String, String, String) cvAllEcodes = ConstantUtils.mkSet [cvEclustercert, cvEclustercfg, cvEclusterdanglinginst, cvEclusterdanglingnodes, cvEclusterfilecheck, cvEgroupdifferentpvsize, cvEinstancebadnode, cvEinstancedown, cvEinstancefaultydisk, cvEinstancelayout, cvEinstancemissingcfgparameter, cvEinstancemissingdisk, cvEinstancepolicy, cvEinstancesplitgroups, cvEinstanceunsuitablenode, cvEinstancewrongnode, cvEnodedrbd, cvEnodedrbdhelper, cvEnodedrbdversion, cvEnodefilecheck, cvEnodefilestoragepaths, cvEnodefilestoragepathunusable, cvEnodehooks, cvEnodehv, cvEnodelvm, cvEnoden1, cvEnodenet, cvEnodeoobpath, cvEnodeorphaninstance, cvEnodeorphanlv, cvEnodeos, cvEnoderpc, cvEnodesetup, cvEnodesharedfilestoragepathunusable, cvEnodeglusterstoragepathunusable, cvEnodessh, cvEnodetime, cvEnodeuserscripts, cvEnodeversion] cvAllEcodesStrings :: FrozenSet String cvAllEcodesStrings = ConstantUtils.mkSet $ map Types.cVErrorCodeToRaw [minBound..] -- * Node verify constants nvBridges :: String nvBridges = "bridges" nvClientCert :: String nvClientCert = "client-cert" nvDrbdhelper :: String nvDrbdhelper = "drbd-helper" nvDrbdversion :: String nvDrbdversion = "drbd-version" nvDrbdlist :: String nvDrbdlist = "drbd-list" nvExclusivepvs :: String nvExclusivepvs = "exclusive-pvs" nvFilelist :: String nvFilelist = "filelist" nvAcceptedStoragePaths :: String nvAcceptedStoragePaths = "allowed-file-storage-paths" nvFileStoragePath :: String nvFileStoragePath = "file-storage-path" nvSharedFileStoragePath :: String nvSharedFileStoragePath = "shared-file-storage-path" nvGlusterStoragePath :: String nvGlusterStoragePath = "gluster-storage-path" nvHvinfo :: String nvHvinfo = "hvinfo" nvHvparams :: String nvHvparams = "hvparms" nvHypervisor :: String nvHypervisor = "hypervisor" nvInstancelist :: String nvInstancelist = "instancelist" nvLvlist :: String nvLvlist = "lvlist" nvMasterip :: String nvMasterip = "master-ip" nvNodelist :: String nvNodelist = "nodelist" nvNodenettest :: String nvNodenettest = "node-net-test" nvNodesetup :: String nvNodesetup = "nodesetup" nvOobPaths :: String nvOobPaths = "oob-paths" nvOslist :: String nvOslist = "oslist" nvPvlist :: String nvPvlist = "pvlist" nvTime :: String nvTime = "time" nvUserscripts :: String nvUserscripts = "user-scripts" nvVersion :: String nvVersion = "version" nvVglist :: String nvVglist = "vglist" nvNonvmnodes :: String nvNonvmnodes = "nonvmnodes" nvSshSetup :: String nvSshSetup = "ssh-setup" nvSshClutter :: String nvSshClutter = "ssh-clutter" -- * Instance status inststAdmindown :: String inststAdmindown = Types.instanceStatusToRaw StatusDown inststAdminoffline :: String inststAdminoffline = Types.instanceStatusToRaw StatusOffline inststErrordown :: String inststErrordown = Types.instanceStatusToRaw ErrorDown inststErrorup :: String inststErrorup = Types.instanceStatusToRaw ErrorUp inststNodedown :: String inststNodedown = Types.instanceStatusToRaw NodeDown inststNodeoffline :: String inststNodeoffline = Types.instanceStatusToRaw NodeOffline inststRunning :: String inststRunning = Types.instanceStatusToRaw Running inststUserdown :: String inststUserdown = Types.instanceStatusToRaw UserDown inststWrongnode :: String inststWrongnode = Types.instanceStatusToRaw WrongNode inststAll :: FrozenSet String inststAll = ConstantUtils.mkSet $ map Types.instanceStatusToRaw [minBound..] -- * Admin states adminstDown :: String adminstDown = Types.adminStateToRaw AdminDown adminstOffline :: String adminstOffline = Types.adminStateToRaw AdminOffline adminstUp :: String adminstUp = Types.adminStateToRaw AdminUp adminstAll :: FrozenSet String adminstAll = ConstantUtils.mkSet $ map Types.adminStateToRaw [minBound..] -- * Admin state sources adminSource :: AdminStateSource adminSource = AdminSource userSource :: AdminStateSource userSource = UserSource adminStateSources :: FrozenSet AdminStateSource adminStateSources = ConstantUtils.mkSet [minBound..] -- * Node roles nrDrained :: String nrDrained = Types.nodeRoleToRaw NRDrained nrMaster :: String nrMaster = Types.nodeRoleToRaw NRMaster nrMcandidate :: String nrMcandidate = Types.nodeRoleToRaw NRCandidate nrOffline :: String nrOffline = Types.nodeRoleToRaw NROffline nrRegular :: String nrRegular = Types.nodeRoleToRaw NRRegular nrAll :: FrozenSet String nrAll = ConstantUtils.mkSet $ map Types.nodeRoleToRaw [minBound..] -- * SSL certificate check constants (in days) sslCertExpirationError :: Int sslCertExpirationError = 7 sslCertExpirationWarn :: Int sslCertExpirationWarn = 30 -- * Allocator framework constants iallocatorVersion :: Int iallocatorVersion = 2 iallocatorDirIn :: String iallocatorDirIn = Types.iAllocatorTestDirToRaw IAllocatorDirIn iallocatorDirOut :: String iallocatorDirOut = Types.iAllocatorTestDirToRaw IAllocatorDirOut validIallocatorDirections :: FrozenSet String validIallocatorDirections = ConstantUtils.mkSet $ map Types.iAllocatorTestDirToRaw [minBound..] iallocatorModeAlloc :: String iallocatorModeAlloc = Types.iAllocatorModeToRaw IAllocatorAlloc iallocatorModeChgGroup :: String iallocatorModeChgGroup = Types.iAllocatorModeToRaw IAllocatorChangeGroup iallocatorModeMultiAlloc :: String iallocatorModeMultiAlloc = Types.iAllocatorModeToRaw IAllocatorMultiAlloc iallocatorModeNodeEvac :: String iallocatorModeNodeEvac = Types.iAllocatorModeToRaw IAllocatorNodeEvac iallocatorModeReloc :: String iallocatorModeReloc = Types.iAllocatorModeToRaw IAllocatorReloc validIallocatorModes :: FrozenSet String validIallocatorModes = ConstantUtils.mkSet $ map Types.iAllocatorModeToRaw [minBound..] iallocatorSearchPath :: [String] iallocatorSearchPath = AutoConf.iallocatorSearchPath defaultIallocatorShortcut :: String defaultIallocatorShortcut = "." -- * Opportunistic allocator usage -- | Time delay in seconds between repeated opportunistic instance creations. -- Rather than failing with an informative error message if the opportunistic -- creation cannot grab enough nodes, for some uses it is better to retry the -- creation with an interval between attempts. This is a reasonable default. defaultOpportunisticRetryInterval :: Int defaultOpportunisticRetryInterval = 30 -- * Node evacuation nodeEvacPri :: String nodeEvacPri = Types.evacModeToRaw ChangePrimary nodeEvacSec :: String nodeEvacSec = Types.evacModeToRaw ChangeSecondary nodeEvacAll :: String nodeEvacAll = Types.evacModeToRaw ChangeAll nodeEvacModes :: FrozenSet String nodeEvacModes = ConstantUtils.mkSet $ map Types.evacModeToRaw [minBound..] -- * Job queue jobQueueVersion :: Int jobQueueVersion = 1 jobQueueSizeHardLimit :: Int jobQueueSizeHardLimit = 5000 jobQueueFilesPerms :: Int jobQueueFilesPerms = 0o640 -- * Unchanged job return jobNotchanged :: String jobNotchanged = "nochange" -- * Job status jobStatusQueued :: String jobStatusQueued = Types.jobStatusToRaw JOB_STATUS_QUEUED jobStatusWaiting :: String jobStatusWaiting = Types.jobStatusToRaw JOB_STATUS_WAITING jobStatusCanceling :: String jobStatusCanceling = Types.jobStatusToRaw JOB_STATUS_CANCELING jobStatusRunning :: String jobStatusRunning = Types.jobStatusToRaw JOB_STATUS_RUNNING jobStatusCanceled :: String jobStatusCanceled = Types.jobStatusToRaw JOB_STATUS_CANCELED jobStatusSuccess :: String jobStatusSuccess = Types.jobStatusToRaw JOB_STATUS_SUCCESS jobStatusError :: String jobStatusError = Types.jobStatusToRaw JOB_STATUS_ERROR jobsPending :: FrozenSet String jobsPending = ConstantUtils.mkSet [jobStatusQueued, jobStatusWaiting, jobStatusCanceling] jobsFinalized :: FrozenSet String jobsFinalized = ConstantUtils.mkSet $ map Types.finalizedJobStatusToRaw [minBound..] jobStatusAll :: FrozenSet String jobStatusAll = ConstantUtils.mkSet $ map Types.jobStatusToRaw [minBound..] -- * OpCode status -- ** Not yet finalized opcodes opStatusCanceling :: String opStatusCanceling = "canceling" opStatusQueued :: String opStatusQueued = "queued" opStatusRunning :: String opStatusRunning = "running" opStatusWaiting :: String opStatusWaiting = "waiting" -- ** Finalized opcodes opStatusCanceled :: String opStatusCanceled = "canceled" opStatusError :: String opStatusError = "error" opStatusSuccess :: String opStatusSuccess = "success" opsFinalized :: FrozenSet String opsFinalized = ConstantUtils.mkSet [opStatusCanceled, opStatusError, opStatusSuccess] -- * OpCode priority opPrioLowest :: Int opPrioLowest = 19 opPrioHighest :: Int opPrioHighest = -20 opPrioLow :: Int opPrioLow = Types.opSubmitPriorityToRaw OpPrioLow opPrioNormal :: Int opPrioNormal = Types.opSubmitPriorityToRaw OpPrioNormal opPrioHigh :: Int opPrioHigh = Types.opSubmitPriorityToRaw OpPrioHigh opPrioSubmitValid :: FrozenSet Int opPrioSubmitValid = ConstantUtils.mkSet [opPrioLow, opPrioNormal, opPrioHigh] opPrioDefault :: Int opPrioDefault = opPrioNormal -- * Lock recalculate mode locksAppend :: String locksAppend = "append" locksReplace :: String locksReplace = "replace" -- * Lock timeout -- -- The lock timeout (sum) before we transition into blocking acquire -- (this can still be reset by priority change). Computed as max time -- (10 hours) before we should actually go into blocking acquire, -- given that we start from the default priority level. lockAttemptsMaxwait :: Double lockAttemptsMaxwait = 75.0 lockAttemptsMinwait :: Double lockAttemptsMinwait = 5.0 lockAttemptsTimeout :: Int lockAttemptsTimeout = (10 * 3600) `div` (opPrioDefault - opPrioHighest) -- * Execution log types elogMessage :: String elogMessage = Types.eLogTypeToRaw ELogMessage elogRemoteImport :: String elogRemoteImport = Types.eLogTypeToRaw ELogRemoteImport elogJqueueTest :: String elogJqueueTest = Types.eLogTypeToRaw ELogJqueueTest elogDelayTest :: String elogDelayTest = Types.eLogTypeToRaw ELogDelayTest -- * /etc/hosts modification etcHostsAdd :: String etcHostsAdd = "add" etcHostsRemove :: String etcHostsRemove = "remove" -- * Job queue test jqtMsgprefix :: String jqtMsgprefix = "TESTMSG=" jqtExec :: String jqtExec = "exec" jqtExpandnames :: String jqtExpandnames = "expandnames" jqtLogmsg :: String jqtLogmsg = "logmsg" jqtStartmsg :: String jqtStartmsg = "startmsg" jqtAll :: FrozenSet String jqtAll = ConstantUtils.mkSet [jqtExec, jqtExpandnames, jqtLogmsg, jqtStartmsg] -- * Query resources qrCluster :: String qrCluster = "cluster" qrExport :: String qrExport = "export" qrExtstorage :: String qrExtstorage = "extstorage" qrGroup :: String qrGroup = "group" qrInstance :: String qrInstance = "instance" qrJob :: String qrJob = "job" qrLock :: String qrLock = "lock" qrNetwork :: String qrNetwork = "network" qrFilter :: String qrFilter = "filter" qrNode :: String qrNode = "node" qrOs :: String qrOs = "os" -- | List of resources which can be queried using 'Ganeti.OpCodes.OpQuery' qrViaOp :: FrozenSet String qrViaOp = ConstantUtils.mkSet [qrCluster, qrOs, qrExtstorage] -- | List of resources which can be queried using Local UniX Interface qrViaLuxi :: FrozenSet String qrViaLuxi = ConstantUtils.mkSet [qrGroup, qrExport, qrInstance, qrJob, qrLock, qrNetwork, qrNode, qrFilter] -- | List of resources which can be queried using RAPI qrViaRapi :: FrozenSet String qrViaRapi = qrViaLuxi -- | List of resources which can be queried via RAPI including PUT requests qrViaRapiPut :: FrozenSet String qrViaRapiPut = ConstantUtils.mkSet [qrLock, qrJob, qrFilter] -- * Query field types qftBool :: String qftBool = "bool" qftNumber :: String qftNumber = "number" qftNumberFloat :: String qftNumberFloat = "float" qftOther :: String qftOther = "other" qftText :: String qftText = "text" qftTimestamp :: String qftTimestamp = "timestamp" qftUnit :: String qftUnit = "unit" qftUnknown :: String qftUnknown = "unknown" qftAll :: FrozenSet String qftAll = ConstantUtils.mkSet [qftBool, qftNumber, qftNumberFloat, qftOther, qftText, qftTimestamp, qftUnit, qftUnknown] -- * Query result field status -- -- Don't change or reuse values as they're used by clients. -- -- FIXME: link with 'Ganeti.Query.Language.ResultStatus' -- | No data (e.g. RPC error), can be used instead of 'rsOffline' rsNodata :: Int rsNodata = 2 rsNormal :: Int rsNormal = 0 -- | Resource marked offline rsOffline :: Int rsOffline = 4 -- | Value unavailable/unsupported for item; if this field is -- supported but we cannot get the data for the moment, 'rsNodata' or -- 'rsOffline' should be used rsUnavail :: Int rsUnavail = 3 rsUnknown :: Int rsUnknown = 1 rsAll :: FrozenSet Int rsAll = ConstantUtils.mkSet [rsNodata, rsNormal, rsOffline, rsUnavail, rsUnknown] -- | Special field cases and their verbose/terse formatting rssDescription :: Map Int (String, String) rssDescription = Map.fromList [(rsUnknown, ("(unknown)", "??")), (rsNodata, ("(nodata)", "?")), (rsOffline, ("(offline)", "*")), (rsUnavail, ("(unavail)", "-"))] -- * Max dynamic devices maxDisks :: Int maxDisks = Types.maxDisks maxNics :: Int maxNics = Types.maxNics -- | SSCONF file prefix ssconfFileprefix :: String ssconfFileprefix = "ssconf_" -- * SSCONF keys ssClusterName :: String ssClusterName = "cluster_name" ssClusterTags :: String ssClusterTags = "cluster_tags" ssFileStorageDir :: String ssFileStorageDir = "file_storage_dir" ssSharedFileStorageDir :: String ssSharedFileStorageDir = "shared_file_storage_dir" ssGlusterStorageDir :: String ssGlusterStorageDir = "gluster_storage_dir" ssMasterCandidates :: String ssMasterCandidates = "master_candidates" ssMasterCandidatesIps :: String ssMasterCandidatesIps = "master_candidates_ips" ssMasterCandidatesCerts :: String ssMasterCandidatesCerts = "master_candidates_certs" ssMasterIp :: String ssMasterIp = "master_ip" ssMasterNetdev :: String ssMasterNetdev = "master_netdev" ssMasterNetmask :: String ssMasterNetmask = "master_netmask" ssMasterNode :: String ssMasterNode = "master_node" ssNodeList :: String ssNodeList = "node_list" ssNodePrimaryIps :: String ssNodePrimaryIps = "node_primary_ips" ssNodeSecondaryIps :: String ssNodeSecondaryIps = "node_secondary_ips" ssNodeVmCapable :: String ssNodeVmCapable = "node_vm_capable" ssOfflineNodes :: String ssOfflineNodes = "offline_nodes" ssOnlineNodes :: String ssOnlineNodes = "online_nodes" ssPrimaryIpFamily :: String ssPrimaryIpFamily = "primary_ip_family" ssInstanceList :: String ssInstanceList = "instance_list" ssReleaseVersion :: String ssReleaseVersion = "release_version" ssHypervisorList :: String ssHypervisorList = "hypervisor_list" ssMaintainNodeHealth :: String ssMaintainNodeHealth = "maintain_node_health" ssUidPool :: String ssUidPool = "uid_pool" ssNodegroups :: String ssNodegroups = "nodegroups" ssNetworks :: String ssNetworks = "networks" -- | This is not a complete SSCONF key, but the prefix for the -- hypervisor keys ssHvparamsPref :: String ssHvparamsPref = "hvparams_" -- * Hvparams keys ssHvparamsXenChroot :: String ssHvparamsXenChroot = ssHvparamsPref ++ htChroot ssHvparamsXenFake :: String ssHvparamsXenFake = ssHvparamsPref ++ htFake ssHvparamsXenHvm :: String ssHvparamsXenHvm = ssHvparamsPref ++ htXenHvm ssHvparamsXenKvm :: String ssHvparamsXenKvm = ssHvparamsPref ++ htKvm ssHvparamsXenLxc :: String ssHvparamsXenLxc = ssHvparamsPref ++ htLxc ssHvparamsXenPvm :: String ssHvparamsXenPvm = ssHvparamsPref ++ htXenPvm validSsHvparamsKeys :: FrozenSet String validSsHvparamsKeys = ConstantUtils.mkSet [ssHvparamsXenChroot, ssHvparamsXenLxc, ssHvparamsXenFake, ssHvparamsXenHvm, ssHvparamsXenKvm, ssHvparamsXenPvm] ssFilePerms :: Int ssFilePerms = 0o444 ssEnabledUserShutdown :: String ssEnabledUserShutdown = "enabled_user_shutdown" -- | Cluster wide default parameters defaultEnabledHypervisor :: String defaultEnabledHypervisor = htXenPvm hvcDefaults :: Map Hypervisor (Map String PyValueEx) hvcDefaults = Map.fromList [ (XenPvm, Map.fromList [ (hvUseBootloader, PyValueEx False) , (hvBootloaderPath, PyValueEx xenBootloader) , (hvBootloaderArgs, PyValueEx "") , (hvKernelPath, PyValueEx xenKernel) , (hvInitrdPath, PyValueEx "") , (hvRootPath, PyValueEx "/dev/xvda1") , (hvKernelArgs, PyValueEx "ro") , (hvMigrationPort, PyValueEx (8002 :: Int)) , (hvMigrationMode, PyValueEx htMigrationLive) , (hvBlockdevPrefix, PyValueEx "sd") , (hvRebootBehavior, PyValueEx instanceRebootAllowed) , (hvCpuMask, PyValueEx cpuPinningAll) , (hvCpuCap, PyValueEx (0 :: Int)) , (hvCpuWeight, PyValueEx (256 :: Int)) , (hvVifScript, PyValueEx "") , (hvXenCmd, PyValueEx xenCmdXm) , (hvXenCpuid, PyValueEx "") , (hvSoundhw, PyValueEx "") ]) , (XenHvm, Map.fromList [ (hvBootOrder, PyValueEx "cd") , (hvCdromImagePath, PyValueEx "") , (hvNicType, PyValueEx htNicRtl8139) , (hvDiskType, PyValueEx htDiskParavirtual) , (hvVncBindAddress, PyValueEx ip4AddressAny) , (hvAcpi, PyValueEx True) , (hvPae, PyValueEx True) , (hvKernelPath, PyValueEx "/usr/lib/xen/boot/hvmloader") , (hvDeviceModel, PyValueEx "/usr/lib/xen/bin/qemu-dm") , (hvMigrationPort, PyValueEx (8002 :: Int)) , (hvMigrationMode, PyValueEx htMigrationNonlive) , (hvUseLocaltime, PyValueEx False) , (hvBlockdevPrefix, PyValueEx "hd") , (hvPassthrough, PyValueEx "") , (hvRebootBehavior, PyValueEx instanceRebootAllowed) , (hvCpuMask, PyValueEx cpuPinningAll) , (hvCpuCap, PyValueEx (0 :: Int)) , (hvCpuWeight, PyValueEx (256 :: Int)) , (hvVifType, PyValueEx htHvmVifIoemu) , (hvVifScript, PyValueEx "") , (hvViridian, PyValueEx False) , (hvXenCmd, PyValueEx xenCmdXm) , (hvXenCpuid, PyValueEx "") , (hvSoundhw, PyValueEx "") ]) , (Kvm, Map.fromList [ (hvKvmPath, PyValueEx kvmPath) , (hvKernelPath, PyValueEx kvmKernel) , (hvInitrdPath, PyValueEx "") , (hvKernelArgs, PyValueEx "ro") , (hvRootPath, PyValueEx "/dev/vda1") , (hvAcpi, PyValueEx True) , (hvSerialConsole, PyValueEx True) , (hvSerialSpeed, PyValueEx (38400 :: Int)) , (hvVncBindAddress, PyValueEx "") , (hvVncTls, PyValueEx False) , (hvVncX509, PyValueEx "") , (hvVncX509Verify, PyValueEx False) , (hvVncPasswordFile, PyValueEx "") , (hvKvmSpiceBind, PyValueEx "") , (hvKvmSpiceIpVersion, PyValueEx ifaceNoIpVersionSpecified) , (hvKvmSpicePasswordFile, PyValueEx "") , (hvKvmSpiceLosslessImgCompr, PyValueEx "") , (hvKvmSpiceJpegImgCompr, PyValueEx "") , (hvKvmSpiceZlibGlzImgCompr, PyValueEx "") , (hvKvmSpiceStreamingVideoDetection, PyValueEx "") , (hvKvmSpiceAudioCompr, PyValueEx True) , (hvKvmSpiceUseTls, PyValueEx False) , (hvKvmSpiceTlsCiphers, PyValueEx opensslCiphers) , (hvKvmSpiceUseVdagent, PyValueEx True) , (hvKvmFloppyImagePath, PyValueEx "") , (hvCdromImagePath, PyValueEx "") , (hvKvmCdrom2ImagePath, PyValueEx "") , (hvBootOrder, PyValueEx htBoDisk) , (hvNicType, PyValueEx htNicParavirtual) , (hvDiskType, PyValueEx htDiskParavirtual) , (hvKvmCdromDiskType, PyValueEx "") , (hvKvmDiskAio, PyValueEx htKvmAioThreads) , (hvUsbMouse, PyValueEx "") , (hvKeymap, PyValueEx "") , (hvMigrationPort, PyValueEx (8102 :: Int)) , (hvMigrationBandwidth, PyValueEx (32 :: Int)) , (hvMigrationDowntime, PyValueEx (30 :: Int)) , (hvMigrationMode, PyValueEx htMigrationLive) , (hvUseLocaltime, PyValueEx False) , (hvDiskCache, PyValueEx htCacheDefault) , (hvSecurityModel, PyValueEx htSmNone) , (hvSecurityDomain, PyValueEx "") , (hvKvmFlag, PyValueEx "") , (hvVhostNet, PyValueEx False) , (hvVirtioNetQueues, PyValueEx (1 :: Int)) , (hvKvmUseChroot, PyValueEx False) , (hvKvmUserShutdown, PyValueEx False) , (hvMemPath, PyValueEx "") , (hvRebootBehavior, PyValueEx instanceRebootAllowed) , (hvCpuMask, PyValueEx cpuPinningAll) , (hvCpuType, PyValueEx "") , (hvCpuCores, PyValueEx (0 :: Int)) , (hvCpuThreads, PyValueEx (0 :: Int)) , (hvCpuSockets, PyValueEx (0 :: Int)) , (hvSoundhw, PyValueEx "") , (hvUsbDevices, PyValueEx "") , (hvVga, PyValueEx "") , (hvKvmExtra, PyValueEx "") , (hvKvmMachineVersion, PyValueEx "") , (hvKvmMigrationCaps, PyValueEx "") , (hvVnetHdr, PyValueEx True)]) , (Fake, Map.fromList [(hvMigrationMode, PyValueEx htMigrationLive)]) , (Chroot, Map.fromList [(hvInitScript, PyValueEx "/ganeti-chroot")]) , (Lxc, Map.fromList [ (hvCpuMask, PyValueEx "") , (hvLxcDevices, PyValueEx lxcDevicesDefault) , (hvLxcDropCapabilities, PyValueEx lxcDropCapabilitiesDefault) , (hvLxcExtraCgroups, PyValueEx "") , (hvLxcExtraConfig, PyValueEx "") , (hvLxcNumTtys, PyValueEx (6 :: Int)) , (hvLxcStartupTimeout, PyValueEx (30 :: Int)) ]) ] hvcGlobals :: FrozenSet String hvcGlobals = ConstantUtils.mkSet [hvMigrationBandwidth, hvMigrationMode, hvMigrationPort, hvXenCmd] becDefaults :: Map String PyValueEx becDefaults = Map.fromList [ (beMinmem, PyValueEx (128 :: Int)) , (beMaxmem, PyValueEx (128 :: Int)) , (beVcpus, PyValueEx (1 :: Int)) , (beAutoBalance, PyValueEx True) , (beAlwaysFailover, PyValueEx False) , (beSpindleUse, PyValueEx (1 :: Int)) ] ndcDefaults :: Map String PyValueEx ndcDefaults = Map.fromList [ (ndOobProgram, PyValueEx "") , (ndSpindleCount, PyValueEx (1 :: Int)) , (ndExclusiveStorage, PyValueEx False) , (ndOvs, PyValueEx False) , (ndOvsName, PyValueEx defaultOvs) , (ndOvsLink, PyValueEx "") , (ndSshPort, PyValueEx (22 :: Int)) , (ndCpuSpeed, PyValueEx (1 :: Double)) ] ndcGlobals :: FrozenSet String ndcGlobals = ConstantUtils.mkSet [ndExclusiveStorage] -- | Default delay target measured in sectors defaultDelayTarget :: Int defaultDelayTarget = 1 defaultDiskCustom :: String defaultDiskCustom = "" defaultDiskResync :: Bool defaultDiskResync = False -- | Default fill target measured in sectors defaultFillTarget :: Int defaultFillTarget = 0 -- | Default mininum rate measured in KiB/s defaultMinRate :: Int defaultMinRate = 4 * 1024 defaultNetCustom :: String defaultNetCustom = "" -- | Default plan ahead measured in sectors -- -- The default values for the DRBD dynamic resync speed algorithm are -- taken from the drbsetup 8.3.11 man page, except for c-plan-ahead -- (that we don't need to set to 0, because we have a separate option -- to enable it) and for c-max-rate, that we cap to the default value -- for the static resync rate. defaultPlanAhead :: Int defaultPlanAhead = 20 defaultRbdPool :: String defaultRbdPool = "rbd" diskLdDefaults :: Map DiskTemplate (Map String PyValueEx) diskLdDefaults = Map.fromList [ (DTBlock, Map.empty) , (DTDrbd8, Map.fromList [ (ldpBarriers, PyValueEx drbdBarriers) , (ldpDefaultMetavg, PyValueEx defaultVg) , (ldpDelayTarget, PyValueEx defaultDelayTarget) , (ldpDiskCustom, PyValueEx defaultDiskCustom) , (ldpDynamicResync, PyValueEx defaultDiskResync) , (ldpFillTarget, PyValueEx defaultFillTarget) , (ldpMaxRate, PyValueEx classicDrbdSyncSpeed) , (ldpMinRate, PyValueEx defaultMinRate) , (ldpNetCustom, PyValueEx defaultNetCustom) , (ldpNoMetaFlush, PyValueEx drbdNoMetaFlush) , (ldpPlanAhead, PyValueEx defaultPlanAhead) , (ldpProtocol, PyValueEx drbdDefaultNetProtocol) , (ldpResyncRate, PyValueEx classicDrbdSyncSpeed) ]) , (DTExt, Map.fromList [ (ldpAccess, PyValueEx diskKernelspace) ]) , (DTFile, Map.empty) , (DTPlain, Map.fromList [(ldpStripes, PyValueEx lvmStripecount)]) , (DTRbd, Map.fromList [ (ldpPool, PyValueEx defaultRbdPool) , (ldpAccess, PyValueEx diskKernelspace) ]) , (DTSharedFile, Map.empty) , (DTGluster, Map.fromList [ (rbdAccess, PyValueEx diskKernelspace) , (glusterHost, PyValueEx glusterHostDefault) , (glusterVolume, PyValueEx glusterVolumeDefault) , (glusterPort, PyValueEx glusterPortDefault) ]) ] diskDtDefaults :: Map DiskTemplate (Map String PyValueEx) diskDtDefaults = Map.fromList [ (DTBlock, Map.empty) , (DTDiskless, Map.empty) , (DTDrbd8, Map.fromList [ (drbdDataStripes, PyValueEx lvmStripecount) , (drbdDefaultMetavg, PyValueEx defaultVg) , (drbdDelayTarget, PyValueEx defaultDelayTarget) , (drbdDiskBarriers, PyValueEx drbdBarriers) , (drbdDiskCustom, PyValueEx defaultDiskCustom) , (drbdDynamicResync, PyValueEx defaultDiskResync) , (drbdFillTarget, PyValueEx defaultFillTarget) , (drbdMaxRate, PyValueEx classicDrbdSyncSpeed) , (drbdMetaBarriers, PyValueEx drbdNoMetaFlush) , (drbdMetaStripes, PyValueEx lvmStripecount) , (drbdMinRate, PyValueEx defaultMinRate) , (drbdNetCustom, PyValueEx defaultNetCustom) , (drbdPlanAhead, PyValueEx defaultPlanAhead) , (drbdProtocol, PyValueEx drbdDefaultNetProtocol) , (drbdResyncRate, PyValueEx classicDrbdSyncSpeed) ]) , (DTExt, Map.fromList [ (rbdAccess, PyValueEx diskKernelspace) ]) , (DTFile, Map.empty) , (DTPlain, Map.fromList [(lvStripes, PyValueEx lvmStripecount)]) , (DTRbd, Map.fromList [ (rbdPool, PyValueEx defaultRbdPool) , (rbdAccess, PyValueEx diskKernelspace) ]) , (DTSharedFile, Map.empty) , (DTGluster, Map.fromList [ (rbdAccess, PyValueEx diskKernelspace) , (glusterHost, PyValueEx glusterHostDefault) , (glusterVolume, PyValueEx glusterVolumeDefault) , (glusterPort, PyValueEx glusterPortDefault) ]) ] niccDefaults :: Map String PyValueEx niccDefaults = Map.fromList [ (nicMode, PyValueEx nicModeBridged) , (nicLink, PyValueEx defaultBridge) , (nicVlan, PyValueEx "") ] -- | All of the following values are quite arbitrary - there are no -- "good" defaults, these must be customised per-site ispecsMinmaxDefaults :: Map String (Map String Int) ispecsMinmaxDefaults = Map.fromList [(ispecsMin, Map.fromList [(ConstantUtils.ispecMemSize, Types.iSpecMemorySize Types.defMinISpec), (ConstantUtils.ispecCpuCount, Types.iSpecCpuCount Types.defMinISpec), (ConstantUtils.ispecDiskCount, Types.iSpecDiskCount Types.defMinISpec), (ConstantUtils.ispecDiskSize, Types.iSpecDiskSize Types.defMinISpec), (ConstantUtils.ispecNicCount, Types.iSpecNicCount Types.defMinISpec), (ConstantUtils.ispecSpindleUse, Types.iSpecSpindleUse Types.defMinISpec)]), (ispecsMax, Map.fromList [(ConstantUtils.ispecMemSize, Types.iSpecMemorySize Types.defMaxISpec), (ConstantUtils.ispecCpuCount, Types.iSpecCpuCount Types.defMaxISpec), (ConstantUtils.ispecDiskCount, Types.iSpecDiskCount Types.defMaxISpec), (ConstantUtils.ispecDiskSize, Types.iSpecDiskSize Types.defMaxISpec), (ConstantUtils.ispecNicCount, Types.iSpecNicCount Types.defMaxISpec), (ConstantUtils.ispecSpindleUse, Types.iSpecSpindleUse Types.defMaxISpec)])] ipolicyDefaults :: Map String PyValueEx ipolicyDefaults = Map.fromList [ (ispecsMinmax, PyValueEx [ispecsMinmaxDefaults]) , (ispecsStd, PyValueEx (Map.fromList [ (ispecMemSize, 128) , (ispecCpuCount, 1) , (ispecDiskCount, 1) , (ispecDiskSize, 1024) , (ispecNicCount, 1) , (ispecSpindleUse, 1) ] :: Map String Int)) , (ipolicyDts, PyValueEx (ConstantUtils.toList diskTemplates)) , (ipolicyVcpuRatio, PyValueEx (4.0 :: Double)) , (ipolicySpindleRatio, PyValueEx (32.0 :: Double)) ] masterPoolSizeDefault :: Int masterPoolSizeDefault = 10 -- * Exclusive storage -- | Error margin used to compare physical disks partMargin :: Double partMargin = 0.01 -- | Space reserved when creating instance disks partReserved :: Double partReserved = 0.02 -- * Luxid job scheduling -- | Time intervall in seconds for polling updates on the job queue. This -- intervall is only relevant if the number of running jobs reaches the maximal -- allowed number, as otherwise new jobs will be started immediately anyway. -- Also, as jobs are watched via inotify, scheduling usually works independent -- of polling. Therefore we chose a sufficiently large interval, in the order of -- 5 minutes. As with the interval for reloading the configuration, we chose a -- prime number to avoid accidental 'same wakeup' with other processes. luxidJobqueuePollInterval :: Int luxidJobqueuePollInterval = 307 -- | The default value for the maximal number of jobs to be running at the same -- time. Once the maximal number is reached, new jobs will just be queued and -- only started, once some of the other jobs have finished. luxidMaximalRunningJobsDefault :: Int luxidMaximalRunningJobsDefault = 20 -- | The default value for the maximal number of jobs that luxid tracks via -- inotify. If the number of running jobs exceeds this limit (which only happens -- if the user increases the default value of maximal running jobs), new forked -- jobs are no longer tracked by inotify; progress will still be noticed on the -- regular polls. luxidMaximalTrackedJobsDefault :: Int luxidMaximalTrackedJobsDefault = 25 -- | The number of retries when trying to @fork@ a new job. -- Due to a bug in GHC, this can fail even though we synchronize all forks -- and restrain from other @IO@ operations in the thread. luxidRetryForkCount :: Int luxidRetryForkCount = 5 -- | The average time period (in /us/) to wait between two @fork@ attempts. -- The forking thread wait a random time period between @0@ and twice the -- number, and with each attempt it doubles the step. -- See 'luxidRetryForkCount'. luxidRetryForkStepUS :: Int luxidRetryForkStepUS = 500000 -- * Luxid job death testing -- | The number of attempts to prove that a job is dead after sending it a -- KILL signal. luxidJobDeathDetectionRetries :: Int luxidJobDeathDetectionRetries = 3 -- | Time to delay (in /us/) after unsucessfully verifying the death of a -- job we believe to be dead. This is best choosen to be the average time -- sending a SIGKILL to take effect. luxidJobDeathDelay :: Int luxidJobDeathDelay = 100000 -- * WConfD -- | Time itnervall in seconds between checks that all lock owners are still -- alive, and cleaning up the resources for the dead ones. As jobs dying without -- releasing resources is the exception, not the rule, we don't want this task -- to take up too many cycles itself. Hence we choose a sufficiently large -- intervall, in the order of 5 minutes. To avoid accidental 'same wakeup' -- with other tasks, we choose the next unused prime number. wconfdDeathdetectionIntervall :: Int wconfdDeathdetectionIntervall = 311 wconfdDefCtmo :: Int wconfdDefCtmo = 10 wconfdDefRwto :: Int wconfdDefRwto = 60 -- | The prefix of the WConfD livelock file name. wconfLivelockPrefix :: String wconfLivelockPrefix = "wconf-daemon" -- * Confd confdProtocolVersion :: Int confdProtocolVersion = ConstantUtils.confdProtocolVersion -- Confd request type confdReqPing :: Int confdReqPing = Types.confdRequestTypeToRaw ReqPing confdReqNodeRoleByname :: Int confdReqNodeRoleByname = Types.confdRequestTypeToRaw ReqNodeRoleByName confdReqNodePipByInstanceIp :: Int confdReqNodePipByInstanceIp = Types.confdRequestTypeToRaw ReqNodePipByInstPip confdReqClusterMaster :: Int confdReqClusterMaster = Types.confdRequestTypeToRaw ReqClusterMaster confdReqNodePipList :: Int confdReqNodePipList = Types.confdRequestTypeToRaw ReqNodePipList confdReqMcPipList :: Int confdReqMcPipList = Types.confdRequestTypeToRaw ReqMcPipList confdReqInstancesIpsList :: Int confdReqInstancesIpsList = Types.confdRequestTypeToRaw ReqInstIpsList confdReqNodeDrbd :: Int confdReqNodeDrbd = Types.confdRequestTypeToRaw ReqNodeDrbd confdReqNodeInstances :: Int confdReqNodeInstances = Types.confdRequestTypeToRaw ReqNodeInstances confdReqInstanceDisks :: Int confdReqInstanceDisks = Types.confdRequestTypeToRaw ReqInstanceDisks confdReqConfigQuery :: Int confdReqConfigQuery = Types.confdRequestTypeToRaw ReqConfigQuery confdReqDataCollectors :: Int confdReqDataCollectors = Types.confdRequestTypeToRaw ReqDataCollectors confdReqs :: FrozenSet Int confdReqs = ConstantUtils.mkSet . map Types.confdRequestTypeToRaw $ [minBound..] \\ [ReqNodeInstances] -- * Confd request type confdReqfieldName :: Int confdReqfieldName = Types.confdReqFieldToRaw ReqFieldName confdReqfieldIp :: Int confdReqfieldIp = Types.confdReqFieldToRaw ReqFieldIp confdReqfieldMnodePip :: Int confdReqfieldMnodePip = Types.confdReqFieldToRaw ReqFieldMNodePip -- * Confd repl status confdReplStatusOk :: Int confdReplStatusOk = Types.confdReplyStatusToRaw ReplyStatusOk confdReplStatusError :: Int confdReplStatusError = Types.confdReplyStatusToRaw ReplyStatusError confdReplStatusNotimplemented :: Int confdReplStatusNotimplemented = Types.confdReplyStatusToRaw ReplyStatusNotImpl confdReplStatuses :: FrozenSet Int confdReplStatuses = ConstantUtils.mkSet $ map Types.confdReplyStatusToRaw [minBound..] -- * Confd node role confdNodeRoleMaster :: Int confdNodeRoleMaster = Types.confdNodeRoleToRaw NodeRoleMaster confdNodeRoleCandidate :: Int confdNodeRoleCandidate = Types.confdNodeRoleToRaw NodeRoleCandidate confdNodeRoleOffline :: Int confdNodeRoleOffline = Types.confdNodeRoleToRaw NodeRoleOffline confdNodeRoleDrained :: Int confdNodeRoleDrained = Types.confdNodeRoleToRaw NodeRoleDrained confdNodeRoleRegular :: Int confdNodeRoleRegular = Types.confdNodeRoleToRaw NodeRoleRegular -- * A few common errors for confd confdErrorUnknownEntry :: Int confdErrorUnknownEntry = Types.confdErrorTypeToRaw ConfdErrorUnknownEntry confdErrorInternal :: Int confdErrorInternal = Types.confdErrorTypeToRaw ConfdErrorInternal confdErrorArgument :: Int confdErrorArgument = Types.confdErrorTypeToRaw ConfdErrorArgument -- * Confd request query fields confdReqqLink :: String confdReqqLink = ConstantUtils.confdReqqLink confdReqqIp :: String confdReqqIp = ConstantUtils.confdReqqIp confdReqqIplist :: String confdReqqIplist = ConstantUtils.confdReqqIplist confdReqqFields :: String confdReqqFields = ConstantUtils.confdReqqFields -- | Each request is "salted" by the current timestamp. -- -- This constant decides how many seconds of skew to accept. -- -- TODO: make this a default and allow the value to be more -- configurable confdMaxClockSkew :: Int confdMaxClockSkew = 2 * nodeMaxClockSkew -- | When we haven't reloaded the config for more than this amount of -- seconds, we force a test to see if inotify is betraying us. Using a -- prime number to ensure we get less chance of 'same wakeup' with -- other processes. confdConfigReloadTimeout :: Int confdConfigReloadTimeout = 17 -- | If we receive more than one update in this amount of -- microseconds, we move to polling every RATELIMIT seconds, rather -- than relying on inotify, to be able to serve more requests. confdConfigReloadRatelimit :: Int confdConfigReloadRatelimit = 250000 -- | Magic number prepended to all confd queries. -- -- This allows us to distinguish different types of confd protocols -- and handle them. For example by changing this we can move the whole -- payload to be compressed, or move away from json. confdMagicFourcc :: String confdMagicFourcc = "plj0" -- | By default a confd request is sent to the minimum between this -- number and all MCs. 6 was chosen because even in the case of a -- disastrous 50% response rate, we should have enough answers to be -- able to compare more than one. confdDefaultReqCoverage :: Int confdDefaultReqCoverage = 6 -- | Timeout in seconds to expire pending query request in the confd -- client library. We don't actually expect any answer more than 10 -- seconds after we sent a request. confdClientExpireTimeout :: Int confdClientExpireTimeout = 10 -- | Maximum UDP datagram size. -- -- On IPv4: 64K - 20 (ip header size) - 8 (udp header size) = 65507 -- On IPv6: 64K - 40 (ip6 header size) - 8 (udp header size) = 65487 -- (assuming we can't use jumbo frames) -- We just set this to 60K, which should be enough maxUdpDataSize :: Int maxUdpDataSize = 61440 -- * User-id pool minimum/maximum acceptable user-ids uidpoolUidMin :: Int uidpoolUidMin = 0 -- | Assuming 32 bit user-ids uidpoolUidMax :: Integer uidpoolUidMax = 2 ^ 32 - 1 -- | Name or path of the pgrep command pgrep :: String pgrep = "pgrep" -- | Name of the node group that gets created at cluster init or -- upgrade initialNodeGroupName :: String initialNodeGroupName = "default" -- * Possible values for NodeGroup.alloc_policy allocPolicyLastResort :: String allocPolicyLastResort = Types.allocPolicyToRaw AllocLastResort allocPolicyPreferred :: String allocPolicyPreferred = Types.allocPolicyToRaw AllocPreferred allocPolicyUnallocable :: String allocPolicyUnallocable = Types.allocPolicyToRaw AllocUnallocable validAllocPolicies :: [String] validAllocPolicies = map Types.allocPolicyToRaw [minBound..] -- | Temporary external/shared storage parameters blockdevDriverManual :: String blockdevDriverManual = Types.blockDriverToRaw BlockDrvManual -- | 'qemu-img' path, required for 'ovfconverter' qemuimgPath :: String qemuimgPath = AutoConf.qemuimgPath -- | The hail iallocator iallocHail :: String iallocHail = "hail" -- * Fake opcodes for functions that have hooks attached to them via -- backend.RunLocalHooks fakeOpMasterTurndown :: String fakeOpMasterTurndown = "OP_CLUSTER_IP_TURNDOWN" fakeOpMasterTurnup :: String fakeOpMasterTurnup = "OP_CLUSTER_IP_TURNUP" -- * Crypto Types -- Types of cryptographic tokens used in node communication cryptoTypeSslDigest :: String cryptoTypeSslDigest = "ssl" cryptoTypeSsh :: String cryptoTypeSsh = "ssh" -- So far only ssl keys are used in the context of this constant cryptoTypes :: FrozenSet String cryptoTypes = ConstantUtils.mkSet [cryptoTypeSslDigest] -- * Crypto Actions -- Actions that can be performed on crypto tokens cryptoActionGet :: String cryptoActionGet = "get" -- This is 'create and get' cryptoActionCreate :: String cryptoActionCreate = "create" cryptoActions :: FrozenSet String cryptoActions = ConstantUtils.mkSet [cryptoActionGet, cryptoActionCreate] -- * Options for CryptoActions -- Filename of the certificate cryptoOptionCertFile :: String cryptoOptionCertFile = "cert_file" -- Serial number of the certificate cryptoOptionSerialNo :: String cryptoOptionSerialNo = "serial_no" -- * SSH key types sshkDsa :: String sshkDsa = "dsa" sshkRsa :: String sshkRsa = "rsa" sshkAll :: FrozenSet String sshkAll = ConstantUtils.mkSet [sshkRsa, sshkDsa] -- * SSH authorized key types sshakDss :: String sshakDss = "ssh-dss" sshakRsa :: String sshakRsa = "ssh-rsa" sshakAll :: FrozenSet String sshakAll = ConstantUtils.mkSet [sshakDss, sshakRsa] -- * SSH setup sshsClusterName :: String sshsClusterName = "cluster_name" sshsSshHostKey :: String sshsSshHostKey = "ssh_host_key" sshsSshRootKey :: String sshsSshRootKey = "ssh_root_key" sshsSshAuthorizedKeys :: String sshsSshAuthorizedKeys = "authorized_keys" sshsSshPublicKeys :: String sshsSshPublicKeys = "public_keys" sshsNodeDaemonCertificate :: String sshsNodeDaemonCertificate = "node_daemon_certificate" sshsAdd :: String sshsAdd = "add" sshsReplaceOrAdd :: String sshsReplaceOrAdd = "replace_or_add" sshsRemove :: String sshsRemove = "remove" sshsOverride :: String sshsOverride = "override" sshsClear :: String sshsClear = "clear" sshsGenerate :: String sshsGenerate = "generate" sshsSuffix :: String sshsSuffix = "suffix" sshsRename :: String sshsRename = "rename" sshsMasterSuffix :: String sshsMasterSuffix = "_master_tmp" sshsActions :: FrozenSet String sshsActions = ConstantUtils.mkSet [ sshsAdd , sshsRemove , sshsOverride , sshsClear , sshsReplaceOrAdd] -- * Key files for SSH daemon sshHostDsaPriv :: String sshHostDsaPriv = sshConfigDir ++ "/ssh_host_dsa_key" sshHostDsaPub :: String sshHostDsaPub = sshHostDsaPriv ++ ".pub" sshHostRsaPriv :: String sshHostRsaPriv = sshConfigDir ++ "/ssh_host_rsa_key" sshHostRsaPub :: String sshHostRsaPub = sshHostRsaPriv ++ ".pub" sshDaemonKeyfiles :: Map String (String, String) sshDaemonKeyfiles = Map.fromList [ (sshkRsa, (sshHostRsaPriv, sshHostRsaPub)) , (sshkDsa, (sshHostDsaPriv, sshHostDsaPub)) ] -- * Node daemon setup ndsClusterName :: String ndsClusterName = "cluster_name" ndsNodeDaemonCertificate :: String ndsNodeDaemonCertificate = "node_daemon_certificate" ndsSsconf :: String ndsSsconf = "ssconf" ndsStartNodeDaemon :: String ndsStartNodeDaemon = "start_node_daemon" -- * VCluster related constants vClusterEtcHosts :: String vClusterEtcHosts = "/etc/hosts" vClusterVirtPathPrefix :: String vClusterVirtPathPrefix = "/###-VIRTUAL-PATH-###," vClusterRootdirEnvname :: String vClusterRootdirEnvname = "GANETI_ROOTDIR" vClusterHostnameEnvname :: String vClusterHostnameEnvname = "GANETI_HOSTNAME" vClusterVpathWhitelist :: FrozenSet String vClusterVpathWhitelist = ConstantUtils.mkSet [ vClusterEtcHosts ] -- * The source reasons for the execution of an OpCode opcodeReasonSrcClient :: String opcodeReasonSrcClient = "gnt:client" _opcodeReasonSrcDaemon :: String _opcodeReasonSrcDaemon = "gnt:daemon" _opcodeReasonSrcMasterd :: String _opcodeReasonSrcMasterd = _opcodeReasonSrcDaemon ++ ":masterd" opcodeReasonSrcNoded :: String opcodeReasonSrcNoded = _opcodeReasonSrcDaemon ++ ":noded" opcodeReasonSrcOpcode :: String opcodeReasonSrcOpcode = "gnt:opcode" opcodeReasonSrcPickup :: String opcodeReasonSrcPickup = _opcodeReasonSrcMasterd ++ ":pickup" opcodeReasonSrcWatcher :: String opcodeReasonSrcWatcher = "gnt:watcher" opcodeReasonSrcRlib2 :: String opcodeReasonSrcRlib2 = "gnt:library:rlib2" opcodeReasonSrcUser :: String opcodeReasonSrcUser = "gnt:user" opcodeReasonSources :: FrozenSet String opcodeReasonSources = ConstantUtils.mkSet [opcodeReasonSrcClient, opcodeReasonSrcNoded, opcodeReasonSrcOpcode, opcodeReasonSrcPickup, opcodeReasonSrcWatcher, opcodeReasonSrcRlib2, opcodeReasonSrcUser] -- | Path generating random UUID randomUuidFile :: String randomUuidFile = ConstantUtils.randomUuidFile -- * Auto-repair levels autoRepairFailover :: String autoRepairFailover = Types.autoRepairTypeToRaw ArFailover autoRepairFixStorage :: String autoRepairFixStorage = Types.autoRepairTypeToRaw ArFixStorage autoRepairMigrate :: String autoRepairMigrate = Types.autoRepairTypeToRaw ArMigrate autoRepairReinstall :: String autoRepairReinstall = Types.autoRepairTypeToRaw ArReinstall autoRepairAllTypes :: FrozenSet String autoRepairAllTypes = ConstantUtils.mkSet [autoRepairFailover, autoRepairFixStorage, autoRepairMigrate, autoRepairReinstall] -- * Auto-repair results autoRepairEnoperm :: String autoRepairEnoperm = Types.autoRepairResultToRaw ArEnoperm autoRepairFailure :: String autoRepairFailure = Types.autoRepairResultToRaw ArFailure autoRepairSuccess :: String autoRepairSuccess = Types.autoRepairResultToRaw ArSuccess autoRepairAllResults :: FrozenSet String autoRepairAllResults = ConstantUtils.mkSet [autoRepairEnoperm, autoRepairFailure, autoRepairSuccess] -- | The version identifier for builtin data collectors builtinDataCollectorVersion :: String builtinDataCollectorVersion = "B" -- | The reason trail opcode parameter name opcodeReason :: String opcodeReason = "reason" -- | The reason trail opcode parameter name opcodeSequential :: String opcodeSequential = "sequential" diskstatsFile :: String diskstatsFile = "/proc/diskstats" -- * CPU load collector statFile :: String statFile = "/proc/stat" cpuavgloadBufferSize :: Int cpuavgloadBufferSize = 150 -- | Window size for averaging in seconds. cpuavgloadWindowSize :: Int cpuavgloadWindowSize = 600 -- * Monitoring daemon -- | Mond's variable for periodical data collection mondTimeInterval :: Int mondTimeInterval = 5 -- | Mond's waiting time for requesting the current configuration. mondConfigTimeInterval :: Int mondConfigTimeInterval = 15 -- | Mond's latest API version mondLatestApiVersion :: Int mondLatestApiVersion = 1 mondDefaultCategory :: String mondDefaultCategory = "default" -- * Disk access modes diskUserspace :: String diskUserspace = Types.diskAccessModeToRaw DiskUserspace diskKernelspace :: String diskKernelspace = Types.diskAccessModeToRaw DiskKernelspace diskValidAccessModes :: FrozenSet String diskValidAccessModes = ConstantUtils.mkSet $ map Types.diskAccessModeToRaw [minBound..] -- | Timeout for queue draining in upgrades upgradeQueueDrainTimeout :: Int upgradeQueueDrainTimeout = 36 * 60 * 60 -- 1.5 days -- | Intervall at which the queue is polled during upgrades upgradeQueuePollInterval :: Int upgradeQueuePollInterval = 10 -- * Hotplug Actions hotplugActionAdd :: String hotplugActionAdd = Types.hotplugActionToRaw HAAdd hotplugActionRemove :: String hotplugActionRemove = Types.hotplugActionToRaw HARemove hotplugActionModify :: String hotplugActionModify = Types.hotplugActionToRaw HAMod hotplugAllActions :: FrozenSet String hotplugAllActions = ConstantUtils.mkSet $ map Types.hotplugActionToRaw [minBound..] -- * Hotplug Device Targets hotplugTargetNic :: String hotplugTargetNic = Types.hotplugTargetToRaw HTNic hotplugTargetDisk :: String hotplugTargetDisk = Types.hotplugTargetToRaw HTDisk hotplugAllTargets :: FrozenSet String hotplugAllTargets = ConstantUtils.mkSet $ map Types.hotplugTargetToRaw [minBound..] -- | Timeout for disk removal (seconds) diskRemoveRetryTimeout :: Int diskRemoveRetryTimeout = 30 -- | Interval between disk removal retries (seconds) diskRemoveRetryInterval :: Int diskRemoveRetryInterval = 3 -- * UUID regex uuidRegex :: String uuidRegex = "^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$" -- * Luxi constants luxiSocketPerms :: Int luxiSocketPerms = 0o660 luxiKeyMethod :: String luxiKeyMethod = "method" luxiKeyArgs :: String luxiKeyArgs = "args" luxiKeySuccess :: String luxiKeySuccess = "success" luxiKeyResult :: String luxiKeyResult = "result" luxiKeyVersion :: String luxiKeyVersion = "version" luxiReqSubmitJob :: String luxiReqSubmitJob = "SubmitJob" luxiReqSubmitJobToDrainedQueue :: String luxiReqSubmitJobToDrainedQueue = "SubmitJobToDrainedQueue" luxiReqSubmitManyJobs :: String luxiReqSubmitManyJobs = "SubmitManyJobs" luxiReqWaitForJobChange :: String luxiReqWaitForJobChange = "WaitForJobChange" luxiReqPickupJob :: String luxiReqPickupJob = "PickupJob" luxiReqCancelJob :: String luxiReqCancelJob = "CancelJob" luxiReqArchiveJob :: String luxiReqArchiveJob = "ArchiveJob" luxiReqChangeJobPriority :: String luxiReqChangeJobPriority = "ChangeJobPriority" luxiReqAutoArchiveJobs :: String luxiReqAutoArchiveJobs = "AutoArchiveJobs" luxiReqQuery :: String luxiReqQuery = "Query" luxiReqQueryFields :: String luxiReqQueryFields = "QueryFields" luxiReqQueryJobs :: String luxiReqQueryJobs = "QueryJobs" luxiReqQueryFilters :: String luxiReqQueryFilters = "QueryFilters" luxiReqReplaceFilter :: String luxiReqReplaceFilter = "ReplaceFilter" luxiReqDeleteFilter :: String luxiReqDeleteFilter = "DeleteFilter" luxiReqQueryInstances :: String luxiReqQueryInstances = "QueryInstances" luxiReqQueryNodes :: String luxiReqQueryNodes = "QueryNodes" luxiReqQueryGroups :: String luxiReqQueryGroups = "QueryGroups" luxiReqQueryNetworks :: String luxiReqQueryNetworks = "QueryNetworks" luxiReqQueryExports :: String luxiReqQueryExports = "QueryExports" luxiReqQueryConfigValues :: String luxiReqQueryConfigValues = "QueryConfigValues" luxiReqQueryClusterInfo :: String luxiReqQueryClusterInfo = "QueryClusterInfo" luxiReqQueryTags :: String luxiReqQueryTags = "QueryTags" luxiReqSetDrainFlag :: String luxiReqSetDrainFlag = "SetDrainFlag" luxiReqSetWatcherPause :: String luxiReqSetWatcherPause = "SetWatcherPause" luxiReqAll :: FrozenSet String luxiReqAll = ConstantUtils.mkSet [ luxiReqArchiveJob , luxiReqAutoArchiveJobs , luxiReqCancelJob , luxiReqChangeJobPriority , luxiReqQuery , luxiReqQueryClusterInfo , luxiReqQueryConfigValues , luxiReqQueryExports , luxiReqQueryFields , luxiReqQueryGroups , luxiReqQueryInstances , luxiReqQueryJobs , luxiReqQueryNodes , luxiReqQueryNetworks , luxiReqQueryTags , luxiReqSetDrainFlag , luxiReqSetWatcherPause , luxiReqSubmitJob , luxiReqSubmitJobToDrainedQueue , luxiReqSubmitManyJobs , luxiReqWaitForJobChange , luxiReqPickupJob , luxiReqQueryFilters , luxiReqReplaceFilter , luxiReqDeleteFilter ] luxiDefCtmo :: Int luxiDefCtmo = 10 luxiDefRwto :: Int luxiDefRwto = 60 -- | 'WaitForJobChange' timeout luxiWfjcTimeout :: Int luxiWfjcTimeout = (luxiDefRwto - 1) `div` 2 -- | The prefix of the LUXI livelock file name luxiLivelockPrefix :: String luxiLivelockPrefix = "luxi-daemon" -- | The LUXI daemon waits this number of seconds for ensuring that a canceled -- job terminates before giving up. luxiCancelJobTimeout :: Int luxiCancelJobTimeout = (luxiDefRwto - 1) `div` 4 -- * Master voting constants -- | Number of retries to carry out if nodes do not answer masterVotingRetries :: Int masterVotingRetries = 6 -- | Retry interval (in seconds) in master voting, if not enough answers -- could be gathered. masterVotingRetryIntervall :: Int masterVotingRetryIntervall = 10 -- * Query language constants -- ** Logic operators with one or more operands, each of which is a -- filter on its own qlangOpAnd :: String qlangOpAnd = "&" qlangOpOr :: String qlangOpOr = "|" -- ** Unary operators with exactly one operand qlangOpNot :: String qlangOpNot = "!" qlangOpTrue :: String qlangOpTrue = "?" -- ** Binary operators with exactly two operands, the field name and -- an operator-specific value qlangOpContains :: String qlangOpContains = "=[]" qlangOpEqual :: String qlangOpEqual = "==" qlangOpEqualLegacy :: String qlangOpEqualLegacy = "=" qlangOpGe :: String qlangOpGe = ">=" qlangOpGt :: String qlangOpGt = ">" qlangOpLe :: String qlangOpLe = "<=" qlangOpLt :: String qlangOpLt = "<" qlangOpNotEqual :: String qlangOpNotEqual = "!=" qlangOpRegexp :: String qlangOpRegexp = "=~" -- | Characters used for detecting user-written filters (see -- L{_CheckFilter}) qlangFilterDetectionChars :: FrozenSet String qlangFilterDetectionChars = ConstantUtils.mkSet ["!", " ", "\"", "\'", ")", "(", "\x0b", "\n", "\r", "\x0c", "/", "<", "\t", ">", "=", "\\", "~"] -- | Characters used to detect globbing filters qlangGlobDetectionChars :: FrozenSet String qlangGlobDetectionChars = ConstantUtils.mkSet ["*", "?"] -- * Error related constants -- -- 'OpPrereqError' failure types -- | Environment error (e.g. node disk error) errorsEcodeEnviron :: String errorsEcodeEnviron = "environment_error" -- | Entity already exists errorsEcodeExists :: String errorsEcodeExists = "already_exists" -- | Internal cluster error errorsEcodeFault :: String errorsEcodeFault = "internal_error" -- | Wrong arguments (at syntax level) errorsEcodeInval :: String errorsEcodeInval = "wrong_input" -- | Entity not found errorsEcodeNoent :: String errorsEcodeNoent = "unknown_entity" -- | Not enough resources (iallocator failure, disk space, memory, etc) errorsEcodeNores :: String errorsEcodeNores = "insufficient_resources" -- | Resource not unique (e.g. MAC or IP duplication) errorsEcodeNotunique :: String errorsEcodeNotunique = "resource_not_unique" -- | Resolver errors errorsEcodeResolver :: String errorsEcodeResolver = "resolver_error" -- | Wrong entity state errorsEcodeState :: String errorsEcodeState = "wrong_state" -- | Temporarily out of resources; operation can be tried again errorsEcodeTempNores :: String errorsEcodeTempNores = "temp_insufficient_resources" errorsEcodeAll :: FrozenSet String errorsEcodeAll = ConstantUtils.mkSet [ errorsEcodeNores , errorsEcodeExists , errorsEcodeState , errorsEcodeNotunique , errorsEcodeTempNores , errorsEcodeNoent , errorsEcodeFault , errorsEcodeResolver , errorsEcodeInval , errorsEcodeEnviron ] -- * Jstore related constants jstoreJobsPerArchiveDirectory :: Int jstoreJobsPerArchiveDirectory = 10000 -- * Gluster settings -- | Name of the Gluster host setting glusterHost :: String glusterHost = "host" -- | Default value of the Gluster host setting glusterHostDefault :: String glusterHostDefault = "127.0.0.1" -- | Name of the Gluster volume setting glusterVolume :: String glusterVolume = "volume" -- | Default value of the Gluster volume setting glusterVolumeDefault :: String glusterVolumeDefault = "gv0" -- | Name of the Gluster port setting glusterPort :: String glusterPort = "port" -- | Default value of the Gluster port setting glusterPortDefault :: Int glusterPortDefault = 24007 -- * Instance communication -- -- The instance communication attaches an additional NIC, named -- @instanceCommunicationNicPrefix@:@instanceName@ with MAC address -- prefixed by @instanceCommunicationMacPrefix@, to the instances that -- have instance communication enabled. This NIC is part of the -- instance communication network which is supplied by the user via -- -- gnt-cluster modify --instance-communication=mynetwork -- -- This network is defined as @instanceCommunicationNetwork4@ for IPv4 -- and @instanceCommunicationNetwork6@ for IPv6. instanceCommunicationDoc :: String instanceCommunicationDoc = "Enable or disable the communication mechanism for an instance" instanceCommunicationMacPrefix :: String instanceCommunicationMacPrefix = "52:54:00" -- | The instance communication network is a link-local IPv4/IPv6 -- network because the communication is meant to be exclusive between -- the host and the guest and not routed outside the node. instanceCommunicationNetwork4 :: String instanceCommunicationNetwork4 = "169.254.0.0/16" -- | See 'instanceCommunicationNetwork4'. instanceCommunicationNetwork6 :: String instanceCommunicationNetwork6 = "fe80::/10" instanceCommunicationNetworkLink :: String instanceCommunicationNetworkLink = "communication_rt" instanceCommunicationNetworkMode :: String instanceCommunicationNetworkMode = nicModeRouted instanceCommunicationNicPrefix :: String instanceCommunicationNicPrefix = "ganeti:communication:" -- | Parameters that should be protected -- -- Python does not have a type system and can't automatically infer what should -- be the resulting type of a JSON request. As a result, it must rely on this -- list of parameter names to protect values correctly. -- -- Names ending in _cluster will be treated as dicts of dicts of private values. -- Otherwise they are considered dicts of private values. privateParametersBlacklist :: [String] privateParametersBlacklist = [ "osparams_private" , "osparams_secret" , "osparams_private_cluster" ] -- | Warn the user that the logging level is too low for production use. debugModeConfidentialityWarning :: String debugModeConfidentialityWarning = "ALERT: %s started in debug mode.\n\ \ Private and secret parameters WILL be logged!\n" -- * Stat dictionary entries -- -- The get_file_info RPC returns a number of values as a dictionary, and the -- following constants are both descriptions and means of accessing them. -- | The size of the file statSize :: String statSize = "size" -- * Helper VM-related timeouts -- | The default fixed timeout needed to startup the helper VM. helperVmStartup :: Int helperVmStartup = 5 * 60 -- | The default fixed timeout needed until the helper VM is finally -- shutdown, for example, after installing the OS. helperVmShutdown :: Int helperVmShutdown = 2 * 60 * 60 -- | The zeroing timeout per MiB of disks to zero -- -- Determined by estimating that a disk writes at a relatively slow -- speed of 1/5 of the max speed of current drives. zeroingTimeoutPerMib :: Double zeroingTimeoutPerMib = 1.0 / (100.0 / 5.0) -- * Networking -- The minimum size of a network. ipv4NetworkMinSize :: Int ipv4NetworkMinSize = 30 -- The maximum size of a network. -- -- FIXME: This limit is for performance reasons. Remove when refactoring -- for performance tuning was successful. ipv4NetworkMaxSize :: Int ipv4NetworkMaxSize = 30 -- * Data Collectors dataCollectorCPULoad :: String dataCollectorCPULoad = "cpu-avg-load" dataCollectorDiskStats :: String dataCollectorDiskStats = "diskstats" dataCollectorDrbd :: String dataCollectorDrbd = "drbd" dataCollectorLv :: String dataCollectorLv = "lv" dataCollectorInstStatus :: String dataCollectorInstStatus = "inst-status-xen" dataCollectorParameterInterval :: String dataCollectorParameterInterval = "interval" dataCollectorNames :: FrozenSet String dataCollectorNames = ConstantUtils.mkSet [ dataCollectorCPULoad , dataCollectorDiskStats , dataCollectorDrbd , dataCollectorLv , dataCollectorInstStatus ] dataCollectorStateActive :: String dataCollectorStateActive = "active" dataCollectorsEnabledName :: String dataCollectorsEnabledName = "enabled_data_collectors" dataCollectorsIntervalName :: String dataCollectorsIntervalName = "data_collector_interval"
apyrgio/ganeti
src/Ganeti/Constants.hs
bsd-2-clause
138,488
0
13
27,152
23,722
14,049
9,673
-1
-1
module MapGen.Floor ( Floor , Corridor , Room -- * Construction , newFloor , randFloor , mkFloor -- * Operations , zipFloors -- * Access , corridors , rooms ) where import MapGen.KdTree import MapGen.Space import Control.Applicative import Control.Monad.Random import Data.List (zipWith) import Data.Foldable as Fold import Data.Map as Map import Data.Monoid import Data.Traversable import System.Random import Prelude as P hiding (zipWith) type Corridor a = (Line,a) type Room a = (Quad,a) data Floor a = Floor { corridor :: Map Line a , room :: Map Quad a } deriving Show instance Functor Floor where fmap f decor = Floor corridor' room' where corridor' = fmap f $ corridor decor room' = fmap f $ room decor instance Monoid (Floor a) where mempty = Floor Map.empty Map.empty mappend f1 f2 = Floor corridor' room' where corridor' = mappend (corridor f1) (corridor f2) room' = mappend (room f1) (room f2) instance Foldable Floor where foldr f a (Floor corridor room) = Fold.foldr f (Fold.foldr f a corridor) room instance Traversable Floor where traverse f floor = Floor <$> traverse f (corridor floor) <*> traverse f (room floor) newFloor :: KdTree -> (Line -> a) -> (Quad -> a) -> Floor a newFloor kdt l q = Floor (set l splitters) (set q quads) where set f xs' = let xs = xs' kdt in Map.fromList $ zipWith (,) xs (fmap f xs) randFloor :: KdTree -> (Line -> Rand a) -> (Quad -> Rand a) -> Rand (Floor a) randFloor kdt randLine randQuad = let r f xs' = let xs = xs' kdt in fmap (Map.fromList . (zipWith (,) xs)) $ P.mapM f xs in do corridors <- r randLine splitters rooms <- r randQuad quads return $ Floor corridors rooms mkFloor :: KdTree -> (Line -> Rand a) -> (Quad -> Rand a) -> Seed -> Floor a mkFloor kdt l q s = evalRand (randFloor kdt l q) $ mkStdGen s zipFloors :: (a -> b -> c) -> Floor a -> Floor b -> Floor c zipFloors f f1 f2 = Floor corridor' room' where corridor' = Map.intersectionWith f (corridor f1) (corridor f2) room' = Map.intersectionWith f (room f1) (room f2) corridors :: Floor a -> [Corridor a] corridors = assocs . corridor rooms :: Floor a -> [Room a] rooms = assocs . room
jeannekamikaze/mapgen
MapGen/Floor.hs
bsd-2-clause
2,451
0
17
737
926
478
448
64
1
{-# LANGUAGE ScopedTypeVariables, FlexibleInstances #-} {-# LANGUAGE UndecidableInstances, OverlappingInstances #-} {-# LANGUAGE CPP #-} -- | Facilities for defining new object types which can be marshalled between -- Haskell and QML. -- -- To define a new object type that is accessible from QML, create a -- new data type and make it an instance of the 'MetaObject' class. -- The 'UserData' associated type is the type of the bundle of data -- accessible from methods and from which properties are derived. -- -- Properties and methods are added to the MetaObject through the -- 'classDef' method. Note that the type being made into a MetaObject -- must be an instance of Typeable -- -- Example: -- -- > data HSType = HSType { hsTypeContent :: IORef String -- > , hsTypeStatic :: String -- > } -- > deriving (Typeable) -- > -- > instance MetaObject HSType where -- > type UserData HSType = HSType -- > classDef = do -- > defPropertyRW "hsTypeContent" (readIORef . hsTypeContent) (writeIORef . hsTypeContent) -- > defPropertyRO "hsTypeStatic" (return . hsTypeStatic) -- > return () -- -- This example creates a new type, HSType, with two properties. The -- first is a mutable String. The second is an immutable (read-only) -- string. These strings will automatically be converted to QStrings -- for use in QML. module Graphics.QML.Types.Classes ( -- * Classes MetaObject (..), ClassDefinition(..), QPointer, -- * Primary Helpers defClass, registerTypes, -- * Context Objects allocateContextObject, -- * Methods defMethod, -- * Signals defSignal, -- * Properties defPropertyRO, defPropertyRW, ) where import Graphics.QML.Internal.Core import Graphics.QML.Internal.Classes import Graphics.QML.Internal.TH import Data.Char ( chr ) import Control.Monad import Control.Monad.Trans.State import Data.Bits import Data.List ( foldl' ) import Data.Map ( Map ) import qualified Data.Map as Map import Data.Maybe import Data.IORef import Data.Typeable import Foreign.C.Types import Foreign.C.String import Foreign.Ptr import Foreign.StablePtr import Foreign.Storable import Foreign.Marshal.Array import Language.Haskell.TH ( Name ) #if __GLASGOW_HASKELL__ < 704 import System.FilePath ( takeExtension ) #endif import System.IO.Unsafe import Text.Printf import Debug.Trace debug = flip trace -- -- MetaObject -- -- | This is the default Marshallable instance provided for all -- MetaObjects. It should be sufficient for anything... instance (MetaObject tt) => Marshallable tt where marshal ptr obj = do (HsQMLObjectHandle hndl) <- hsqmlCreateObject obj $ classData $ (metaClass :: MetaClass tt) poke (castPtr ptr) hndl unmarshal ptr = hsqmlGetHaskell $ HsQMLObjectHandle $ castPtr ptr mSizeOf _ = sizeOf nullPtr mTypeOf _ = classType (metaClass :: MetaClass tt) -- -- DefClass -- -- | Represents a QML class which wraps the type @tt@. The -- HsQMLClassHandle is a wrapper around a C++ object. TypeName is -- derived from Typeable. data MetaClass tt = MetaClass { classType :: TypeName , classData :: HsQMLClassHandle } {-# NOINLINE metaClassDb #-} -- | This is a global lookup table mapping keys to MetaClass objects. -- The Int keys are computed from types using Data.Typeable (allowing -- information recovery from the existential). metaClassDb :: forall a. IORef (Map TypeKey (MetaClass a)) metaClassDb = unsafePerformIO $ newIORef Map.empty {-# NOINLINE metaClass #-} -- | Creates a new metaclass and adds it to the global 'metaClassDb'. -- This is not thread safe. To make it thread safe, switch the global -- IORef to an MVar. metaClass :: forall tt. (MetaObject tt) => MetaClass tt metaClass = unsafePerformIO $ do let typ = typeOf (undefined :: tt) def = classDefinition :: InternalClassDefinition tt (major, minor) = _classVersion def uri = _classURI def ctor = _classConstructor def (name, key) <- examineTypeInfo typ db <- readIORef metaClassDb case Map.lookup key db of Just mClass -> return mClass Nothing -> do mClass <- createClass name def writeIORef metaClassDb $ Map.insert key mClass db let placementFunc place = do udata <- ctor place spudata <- newStablePtr udata let pudata = castStablePtrToPtr spudata withHsQMLClassHandle (classData mClass) $ \h -> do hsqmlAllocateInPlace place pudata h ctorPtr <- marshalPlacementFunc placementFunc -- Now register this class with the equivalent of -- qmlRegisterType so that instances can be created from QML. withHsQMLClassHandle (classData mClass) $ \h -> do hsqmlRegisterType ctorPtr uri major minor name h return mClass -- | This is a helper to convert a DefClass (defined in MetaObject -- instance declarations) into a MetaClass (which will later be stored -- into the global metaClassDb). -- -- This function does the work of moc and then registers the resulting -- type with the QObject runtime system. createClass :: forall tt. (MetaObject tt) => String -- ^ The class name (derived from Typeable usually) -> InternalClassDefinition tt -> IO (MetaClass tt) createClass name (InternalClassDef _ _ properties methods signals _ _) = do -- This is the moc step; metaData is equivalent to the -- qt_meta_data_<TYPE> array that moc produces. metaStrData is -- equivalent to qt_meta_stringdata_<TYPE>. let moc@(MOCOutput metaData metaStrData) = compileClass name signals methods properties -- Convert all of the class description stuff into C-compatible -- types (arrays of Storable types). metaDataPtr <- newArray metaData `debug` show moc metaStrDataPtr <- newArray metaStrData methodsPtr <- mapM (marshalFunc . methodFunc) methods >>= newArray pReads <- mapM (marshalFunc . propertyReadFunc) properties let trWr p = case propertyWriteFunc p of Nothing -> return nullFunPtr Just w -> marshalFunc w pWrites <- mapM trWr properties -- The array of accessors and mutators is arranged such that the -- read and write functions for a given property are adjacent in the -- array, so we do the interleaving step here. propertiesPtr <- newArray $ interleave pReads pWrites -- Create a QMetaObject wrapper around the class description we just -- built. hndl <- hsqmlCreateClass metaDataPtr metaStrDataPtr methodsPtr propertiesPtr return $ case hndl of Just hndl' -> MetaClass (TypeName name) hndl' Nothing -> error "Failed to create QML class." interleave :: [a] -> [a] -> [a] interleave [] ys = ys interleave (x:xs) ys = x : ys `interleave` xs -- -- Method -- defMethod :: String -> Name -> ProtoClassMethod defMethod = PMethod -- -- Property -- -- | Defines a named read-only property using an impure -- accessor function. defPropertyRO :: String -> Name -> ProtoClassProperty defPropertyRO name g = PProperty { pPropertyName = name , pPropertyReadFunc = g , pPropertyWriteFunc = Nothing , pPropertyFlags = [pfScriptable, pfReadable, pfStored] } -- | Defines a named read-write property using a pair of -- impure accessor and mutator functions. -- -- Note: the original code used marshalFunc1 for the property writing -- function. This makes sense logically, but the layout of the args -- array (the pv argument in the function marshallers) for property -- writes is unusual. Instead of being [retVal, arg1, arg2, ..], it -- is just [arg1] since there is never a return value for property -- writes. This means that the writer function has to be marshalled -- with marshalFunc0 here. defPropertyRW :: String -> Name -> Name -> ProtoClassProperty defPropertyRW name g s = PProperty { pPropertyName = name , pPropertyReadFunc = g , pPropertyWriteFunc = Just s , pPropertyFlags = [pfScriptable, pfReadable, pfWritable, pfStored] } -- -- Marshaling functions -- -- -- MOC static data construction -- -- | The construction takes place in this State monad. The data and -- stringdata arrays (lists) are built up in *reverse* for efficiency. -- Be sure to reverse them after extracting them from the State monad. -- -- The mStrDataMap is used to record the index of each sub-string -- embedded in the stringdata; if a string is already present, this -- table caches its index so it doesn't need to be re-inserted. -- -- The low-level details of the meta-object format are described here: -- -- http://dev.libqxt.org/libqxt/wiki/Meta_Object_Format data MOCState = MOCState { mData :: [CUInt] -- ^ The (reversed) int-based index table , mDataLen :: Int -- ^ Length of the index table , mDataMethodsIdx :: Maybe Int -- ^ Starting index of the methods sub-index , mDataPropsIdx :: Maybe Int -- ^ Starting index of the properties sub-index , mStrData :: [CChar] -- ^ The (reversed) stringdata , mStrDataLen :: Int -- ^ The length of the stringdata , mStrDataMap :: Map String CUInt -- ^ The unique map } deriving (Show) -- | The result of running MOC is the metadata array and the metadata -- string (wherein all of the strings describing the class are -- embedded). data MOCOutput = MOCOutput [CUInt] [CChar] instance Show MOCOutput where show = showMOC showMOC :: MOCOutput -> String showMOC (MOCOutput arr str) = showMethods (map fromIntegral arr) strMap 4 5 `debug` show strMap where ixs :: [Int] ixs = [0..] -- Split the data string on nulls and record the integer index -- where each string starts. (_, _, strMap) = foldl' extractStrings (0, "", Map.empty) (zip ixs str) showMethods :: [Int] -> Map Int String -> Int -> Int -> String showMethods arr m ixN ixStart = concat $ showMethod m ints `debug` show ints where n = fromIntegral $ arr !! ixN s = fromIntegral $ arr !! ixStart ints = take (5 * n) $ drop s arr showMethod :: Map Int String -> [Int] -> [String] showMethod _ [] = [] showMethod m (sigN : paramsN : typeN : _ : flags : rest) = s : showMethod m rest where s = printf "%s(%s) : %s : %d\n" name params ty flags name = m Map.! fromIntegral sigN params = m Map.! fromIntegral paramsN ty = m Map.! fromIntegral typeN showMethod _ _ = error "Unexpected method arity" extractStrings :: (Integral a) => (Int, String, Map Int String) -> (Int, a) -> (Int, String, Map Int String) extractStrings (start, s, m) (ix, cchar) = case cchar == 0 of True -> (ix+1, "", Map.insert start (reverse s) m) False -> (start, chr (fromIntegral cchar) : s, m) newMOCState :: MOCState newMOCState = MOCState [] 0 Nothing Nothing [] 0 Map.empty -- | Write an Int into the mData table writeInt :: CUInt -> State MOCState () writeInt int = do st <- get let md = mData st mdLen = mDataLen st put st { mData = int : md , mDataLen = mdLen + 1 } return () -- | Write a string into the stringdata section and record its index -- in the mData table. If the string already exists, simply look up -- its cached index. writeString :: String -> State MOCState () writeString str = do st <- get let msd = mStrData st msdLen = mStrDataLen st msdMap = mStrDataMap st case (Map.lookup str msdMap) of Just idx -> writeInt idx Nothing -> do let idx = fromIntegral msdLen msd' = 0 : (map castCharToCChar (reverse str) ++ msd) msdLen' = msdLen + length str + 1 msdMap' = Map.insert str idx msdMap put st { mStrData = msd' , mStrDataLen = msdLen' , mStrDataMap = msdMap' } writeInt idx `debug` printf "String %s @ %d" str ((fromIntegral idx) :: Int) -- | Append a 'Method' into the methods index in the mData table. -- Each entry has 5 components: signature, parameters, type, tag, -- flags. -- -- This implementation currently makes every Method public. -- -- FIXME: This seems to be missing the tag - it isn't really clear -- what the tag is supposed to be, but it should probably be -- included... writeMethod :: Method -> State MOCState () writeMethod m = do idx <- get >>= return . mDataLen writeString $ methodSignature m writeString $ methodParameters m writeString $ typeName $ head $ methodTypes m -- This is the tag field; it isn't clear exactly what it is supposed -- to be, but making it equal to the type seems to work. writeString $ typeName $ head $ methodTypes m writeInt (mfAccessPublic .|. mfMethodMethod) st <- get put st { mDataMethodsIdx = mplus (mDataMethodsIdx st) (Just idx) } return () -- | Almost the same as writeMethod; the flags are a bit different. -- They should be refactored into a common function eventually... writeSignal :: Signal -> State MOCState () writeSignal s = do idx <- get >>= return . mDataLen writeString $ signalSignature s writeString $ signalParameters s writeString "" -- $ typeName $ head $ signalArgTypes s writeString "" -- $ typeName $ head $ signalArgTypes s writeInt (mfAccessProtected .|. mfMethodSignal) st <- get put st { mDataMethodsIdx = mplus (mDataMethodsIdx st) (Just idx) } return () -- | Write a property into the property table of mData. Each -- component has three fields: name, type, flags. writeProperty :: Property -> State MOCState () writeProperty p = do idx <- get >>= return . mDataLen writeString $ propertyName p writeString $ typeName $ propertyType p -- The property flags are ORed with something and shifted left 24 -- bits. According to the moc source, the value is -- qvariant_nameToType; I'm not sure exactly what is going on there -- and it doesn't seem to affect functionality. This could be -- changed a bit later... there are some hard-coded values in moc -- and otherwise there is some computation by QMetaType::type. writeInt (propertyFlags p) -- flags st <- get put st { mDataPropsIdx = mplus (mDataPropsIdx st) (Just idx) } return () -- | This does the actual work of moc inside of a State monad. -- -- FIXME: The format is currently hard-coded as 5 (qt 4.7). qt 4.8 is -- at 6. compileClass :: String -> [Signal] -> [Method] -> [Property] -> MOCOutput compileClass name ss ms ps = let enc = flip execState newMOCState $ do writeInt 5 -- Revision (Qt 4.7) writeString name -- Class name writeInt 0 >> writeInt 0 -- Class info writeInt $ fromIntegral $ (length ms + length ss) -- Methods writeInt $ fromIntegral $ fromMaybe 0 $ mDataMethodsIdx enc -- Methods (data index) writeInt $ fromIntegral $ length ps -- Properties writeInt $ fromIntegral $ fromMaybe 0 $ mDataPropsIdx enc -- Properties (data index) writeInt 0 >> writeInt 0 -- Enums writeInt 0 >> writeInt 0 -- Constructors writeInt 0 -- Flags writeInt $ fromIntegral (length ss) -- Signals mapM_ writeSignal ss mapM_ writeMethod ms mapM_ writeProperty ps writeInt 0 in MOCOutput (reverse $ mData enc) (reverse $ mStrData enc) foldr0 :: (a -> a -> a) -> a -> [a] -> a foldr0 _ x [] = x foldr0 f _ xs = foldr1 f xs -- | Method signatures are the method name followed by a -- comma-separated list of parameter types enclodes in a set of -- parens. methodSignature :: Method -> String methodSignature method = let paramTypes = tail $ methodTypes method in (showString (methodName method) . showChar '(' . foldr0 (\l r -> l . showChar ',' . r) id (map (showString . typeName) paramTypes) . showChar ')') "" signalSignature :: Signal -> String signalSignature sig = let ts = signalArgTypes sig in (showString (signalName sig) . showChar '(' . foldr0 (\l r -> l . showChar ',' . r) id (map (showString . typeName) ts) . showChar ')') "" -- | moc stores the method parameter list as a comma-separated (with -- no spaces) list of the parameter names. methodParameters :: Method -> String methodParameters method = replicate (flip (-) 2 $ length $ methodTypes method) ',' -- Signals do not have a this parameter signalParameters :: Signal -> String signalParameters sig = replicate (flip (-) 1 $ length $ signalArgTypes sig) ',' -- | This is a special helper to allocate the Context object for a QML -- program. This is necessary because of the C++ wrapper object that -- needs to be assocated with each Haskell QML object. -- -- For objects that are instantiated by the QML runtime system, this -- wrapper is automatically generated. Since the context object is -- allocated in Haskell, this helper builds the wrapper. -- -- To use it, feed it a QML object that is partially instantiated, -- lacking only the QPointer to its C++ wrapper object. -- -- > ctx <- allocateContextObject $ HaskellType "foo" "bar" -- > createEngine $ defaultEngineConfig { contextObject = Just ctx } -- > runEngines allocateContextObject :: forall a . (MetaObject a) => (QPointer -> a) -> IO a allocateContextObject partialObject = do -- Note that this function is defined here because it needs access -- to the metaClass database, and that should not be exposed at all. let mc :: MetaClass a mc = metaClass cobj <- withHsQMLClassHandle (classData mc) $ \h -> do hsqmlAllocateContextObject h let hobj = partialObject cobj hobjSPtr <- newStablePtr hobj hsqmlSetHaskell cobj (castStablePtrToPtr hobjSPtr) return hobj -- TH Helpers #if __GLASGOW_HASKELL__ >= 704 type TypeKey = TypeRep examineTypeInfo :: TypeRep -> IO (String, TypeKey) examineTypeInfo typ = do return (tyConName (typeRepTyCon typ), typ) #else type TypeKey = Int examineTypeInfo :: TypeRep -> IO (String, TypeKey) examineTypeInfo typ = do key <- typeRepKey typ -- This includes the Module name; we need to drop that to make a -- valid QML identifier. takeExtension leaves the leading ., so -- drop it using tail. let name = tail $ takeExtension $ tyConString $ typeRepTyCon typ return (name, key) #endif
travitch/hsqml
src/Graphics/QML/Types/Classes.hs
bsd-3-clause
18,296
0
22
4,232
3,604
1,909
1,695
270
3
{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE ScopedTypeVariables #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Attoparsec.Expression -- Copyright : (c) Daniel Pek 2014 -- (c) Edward Kmett 2011-2012 -- (c) Paolo Martini 2007 -- (c) Daan Leijen 1999-2001, -- License : BSD-style (see the LICENSE file) -- -- Maintainer : pekdaniel@gmail.com -- Stability : experimental -- Portability : non-portable -- -- A helper module to parse \"expressions\". -- Builds a parser given a table of operators and associativities. -- ----------------------------------------------------------------------------- module Data.Attoparsec.Expression ( Assoc(..), Operator(..), OperatorTable , buildExpressionParser ) where import Control.Applicative import Data.Attoparsec.Combinator import Data.Attoparsec.ByteString.Char8 (Parser) import Data.Data hiding (Infix, Prefix) import Data.Ix ----------------------------------------------------------- -- Assoc and OperatorTable ----------------------------------------------------------- -- | This data type specifies the associativity of operators: left, right -- or none. data Assoc = AssocNone | AssocLeft | AssocRight deriving (Eq,Ord,Show,Read,Ix,Enum,Bounded,Data,Typeable) -- | This data type specifies operators that work on values of type @a@. -- An operator is either binary infix or unary prefix or postfix. A -- binary operator has also an associated associativity. data Operator m a = Infix (m (a -> a -> a)) Assoc | Prefix (m (a -> a)) | Postfix (m (a -> a)) -- | An @OperatorTable m a@ is a list of @Operator m a@ -- lists. The list is ordered in descending -- precedence. All operators in one list have the same precedence (but -- may have a different associativity). type OperatorTable m a = [[Operator m a]] ----------------------------------------------------------- -- Convert an OperatorTable and basic term parser into -- a full fledged expression parser ----------------------------------------------------------- -- | @buildExpressionParser table term@ builds an expression parser for -- terms @term@ with operators from @table@, taking the associativity -- and precedence specified in @table@ into account. Prefix and postfix -- operators of the same precedence can only occur once (i.e. @--2@ is -- not allowed if @-@ is prefix negate). Prefix and postfix operators -- of the same precedence associate to the left (i.e. if @++@ is -- postfix increment, than @-2++@ equals @-1@, not @-3@). -- -- The @buildExpressionParser@ takes care of all the complexity -- involved in building expression parser. Here is an example of an -- expression parser that handles prefix signs, postfix increment and -- basic arithmetic. -- -- > import Control.Applicative -- > import Data.ByteString.Char8 (pack) -- > import Data.Attoparsec.Expression -- > import Data.Attoparsec.ByteString.Char8 -- > -- > expr = strip p -- > where p = buildExpressionParser table term -- > <?> "expression" -- > -- > term = strip p -- > where p = parens expr -- > <|> decimal -- > <?> "simple expression" -- > -- > strip p = skipSpace *> p <* skipSpace -- > -- > parens p = char '(' *> p <* char ')' -- > -- > table = [ [prefix "-" negate, prefix "+" id ] -- > , [postfix "++" (+1)] -- > , [binary "*" (*) AssocLeft, binary "/" (div) AssocLeft ] -- > , [binary "+" (+) AssocLeft, binary "-" (-) AssocLeft ] -- > ] -- > -- > binary name fun assoc = Infix (fun <$ string (pack name)) assoc -- > prefix name fun = Prefix (fun <$ string (pack name)) -- > postfix name fun = Postfix (fun <$ string (pack name)) buildExpressionParser :: forall a . OperatorTable Parser a -> Parser a -> Parser a buildExpressionParser operators simpleExpr = foldl makeParser simpleExpr operators where makeParser term ops = let (rassoc,lassoc,nassoc,prefix,postfix) = foldr splitOp ([],[],[],[],[]) ops rassocOp = choice rassoc lassocOp = choice lassoc nassocOp = choice nassoc prefixOp = choice prefix <?> "" postfixOp = choice postfix <?> "" ambiguous assoc op = try (op *> empty <?> ("ambiguous use of a " ++ assoc ++ "-associative operator")) ambiguousRight = ambiguous "right" rassocOp ambiguousLeft = ambiguous "left" lassocOp ambiguousNon = ambiguous "non" nassocOp termP = (prefixP <*> term) <**> postfixP postfixP = postfixOp <|> pure id prefixP = prefixOp <|> pure id rassocP, rassocP1, lassocP, lassocP1, nassocP :: Parser (a -> a) rassocP = (flip <$> rassocOp <*> (termP <**> rassocP1) <|> ambiguousLeft <|> ambiguousNon) rassocP1 = rassocP <|> pure id lassocP = ((flip <$> lassocOp <*> termP) <**> ((.) <$> lassocP1) <|> ambiguousRight <|> ambiguousNon) lassocP1 = lassocP <|> pure id nassocP = (flip <$> nassocOp <*> termP) <**> (ambiguousRight <|> ambiguousLeft <|> ambiguousNon <|> pure id) in termP <**> (rassocP <|> lassocP <|> nassocP <|> pure id) <?> "operator" splitOp (Infix op assoc) (rassoc,lassoc,nassoc,prefix,postfix) = case assoc of AssocNone -> (rassoc,lassoc,op:nassoc,prefix,postfix) AssocLeft -> (rassoc,op:lassoc,nassoc,prefix,postfix) AssocRight -> (op:rassoc,lassoc,nassoc,prefix,postfix) splitOp (Prefix op) (rassoc,lassoc,nassoc,prefix,postfix) = (rassoc,lassoc,nassoc,op:prefix,postfix) splitOp (Postfix op) (rassoc,lassoc,nassoc,prefix,postfix) = (rassoc,lassoc,nassoc,prefix,op:postfix)
pdani/attoparsec-expression
src/Data/Attoparsec/Expression.hs
bsd-3-clause
6,176
0
17
1,664
947
565
382
63
5
{- - Intel Concurrent Collections for Haskell - Copyright (c) 2010, Intel Corporation. - - This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU Lesser General Public License, - version 2.1, as published by the Free Software Foundation. - - This program is distributed in the hope it will be useful, but WITHOUT - ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - more details. - - You should have received a copy of the GNU Lesser General Public License along with - this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - -} import System.Environment import Data.Int import Control.Monad #include "haskell_cnc.h" -- This is a SERIAL benchmark, but it demonstrates how item -- collections can be used for something like dynamic programming. run n = runGraph $ do tags :: TagCol Int <- newTagCol items :: ItemCol Int Int64 <- newItemCol prescribe tags $ \i -> do x <- get items (i-1) y <- get items (i-2) put items i (x+y) initialize $ do put items 0 0 put items 1 1 forM_ [2..n] (putt tags) --forM_ (reverse [2..n]) (putt tags) finalize $ do get items n main = do args <- getArgs putStrLn $ show $ case args of [] -> run 10 [s] -> run (read s)
rrnewton/Haskell-CnC
examples/fib.hs
bsd-3-clause
1,496
45
10
364
250
135
115
-1
-1
{-# LANGUAGE PackageImports #-} module Network.PeyoTLS.TlsMonad ( TlsM, evalTlsM, S.initState, thlGet, thlPut, thlClose, thlDebug, thlError, withRandom, randomByteString, getBuf, setBuf, getWBuf, setWBuf, getReadSn, getWriteSn, succReadSn, succWriteSn, S.Alert(..), S.AlertLevel(..), S.AlertDesc(..), S.ContentType(..), S.CipherSuite(..), S.KeyExchange(..), S.BulkEncryption(..), S.PartnerId, S.newPartnerId, S.Keys(..), S.nullKeys ) where import Control.Monad (liftM) import "monads-tf" Control.Monad.Trans (lift) import "monads-tf" Control.Monad.State (StateT, evalStateT, gets, modify) import "monads-tf" Control.Monad.Error (ErrorT, runErrorT) import Data.Word (Word64) import Data.HandleLike (HandleLike(..)) import "crypto-random" Crypto.Random (CPRG, cprgGenerate) import qualified Data.ByteString as BS import qualified Network.PeyoTLS.State as S ( HandshakeState, initState, PartnerId, newPartnerId, Keys(..), nullKeys, ContentType(..), Alert(..), AlertLevel(..), AlertDesc(..), CipherSuite(..), KeyExchange(..), BulkEncryption(..), randomGen, setRandomGen, setBuf, getBuf, setWBuf, getWBuf, getReadSN, getWriteSN, succReadSN, succWriteSN ) type TlsM h g = ErrorT S.Alert (StateT (S.HandshakeState h g) (HandleMonad h)) evalTlsM :: HandleLike h => TlsM h g a -> S.HandshakeState h g -> HandleMonad h (Either S.Alert a) evalTlsM = evalStateT . runErrorT getBuf, getWBuf :: HandleLike h => S.PartnerId -> TlsM h g (S.ContentType, BS.ByteString) getBuf = gets . S.getBuf; getWBuf = gets . S.getWBuf setBuf, setWBuf :: HandleLike h => S.PartnerId -> (S.ContentType, BS.ByteString) -> TlsM h g () setBuf = (modify .) . S.setBuf; setWBuf = (modify .) . S.setWBuf getWriteSn, getReadSn :: HandleLike h => S.PartnerId -> TlsM h g Word64 getWriteSn = gets . S.getWriteSN; getReadSn = gets . S.getReadSN succWriteSn, succReadSn :: HandleLike h => S.PartnerId -> TlsM h g () succWriteSn = modify . S.succWriteSN; succReadSn = modify . S.succReadSN withRandom :: HandleLike h => (gen -> (a, gen)) -> TlsM h gen a withRandom p = do (x, g') <- p `liftM` gets S.randomGen modify $ S.setRandomGen g' return x randomByteString :: (HandleLike h, CPRG g) => Int -> TlsM h g BS.ByteString randomByteString = withRandom . cprgGenerate thlGet :: HandleLike h => h -> Int -> TlsM h g BS.ByteString thlGet = ((lift . lift) .) . hlGet thlPut :: HandleLike h => h -> BS.ByteString -> TlsM h g () thlPut = ((lift . lift) .) . hlPut thlClose :: HandleLike h => h -> TlsM h g () thlClose = lift . lift . hlClose thlDebug :: HandleLike h => h -> DebugLevel h -> BS.ByteString -> TlsM h gen () thlDebug = (((lift . lift) .) .) . hlDebug thlError :: HandleLike h => h -> BS.ByteString -> TlsM h g a thlError = ((lift . lift) .) . hlError
YoshikuniJujo/forest
subprojects/tls-analysis/server/src/Network/PeyoTLS/TlsMonad.hs
bsd-3-clause
2,758
36
11
432
1,115
640
475
57
1
module Gidl.Backend.Ivory.Test where import Prelude () import Prelude.Compat import Gidl.Interface import Gidl.Schema import Gidl.Backend.Ivory.Schema import Ivory.Artifact import Text.PrettyPrint.Mainland serializeTestModule :: [String] -> [Interface] -> Artifact serializeTestModule modulepath irs = artifactText "SerializeTest.hs" $ prettyLazyText 1000 $ stack [ text "{-# LANGUAGE ScopedTypeVariables #-}" , empty , text "module Main where" , empty , text "import Data.Serialize" , text "import System.Exit (exitFailure, exitSuccess)" , text "import qualified Test.QuickCheck as Q" , empty , stack [ text "import" <+> im (ifModuleName ir) | ir <- irs ] , empty , text "main :: IO ()" , text "main" <+> equals <+> text "do" <+> align (stack ([ testSchema ir (producerSchema ir) </> testSchema ir (consumerSchema ir) | ir <- irs ] ++ [ text "exitSuccess" ])) , empty , props ] where im mname = mconcat $ punctuate dot $ map text (modulepath ++ ["Interface", mname]) testSchema :: Interface -> Schema -> Doc testSchema ir (Schema sn []) = text "-- no tests for empty schema" <+> text (ifModuleName ir ++ sn) testSchema ir (Schema sn _) = stack [ text "runQC" <+> parens (text "serializeRoundtrip ::" <+> text sname <+> text "-> Bool") , text "runQC" <+> parens (text "serializeManyRoundtrip ::" <+> brackets (text sname) <+> text "-> Bool") ] where sname = ifModuleName ir ++ sn props :: Doc props = stack [ text "serializeRoundtrip :: (Serialize a, Eq a) => a -> Bool" , text "serializeRoundtrip v = case runGet get (runPut (put v)) of" , indent 2 $ text "Left e -> False" , indent 2 $ text "Right v' -> v == v'" , empty , text "serializeManyRoundtrip :: (Serialize a, Eq a) => [a] -> Bool" , text "serializeManyRoundtrip vs =" , indent 2 $ text "case runGet (mapM (const get) vs) (runPut (mapM_ put vs)) of" , indent 4 $ text "Left e -> False" , indent 4 $ text "Right vs' -> vs == vs'" , empty , text "runQC :: Q.Testable p => p -> IO ()" , text "runQC prop = do" , indent 2 $ text "r <- Q.quickCheckWithResult Q.stdArgs prop" , indent 2 $ text "case r of" , indent 4 $ text "Q.Success {} -> return ()" , indent 4 $ text "_ -> exitFailure" ]
GaloisInc/gidl
src/Gidl/Backend/Ivory/Test.hs
bsd-3-clause
2,327
0
18
557
631
318
313
60
1