package parsing import "math/big" type Parser interface { Parse() (*big.Int, error) }