data class Matrix22( val x00: BigInteger, val x01: BigInteger, val x10: BigInteger, val x11: BigInteger ) { companion object { val identity = Matrix22(BigInteger.ONE, BigInteger.ZERO, BigInteger.ZERO, BigInteger.ONE) } }